ch-admin-api-client-typescript 2.4.7 → 2.5.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 +2064 -696
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1933 -5
- package/package.json +1 -1
- package/src/api.ts +2466 -219
package/lib/api.d.ts
CHANGED
|
@@ -3528,6 +3528,68 @@ export interface CreateDoctorSpecialtyCommand {
|
|
|
3528
3528
|
*/
|
|
3529
3529
|
'order'?: number;
|
|
3530
3530
|
}
|
|
3531
|
+
/**
|
|
3532
|
+
*
|
|
3533
|
+
* @export
|
|
3534
|
+
* @interface CreateFaqCategoryCommand
|
|
3535
|
+
*/
|
|
3536
|
+
export interface CreateFaqCategoryCommand {
|
|
3537
|
+
/**
|
|
3538
|
+
*
|
|
3539
|
+
* @type {string}
|
|
3540
|
+
* @memberof CreateFaqCategoryCommand
|
|
3541
|
+
*/
|
|
3542
|
+
'parentId'?: string | null;
|
|
3543
|
+
/**
|
|
3544
|
+
*
|
|
3545
|
+
* @type {string}
|
|
3546
|
+
* @memberof CreateFaqCategoryCommand
|
|
3547
|
+
*/
|
|
3548
|
+
'name'?: string | null;
|
|
3549
|
+
/**
|
|
3550
|
+
*
|
|
3551
|
+
* @type {string}
|
|
3552
|
+
* @memberof CreateFaqCategoryCommand
|
|
3553
|
+
*/
|
|
3554
|
+
'description'?: string | null;
|
|
3555
|
+
/**
|
|
3556
|
+
*
|
|
3557
|
+
* @type {number}
|
|
3558
|
+
* @memberof CreateFaqCategoryCommand
|
|
3559
|
+
*/
|
|
3560
|
+
'order'?: number;
|
|
3561
|
+
}
|
|
3562
|
+
/**
|
|
3563
|
+
*
|
|
3564
|
+
* @export
|
|
3565
|
+
* @interface CreateFaqCommand
|
|
3566
|
+
*/
|
|
3567
|
+
export interface CreateFaqCommand {
|
|
3568
|
+
/**
|
|
3569
|
+
*
|
|
3570
|
+
* @type {string}
|
|
3571
|
+
* @memberof CreateFaqCommand
|
|
3572
|
+
*/
|
|
3573
|
+
'title'?: string | null;
|
|
3574
|
+
/**
|
|
3575
|
+
*
|
|
3576
|
+
* @type {string}
|
|
3577
|
+
* @memberof CreateFaqCommand
|
|
3578
|
+
*/
|
|
3579
|
+
'content'?: string | null;
|
|
3580
|
+
/**
|
|
3581
|
+
*
|
|
3582
|
+
* @type {number}
|
|
3583
|
+
* @memberof CreateFaqCommand
|
|
3584
|
+
*/
|
|
3585
|
+
'order'?: number;
|
|
3586
|
+
/**
|
|
3587
|
+
*
|
|
3588
|
+
* @type {string}
|
|
3589
|
+
* @memberof CreateFaqCommand
|
|
3590
|
+
*/
|
|
3591
|
+
'faqCategoryId'?: string | null;
|
|
3592
|
+
}
|
|
3531
3593
|
/**
|
|
3532
3594
|
*
|
|
3533
3595
|
* @export
|
|
@@ -4714,13 +4776,13 @@ export interface DoctorCertificateItemModel {
|
|
|
4714
4776
|
* @type {string}
|
|
4715
4777
|
* @memberof DoctorCertificateItemModel
|
|
4716
4778
|
*/
|
|
4717
|
-
'
|
|
4779
|
+
'id'?: string;
|
|
4718
4780
|
/**
|
|
4719
4781
|
*
|
|
4720
4782
|
* @type {string}
|
|
4721
4783
|
* @memberof DoctorCertificateItemModel
|
|
4722
4784
|
*/
|
|
4723
|
-
'
|
|
4785
|
+
'doctorId'?: string;
|
|
4724
4786
|
/**
|
|
4725
4787
|
*
|
|
4726
4788
|
* @type {string}
|
|
@@ -4757,13 +4819,13 @@ export interface DoctorCertificateModel {
|
|
|
4757
4819
|
* @type {string}
|
|
4758
4820
|
* @memberof DoctorCertificateModel
|
|
4759
4821
|
*/
|
|
4760
|
-
'
|
|
4822
|
+
'id'?: string;
|
|
4761
4823
|
/**
|
|
4762
4824
|
*
|
|
4763
4825
|
* @type {string}
|
|
4764
4826
|
* @memberof DoctorCertificateModel
|
|
4765
4827
|
*/
|
|
4766
|
-
'
|
|
4828
|
+
'doctorId'?: string;
|
|
4767
4829
|
/**
|
|
4768
4830
|
*
|
|
4769
4831
|
* @type {string}
|
|
@@ -5027,6 +5089,24 @@ export interface DoctorItemModel {
|
|
|
5027
5089
|
* @memberof DoctorItemModel
|
|
5028
5090
|
*/
|
|
5029
5091
|
'auditableEntity'?: AuditableEntity;
|
|
5092
|
+
/**
|
|
5093
|
+
*
|
|
5094
|
+
* @type {string}
|
|
5095
|
+
* @memberof DoctorItemModel
|
|
5096
|
+
*/
|
|
5097
|
+
'userType'?: string | null;
|
|
5098
|
+
/**
|
|
5099
|
+
*
|
|
5100
|
+
* @type {Array<UserLanguageModel>}
|
|
5101
|
+
* @memberof DoctorItemModel
|
|
5102
|
+
*/
|
|
5103
|
+
'languages'?: Array<UserLanguageModel> | null;
|
|
5104
|
+
/**
|
|
5105
|
+
*
|
|
5106
|
+
* @type {Array<UserLocationModel>}
|
|
5107
|
+
* @memberof DoctorItemModel
|
|
5108
|
+
*/
|
|
5109
|
+
'locations'?: Array<UserLocationModel> | null;
|
|
5030
5110
|
/**
|
|
5031
5111
|
*
|
|
5032
5112
|
* @type {string}
|
|
@@ -5045,12 +5125,30 @@ export interface DoctorItemModel {
|
|
|
5045
5125
|
* @memberof DoctorItemModel
|
|
5046
5126
|
*/
|
|
5047
5127
|
'hospitalName'?: string | null;
|
|
5128
|
+
/**
|
|
5129
|
+
*
|
|
5130
|
+
* @type {Date}
|
|
5131
|
+
* @memberof DoctorItemModel
|
|
5132
|
+
*/
|
|
5133
|
+
'startPracticeDate'?: Date | null;
|
|
5048
5134
|
/**
|
|
5049
5135
|
*
|
|
5050
5136
|
* @type {string}
|
|
5051
5137
|
* @memberof DoctorItemModel
|
|
5052
5138
|
*/
|
|
5053
5139
|
'overview'?: string | null;
|
|
5140
|
+
/**
|
|
5141
|
+
*
|
|
5142
|
+
* @type {boolean}
|
|
5143
|
+
* @memberof DoctorItemModel
|
|
5144
|
+
*/
|
|
5145
|
+
'consultationEnabled'?: boolean | null;
|
|
5146
|
+
/**
|
|
5147
|
+
*
|
|
5148
|
+
* @type {number}
|
|
5149
|
+
* @memberof DoctorItemModel
|
|
5150
|
+
*/
|
|
5151
|
+
'consultationFee'?: number | null;
|
|
5054
5152
|
/**
|
|
5055
5153
|
*
|
|
5056
5154
|
* @type {boolean}
|
|
@@ -5174,16 +5272,40 @@ export interface DoctorModel {
|
|
|
5174
5272
|
'slug'?: string | null;
|
|
5175
5273
|
/**
|
|
5176
5274
|
*
|
|
5177
|
-
* @type {
|
|
5275
|
+
* @type {string}
|
|
5178
5276
|
* @memberof DoctorModel
|
|
5179
5277
|
*/
|
|
5180
|
-
'
|
|
5278
|
+
'hospitalId'?: string | null;
|
|
5279
|
+
/**
|
|
5280
|
+
*
|
|
5281
|
+
* @type {string}
|
|
5282
|
+
* @memberof DoctorModel
|
|
5283
|
+
*/
|
|
5284
|
+
'hospitalName'?: string | null;
|
|
5285
|
+
/**
|
|
5286
|
+
*
|
|
5287
|
+
* @type {Date}
|
|
5288
|
+
* @memberof DoctorModel
|
|
5289
|
+
*/
|
|
5290
|
+
'startPracticeDate'?: Date | null;
|
|
5181
5291
|
/**
|
|
5182
5292
|
*
|
|
5183
5293
|
* @type {string}
|
|
5184
5294
|
* @memberof DoctorModel
|
|
5185
5295
|
*/
|
|
5186
5296
|
'overview'?: string | null;
|
|
5297
|
+
/**
|
|
5298
|
+
*
|
|
5299
|
+
* @type {boolean}
|
|
5300
|
+
* @memberof DoctorModel
|
|
5301
|
+
*/
|
|
5302
|
+
'consultationEnabled'?: boolean | null;
|
|
5303
|
+
/**
|
|
5304
|
+
*
|
|
5305
|
+
* @type {number}
|
|
5306
|
+
* @memberof DoctorModel
|
|
5307
|
+
*/
|
|
5308
|
+
'consultationFee'?: number | null;
|
|
5187
5309
|
/**
|
|
5188
5310
|
*
|
|
5189
5311
|
* @type {boolean}
|
|
@@ -5404,450 +5526,781 @@ export interface DoctorsModel {
|
|
|
5404
5526
|
/**
|
|
5405
5527
|
*
|
|
5406
5528
|
* @export
|
|
5407
|
-
* @
|
|
5529
|
+
* @interface FaqCategoriesModel
|
|
5408
5530
|
*/
|
|
5409
|
-
export
|
|
5410
|
-
|
|
5411
|
-
|
|
5412
|
-
|
|
5413
|
-
|
|
5414
|
-
|
|
5531
|
+
export interface FaqCategoriesModel {
|
|
5532
|
+
/**
|
|
5533
|
+
*
|
|
5534
|
+
* @type {Array<FaqCategoryItemModel>}
|
|
5535
|
+
* @memberof FaqCategoriesModel
|
|
5536
|
+
*/
|
|
5537
|
+
'items'?: Array<FaqCategoryItemModel> | null;
|
|
5538
|
+
/**
|
|
5539
|
+
*
|
|
5540
|
+
* @type {PagedListMetaData}
|
|
5541
|
+
* @memberof FaqCategoriesModel
|
|
5542
|
+
*/
|
|
5543
|
+
'metaData'?: PagedListMetaData;
|
|
5415
5544
|
}
|
|
5416
5545
|
/**
|
|
5417
5546
|
*
|
|
5418
5547
|
* @export
|
|
5419
|
-
* @interface
|
|
5548
|
+
* @interface FaqCategoryBreadCrumbModel
|
|
5420
5549
|
*/
|
|
5421
|
-
export interface
|
|
5550
|
+
export interface FaqCategoryBreadCrumbModel {
|
|
5422
5551
|
/**
|
|
5423
5552
|
*
|
|
5424
5553
|
* @type {string}
|
|
5425
|
-
* @memberof
|
|
5554
|
+
* @memberof FaqCategoryBreadCrumbModel
|
|
5426
5555
|
*/
|
|
5427
|
-
'
|
|
5556
|
+
'id'?: string;
|
|
5428
5557
|
/**
|
|
5429
5558
|
*
|
|
5430
5559
|
* @type {string}
|
|
5431
|
-
* @memberof
|
|
5560
|
+
* @memberof FaqCategoryBreadCrumbModel
|
|
5432
5561
|
*/
|
|
5433
|
-
'
|
|
5562
|
+
'name'?: string | null;
|
|
5434
5563
|
/**
|
|
5435
5564
|
*
|
|
5436
5565
|
* @type {string}
|
|
5437
|
-
* @memberof
|
|
5566
|
+
* @memberof FaqCategoryBreadCrumbModel
|
|
5438
5567
|
*/
|
|
5439
|
-
'
|
|
5568
|
+
'slug'?: string | null;
|
|
5440
5569
|
/**
|
|
5441
5570
|
*
|
|
5442
5571
|
* @type {string}
|
|
5443
|
-
* @memberof
|
|
5572
|
+
* @memberof FaqCategoryBreadCrumbModel
|
|
5444
5573
|
*/
|
|
5445
|
-
'
|
|
5574
|
+
'parentId'?: string | null;
|
|
5575
|
+
/**
|
|
5576
|
+
*
|
|
5577
|
+
* @type {boolean}
|
|
5578
|
+
* @memberof FaqCategoryBreadCrumbModel
|
|
5579
|
+
*/
|
|
5580
|
+
'confirmed'?: boolean;
|
|
5446
5581
|
}
|
|
5447
5582
|
/**
|
|
5448
5583
|
*
|
|
5449
5584
|
* @export
|
|
5450
|
-
* @interface
|
|
5585
|
+
* @interface FaqCategoryItemModel
|
|
5451
5586
|
*/
|
|
5452
|
-
export interface
|
|
5587
|
+
export interface FaqCategoryItemModel {
|
|
5453
5588
|
/**
|
|
5454
5589
|
*
|
|
5455
5590
|
* @type {string}
|
|
5456
|
-
* @memberof
|
|
5591
|
+
* @memberof FaqCategoryItemModel
|
|
5457
5592
|
*/
|
|
5458
|
-
'
|
|
5593
|
+
'id'?: string;
|
|
5459
5594
|
/**
|
|
5460
5595
|
*
|
|
5461
5596
|
* @type {string}
|
|
5462
|
-
* @memberof
|
|
5597
|
+
* @memberof FaqCategoryItemModel
|
|
5463
5598
|
*/
|
|
5464
|
-
'
|
|
5599
|
+
'parentId'?: string | null;
|
|
5465
5600
|
/**
|
|
5466
5601
|
*
|
|
5467
5602
|
* @type {string}
|
|
5468
|
-
* @memberof
|
|
5603
|
+
* @memberof FaqCategoryItemModel
|
|
5469
5604
|
*/
|
|
5470
|
-
'
|
|
5605
|
+
'name'?: string | null;
|
|
5471
5606
|
/**
|
|
5472
5607
|
*
|
|
5473
5608
|
* @type {string}
|
|
5474
|
-
* @memberof
|
|
5609
|
+
* @memberof FaqCategoryItemModel
|
|
5475
5610
|
*/
|
|
5476
|
-
'
|
|
5477
|
-
}
|
|
5478
|
-
/**
|
|
5479
|
-
*
|
|
5480
|
-
* @export
|
|
5481
|
-
* @interface HospitalAccreditationsModel
|
|
5482
|
-
*/
|
|
5483
|
-
export interface HospitalAccreditationsModel {
|
|
5611
|
+
'slug'?: string | null;
|
|
5484
5612
|
/**
|
|
5485
5613
|
*
|
|
5486
|
-
* @type {
|
|
5487
|
-
* @memberof
|
|
5614
|
+
* @type {string}
|
|
5615
|
+
* @memberof FaqCategoryItemModel
|
|
5488
5616
|
*/
|
|
5489
|
-
'
|
|
5617
|
+
'description'?: string | null;
|
|
5490
5618
|
/**
|
|
5491
5619
|
*
|
|
5492
|
-
* @type {
|
|
5493
|
-
* @memberof
|
|
5620
|
+
* @type {number}
|
|
5621
|
+
* @memberof FaqCategoryItemModel
|
|
5494
5622
|
*/
|
|
5495
|
-
'
|
|
5623
|
+
'order'?: number;
|
|
5624
|
+
/**
|
|
5625
|
+
*
|
|
5626
|
+
* @type {Array<FaqItemModel>}
|
|
5627
|
+
* @memberof FaqCategoryItemModel
|
|
5628
|
+
*/
|
|
5629
|
+
'faqs'?: Array<FaqItemModel> | null;
|
|
5630
|
+
/**
|
|
5631
|
+
*
|
|
5632
|
+
* @type {Array<LocalizedUrlModel>}
|
|
5633
|
+
* @memberof FaqCategoryItemModel
|
|
5634
|
+
*/
|
|
5635
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
5636
|
+
/**
|
|
5637
|
+
*
|
|
5638
|
+
* @type {boolean}
|
|
5639
|
+
* @memberof FaqCategoryItemModel
|
|
5640
|
+
*/
|
|
5641
|
+
'confirmed'?: boolean;
|
|
5496
5642
|
}
|
|
5497
5643
|
/**
|
|
5498
5644
|
*
|
|
5499
5645
|
* @export
|
|
5500
|
-
* @interface
|
|
5646
|
+
* @interface FaqCategoryModel
|
|
5501
5647
|
*/
|
|
5502
|
-
export interface
|
|
5648
|
+
export interface FaqCategoryModel {
|
|
5503
5649
|
/**
|
|
5504
5650
|
*
|
|
5505
5651
|
* @type {string}
|
|
5506
|
-
* @memberof
|
|
5652
|
+
* @memberof FaqCategoryModel
|
|
5507
5653
|
*/
|
|
5508
5654
|
'id'?: string;
|
|
5509
5655
|
/**
|
|
5510
5656
|
*
|
|
5511
5657
|
* @type {string}
|
|
5512
|
-
* @memberof
|
|
5658
|
+
* @memberof FaqCategoryModel
|
|
5513
5659
|
*/
|
|
5514
|
-
'
|
|
5660
|
+
'parentId'?: string | null;
|
|
5515
5661
|
/**
|
|
5516
5662
|
*
|
|
5517
5663
|
* @type {string}
|
|
5518
|
-
* @memberof
|
|
5664
|
+
* @memberof FaqCategoryModel
|
|
5519
5665
|
*/
|
|
5520
|
-
'
|
|
5666
|
+
'name'?: string | null;
|
|
5521
5667
|
/**
|
|
5522
5668
|
*
|
|
5523
5669
|
* @type {string}
|
|
5524
|
-
* @memberof
|
|
5670
|
+
* @memberof FaqCategoryModel
|
|
5525
5671
|
*/
|
|
5526
|
-
'
|
|
5672
|
+
'slug'?: string | null;
|
|
5527
5673
|
/**
|
|
5528
5674
|
*
|
|
5529
5675
|
* @type {string}
|
|
5530
|
-
* @memberof
|
|
5676
|
+
* @memberof FaqCategoryModel
|
|
5531
5677
|
*/
|
|
5532
|
-
'
|
|
5678
|
+
'description'?: string | null;
|
|
5533
5679
|
/**
|
|
5534
5680
|
*
|
|
5535
|
-
* @type {
|
|
5536
|
-
* @memberof
|
|
5681
|
+
* @type {number}
|
|
5682
|
+
* @memberof FaqCategoryModel
|
|
5537
5683
|
*/
|
|
5538
|
-
'
|
|
5684
|
+
'order'?: number;
|
|
5539
5685
|
/**
|
|
5540
5686
|
*
|
|
5541
|
-
* @type {
|
|
5542
|
-
* @memberof
|
|
5687
|
+
* @type {Array<FaqItemModel>}
|
|
5688
|
+
* @memberof FaqCategoryModel
|
|
5543
5689
|
*/
|
|
5544
|
-
'
|
|
5690
|
+
'faqs'?: Array<FaqItemModel> | null;
|
|
5691
|
+
/**
|
|
5692
|
+
*
|
|
5693
|
+
* @type {Array<LocalizedUrlModel>}
|
|
5694
|
+
* @memberof FaqCategoryModel
|
|
5695
|
+
*/
|
|
5696
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
5697
|
+
/**
|
|
5698
|
+
*
|
|
5699
|
+
* @type {boolean}
|
|
5700
|
+
* @memberof FaqCategoryModel
|
|
5701
|
+
*/
|
|
5702
|
+
'confirmed'?: boolean;
|
|
5703
|
+
/**
|
|
5704
|
+
*
|
|
5705
|
+
* @type {string}
|
|
5706
|
+
* @memberof FaqCategoryModel
|
|
5707
|
+
*/
|
|
5708
|
+
'languageCode'?: string | null;
|
|
5545
5709
|
}
|
|
5546
5710
|
/**
|
|
5547
5711
|
*
|
|
5548
5712
|
* @export
|
|
5549
|
-
* @interface
|
|
5713
|
+
* @interface FaqItemModel
|
|
5550
5714
|
*/
|
|
5551
|
-
export interface
|
|
5715
|
+
export interface FaqItemModel {
|
|
5552
5716
|
/**
|
|
5553
5717
|
*
|
|
5554
5718
|
* @type {string}
|
|
5555
|
-
* @memberof
|
|
5719
|
+
* @memberof FaqItemModel
|
|
5556
5720
|
*/
|
|
5557
5721
|
'id'?: string;
|
|
5558
5722
|
/**
|
|
5559
5723
|
*
|
|
5560
5724
|
* @type {string}
|
|
5561
|
-
* @memberof
|
|
5725
|
+
* @memberof FaqItemModel
|
|
5562
5726
|
*/
|
|
5563
|
-
'
|
|
5727
|
+
'title'?: string | null;
|
|
5564
5728
|
/**
|
|
5565
5729
|
*
|
|
5566
5730
|
* @type {string}
|
|
5567
|
-
* @memberof
|
|
5731
|
+
* @memberof FaqItemModel
|
|
5568
5732
|
*/
|
|
5569
|
-
'
|
|
5733
|
+
'slug'?: string | null;
|
|
5570
5734
|
/**
|
|
5571
5735
|
*
|
|
5572
5736
|
* @type {string}
|
|
5573
|
-
* @memberof
|
|
5737
|
+
* @memberof FaqItemModel
|
|
5574
5738
|
*/
|
|
5575
|
-
'
|
|
5739
|
+
'content'?: string | null;
|
|
5576
5740
|
/**
|
|
5577
5741
|
*
|
|
5578
|
-
* @type {
|
|
5579
|
-
* @memberof
|
|
5742
|
+
* @type {number}
|
|
5743
|
+
* @memberof FaqItemModel
|
|
5580
5744
|
*/
|
|
5581
|
-
'
|
|
5745
|
+
'order'?: number;
|
|
5582
5746
|
/**
|
|
5583
5747
|
*
|
|
5584
5748
|
* @type {Array<MediaModel>}
|
|
5585
|
-
* @memberof
|
|
5749
|
+
* @memberof FaqItemModel
|
|
5586
5750
|
*/
|
|
5587
5751
|
'medias'?: Array<MediaModel> | null;
|
|
5588
5752
|
/**
|
|
5589
5753
|
*
|
|
5590
5754
|
* @type {AuditableEntity}
|
|
5591
|
-
* @memberof
|
|
5755
|
+
* @memberof FaqItemModel
|
|
5592
5756
|
*/
|
|
5593
5757
|
'auditableEntity'?: AuditableEntity;
|
|
5594
|
-
}
|
|
5595
|
-
/**
|
|
5596
|
-
*
|
|
5597
|
-
* @export
|
|
5598
|
-
* @interface HospitalEquipmentsModel
|
|
5599
|
-
*/
|
|
5600
|
-
export interface HospitalEquipmentsModel {
|
|
5601
5758
|
/**
|
|
5602
5759
|
*
|
|
5603
|
-
* @type {Array<
|
|
5604
|
-
* @memberof
|
|
5760
|
+
* @type {Array<LocalizedUrlModel>}
|
|
5761
|
+
* @memberof FaqItemModel
|
|
5605
5762
|
*/
|
|
5606
|
-
'
|
|
5763
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
5607
5764
|
/**
|
|
5608
5765
|
*
|
|
5609
|
-
* @type {
|
|
5610
|
-
* @memberof
|
|
5766
|
+
* @type {boolean}
|
|
5767
|
+
* @memberof FaqItemModel
|
|
5611
5768
|
*/
|
|
5612
|
-
'
|
|
5769
|
+
'confirmed'?: boolean;
|
|
5613
5770
|
}
|
|
5614
5771
|
/**
|
|
5615
5772
|
*
|
|
5616
5773
|
* @export
|
|
5617
|
-
* @interface
|
|
5774
|
+
* @interface FaqModel
|
|
5618
5775
|
*/
|
|
5619
|
-
export interface
|
|
5776
|
+
export interface FaqModel {
|
|
5620
5777
|
/**
|
|
5621
5778
|
*
|
|
5622
5779
|
* @type {string}
|
|
5623
|
-
* @memberof
|
|
5780
|
+
* @memberof FaqModel
|
|
5624
5781
|
*/
|
|
5625
5782
|
'id'?: string;
|
|
5626
5783
|
/**
|
|
5627
5784
|
*
|
|
5628
5785
|
* @type {string}
|
|
5629
|
-
* @memberof
|
|
5786
|
+
* @memberof FaqModel
|
|
5630
5787
|
*/
|
|
5631
|
-
'
|
|
5788
|
+
'title'?: string | null;
|
|
5632
5789
|
/**
|
|
5633
5790
|
*
|
|
5634
5791
|
* @type {string}
|
|
5635
|
-
* @memberof
|
|
5792
|
+
* @memberof FaqModel
|
|
5636
5793
|
*/
|
|
5637
|
-
'
|
|
5794
|
+
'slug'?: string | null;
|
|
5638
5795
|
/**
|
|
5639
5796
|
*
|
|
5640
5797
|
* @type {string}
|
|
5641
|
-
* @memberof
|
|
5798
|
+
* @memberof FaqModel
|
|
5642
5799
|
*/
|
|
5643
|
-
'
|
|
5800
|
+
'content'?: string | null;
|
|
5644
5801
|
/**
|
|
5645
5802
|
*
|
|
5646
5803
|
* @type {number}
|
|
5647
|
-
* @memberof
|
|
5804
|
+
* @memberof FaqModel
|
|
5648
5805
|
*/
|
|
5649
|
-
'
|
|
5806
|
+
'order'?: number;
|
|
5650
5807
|
/**
|
|
5651
5808
|
*
|
|
5652
|
-
* @type {
|
|
5653
|
-
* @memberof
|
|
5809
|
+
* @type {Array<MediaModel>}
|
|
5810
|
+
* @memberof FaqModel
|
|
5654
5811
|
*/
|
|
5655
|
-
'
|
|
5812
|
+
'medias'?: Array<MediaModel> | null;
|
|
5656
5813
|
/**
|
|
5657
5814
|
*
|
|
5658
|
-
* @type {
|
|
5659
|
-
* @memberof
|
|
5815
|
+
* @type {AuditableEntity}
|
|
5816
|
+
* @memberof FaqModel
|
|
5660
5817
|
*/
|
|
5661
|
-
'
|
|
5818
|
+
'auditableEntity'?: AuditableEntity;
|
|
5819
|
+
/**
|
|
5820
|
+
*
|
|
5821
|
+
* @type {Array<LocalizedUrlModel>}
|
|
5822
|
+
* @memberof FaqModel
|
|
5823
|
+
*/
|
|
5824
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
5825
|
+
/**
|
|
5826
|
+
*
|
|
5827
|
+
* @type {boolean}
|
|
5828
|
+
* @memberof FaqModel
|
|
5829
|
+
*/
|
|
5830
|
+
'confirmed'?: boolean;
|
|
5831
|
+
/**
|
|
5832
|
+
*
|
|
5833
|
+
* @type {Array<FaqCategoryBreadCrumbModel>}
|
|
5834
|
+
* @memberof FaqModel
|
|
5835
|
+
*/
|
|
5836
|
+
'categories'?: Array<FaqCategoryBreadCrumbModel> | null;
|
|
5662
5837
|
}
|
|
5663
5838
|
/**
|
|
5664
5839
|
*
|
|
5665
5840
|
* @export
|
|
5666
|
-
* @interface
|
|
5841
|
+
* @interface FaqsModel
|
|
5667
5842
|
*/
|
|
5668
|
-
export interface
|
|
5843
|
+
export interface FaqsModel {
|
|
5669
5844
|
/**
|
|
5670
5845
|
*
|
|
5671
|
-
* @type {
|
|
5672
|
-
* @memberof
|
|
5846
|
+
* @type {Array<FaqItemModel>}
|
|
5847
|
+
* @memberof FaqsModel
|
|
5673
5848
|
*/
|
|
5674
|
-
'
|
|
5849
|
+
'items'?: Array<FaqItemModel> | null;
|
|
5850
|
+
/**
|
|
5851
|
+
*
|
|
5852
|
+
* @type {PagedListMetaData}
|
|
5853
|
+
* @memberof FaqsModel
|
|
5854
|
+
*/
|
|
5855
|
+
'metaData'?: PagedListMetaData;
|
|
5856
|
+
}
|
|
5857
|
+
/**
|
|
5858
|
+
*
|
|
5859
|
+
* @export
|
|
5860
|
+
* @enum {string}
|
|
5861
|
+
*/
|
|
5862
|
+
export declare enum Gender {
|
|
5863
|
+
NotSpecified = "NotSpecified",
|
|
5864
|
+
Male = "Male",
|
|
5865
|
+
Female = "Female",
|
|
5866
|
+
NonBinary = "NonBinary",
|
|
5867
|
+
PreferNotToSay = "PreferNotToSay"
|
|
5868
|
+
}
|
|
5869
|
+
/**
|
|
5870
|
+
*
|
|
5871
|
+
* @export
|
|
5872
|
+
* @interface HospitalAccreditationItemModel
|
|
5873
|
+
*/
|
|
5874
|
+
export interface HospitalAccreditationItemModel {
|
|
5675
5875
|
/**
|
|
5676
5876
|
*
|
|
5677
5877
|
* @type {string}
|
|
5678
|
-
* @memberof
|
|
5878
|
+
* @memberof HospitalAccreditationItemModel
|
|
5679
5879
|
*/
|
|
5680
5880
|
'hospitalId'?: string;
|
|
5681
5881
|
/**
|
|
5682
5882
|
*
|
|
5683
5883
|
* @type {string}
|
|
5684
|
-
* @memberof
|
|
5884
|
+
* @memberof HospitalAccreditationItemModel
|
|
5685
5885
|
*/
|
|
5686
|
-
'
|
|
5886
|
+
'accreditationId'?: string;
|
|
5687
5887
|
/**
|
|
5688
5888
|
*
|
|
5689
5889
|
* @type {string}
|
|
5690
|
-
* @memberof
|
|
5890
|
+
* @memberof HospitalAccreditationItemModel
|
|
5691
5891
|
*/
|
|
5692
|
-
'
|
|
5892
|
+
'accreditationName'?: string | null;
|
|
5693
5893
|
/**
|
|
5694
5894
|
*
|
|
5695
|
-
* @type {
|
|
5696
|
-
* @memberof
|
|
5895
|
+
* @type {string}
|
|
5896
|
+
* @memberof HospitalAccreditationItemModel
|
|
5697
5897
|
*/
|
|
5698
|
-
'
|
|
5898
|
+
'accreditationLogo'?: string | null;
|
|
5899
|
+
}
|
|
5900
|
+
/**
|
|
5901
|
+
*
|
|
5902
|
+
* @export
|
|
5903
|
+
* @interface HospitalAccreditationModel
|
|
5904
|
+
*/
|
|
5905
|
+
export interface HospitalAccreditationModel {
|
|
5699
5906
|
/**
|
|
5700
5907
|
*
|
|
5701
5908
|
* @type {string}
|
|
5702
|
-
* @memberof
|
|
5909
|
+
* @memberof HospitalAccreditationModel
|
|
5703
5910
|
*/
|
|
5704
|
-
'
|
|
5911
|
+
'hospitalId'?: string;
|
|
5705
5912
|
/**
|
|
5706
5913
|
*
|
|
5707
5914
|
* @type {string}
|
|
5708
|
-
* @memberof
|
|
5915
|
+
* @memberof HospitalAccreditationModel
|
|
5709
5916
|
*/
|
|
5710
|
-
'
|
|
5917
|
+
'accreditationId'?: string;
|
|
5918
|
+
/**
|
|
5919
|
+
*
|
|
5920
|
+
* @type {string}
|
|
5921
|
+
* @memberof HospitalAccreditationModel
|
|
5922
|
+
*/
|
|
5923
|
+
'accreditationName'?: string | null;
|
|
5924
|
+
/**
|
|
5925
|
+
*
|
|
5926
|
+
* @type {string}
|
|
5927
|
+
* @memberof HospitalAccreditationModel
|
|
5928
|
+
*/
|
|
5929
|
+
'accreditationLogo'?: string | null;
|
|
5711
5930
|
}
|
|
5712
5931
|
/**
|
|
5713
5932
|
*
|
|
5714
5933
|
* @export
|
|
5715
|
-
* @interface
|
|
5934
|
+
* @interface HospitalAccreditationsModel
|
|
5716
5935
|
*/
|
|
5717
|
-
export interface
|
|
5936
|
+
export interface HospitalAccreditationsModel {
|
|
5718
5937
|
/**
|
|
5719
5938
|
*
|
|
5720
|
-
* @type {Array<
|
|
5721
|
-
* @memberof
|
|
5939
|
+
* @type {Array<HospitalAccreditationItemModel>}
|
|
5940
|
+
* @memberof HospitalAccreditationsModel
|
|
5722
5941
|
*/
|
|
5723
|
-
'items'?: Array<
|
|
5942
|
+
'items'?: Array<HospitalAccreditationItemModel> | null;
|
|
5724
5943
|
/**
|
|
5725
5944
|
*
|
|
5726
5945
|
* @type {PagedListMetaData}
|
|
5727
|
-
* @memberof
|
|
5946
|
+
* @memberof HospitalAccreditationsModel
|
|
5728
5947
|
*/
|
|
5729
5948
|
'metaData'?: PagedListMetaData;
|
|
5730
5949
|
}
|
|
5731
5950
|
/**
|
|
5732
5951
|
*
|
|
5733
5952
|
* @export
|
|
5734
|
-
* @interface
|
|
5953
|
+
* @interface HospitalEquipmentItemModel
|
|
5735
5954
|
*/
|
|
5736
|
-
export interface
|
|
5955
|
+
export interface HospitalEquipmentItemModel {
|
|
5737
5956
|
/**
|
|
5738
5957
|
*
|
|
5739
5958
|
* @type {string}
|
|
5740
|
-
* @memberof
|
|
5959
|
+
* @memberof HospitalEquipmentItemModel
|
|
5741
5960
|
*/
|
|
5742
5961
|
'id'?: string;
|
|
5743
5962
|
/**
|
|
5744
5963
|
*
|
|
5745
5964
|
* @type {string}
|
|
5746
|
-
* @memberof
|
|
5965
|
+
* @memberof HospitalEquipmentItemModel
|
|
5747
5966
|
*/
|
|
5748
5967
|
'name'?: string | null;
|
|
5749
5968
|
/**
|
|
5750
5969
|
*
|
|
5751
5970
|
* @type {string}
|
|
5752
|
-
* @memberof
|
|
5971
|
+
* @memberof HospitalEquipmentItemModel
|
|
5753
5972
|
*/
|
|
5754
|
-
'
|
|
5973
|
+
'description'?: string | null;
|
|
5755
5974
|
/**
|
|
5756
5975
|
*
|
|
5757
5976
|
* @type {string}
|
|
5758
|
-
* @memberof
|
|
5977
|
+
* @memberof HospitalEquipmentItemModel
|
|
5759
5978
|
*/
|
|
5760
|
-
'
|
|
5979
|
+
'hospitalId'?: string;
|
|
5761
5980
|
/**
|
|
5762
5981
|
*
|
|
5763
5982
|
* @type {string}
|
|
5764
|
-
* @memberof
|
|
5983
|
+
* @memberof HospitalEquipmentItemModel
|
|
5765
5984
|
*/
|
|
5766
|
-
'
|
|
5985
|
+
'hospitalName'?: string | null;
|
|
5767
5986
|
/**
|
|
5768
5987
|
*
|
|
5769
|
-
* @type {
|
|
5770
|
-
* @memberof
|
|
5988
|
+
* @type {Array<MediaModel>}
|
|
5989
|
+
* @memberof HospitalEquipmentItemModel
|
|
5771
5990
|
*/
|
|
5772
|
-
'
|
|
5991
|
+
'medias'?: Array<MediaModel> | null;
|
|
5773
5992
|
/**
|
|
5774
5993
|
*
|
|
5775
|
-
* @type {
|
|
5776
|
-
* @memberof
|
|
5994
|
+
* @type {AuditableEntity}
|
|
5995
|
+
* @memberof HospitalEquipmentItemModel
|
|
5777
5996
|
*/
|
|
5778
|
-
'
|
|
5997
|
+
'auditableEntity'?: AuditableEntity;
|
|
5998
|
+
}
|
|
5999
|
+
/**
|
|
6000
|
+
*
|
|
6001
|
+
* @export
|
|
6002
|
+
* @interface HospitalEquipmentModel
|
|
6003
|
+
*/
|
|
6004
|
+
export interface HospitalEquipmentModel {
|
|
5779
6005
|
/**
|
|
5780
6006
|
*
|
|
5781
|
-
* @type {
|
|
5782
|
-
* @memberof
|
|
6007
|
+
* @type {string}
|
|
6008
|
+
* @memberof HospitalEquipmentModel
|
|
5783
6009
|
*/
|
|
5784
|
-
'
|
|
6010
|
+
'id'?: string;
|
|
5785
6011
|
/**
|
|
5786
6012
|
*
|
|
5787
|
-
* @type {
|
|
5788
|
-
* @memberof
|
|
6013
|
+
* @type {string}
|
|
6014
|
+
* @memberof HospitalEquipmentModel
|
|
5789
6015
|
*/
|
|
5790
|
-
'
|
|
6016
|
+
'name'?: string | null;
|
|
5791
6017
|
/**
|
|
5792
6018
|
*
|
|
5793
|
-
* @type {
|
|
5794
|
-
* @memberof
|
|
6019
|
+
* @type {string}
|
|
6020
|
+
* @memberof HospitalEquipmentModel
|
|
5795
6021
|
*/
|
|
5796
|
-
'
|
|
6022
|
+
'description'?: string | null;
|
|
5797
6023
|
/**
|
|
5798
6024
|
*
|
|
5799
|
-
* @type {
|
|
5800
|
-
* @memberof
|
|
6025
|
+
* @type {string}
|
|
6026
|
+
* @memberof HospitalEquipmentModel
|
|
5801
6027
|
*/
|
|
5802
|
-
'
|
|
6028
|
+
'hospitalId'?: string;
|
|
5803
6029
|
/**
|
|
5804
6030
|
*
|
|
5805
6031
|
* @type {string}
|
|
5806
|
-
* @memberof
|
|
6032
|
+
* @memberof HospitalEquipmentModel
|
|
5807
6033
|
*/
|
|
5808
|
-
'
|
|
6034
|
+
'hospitalName'?: string | null;
|
|
5809
6035
|
/**
|
|
5810
6036
|
*
|
|
5811
|
-
* @type {
|
|
5812
|
-
* @memberof
|
|
6037
|
+
* @type {Array<MediaModel>}
|
|
6038
|
+
* @memberof HospitalEquipmentModel
|
|
5813
6039
|
*/
|
|
5814
|
-
'
|
|
6040
|
+
'medias'?: Array<MediaModel> | null;
|
|
5815
6041
|
/**
|
|
5816
6042
|
*
|
|
5817
|
-
* @type {
|
|
5818
|
-
* @memberof
|
|
6043
|
+
* @type {AuditableEntity}
|
|
6044
|
+
* @memberof HospitalEquipmentModel
|
|
5819
6045
|
*/
|
|
5820
|
-
'
|
|
6046
|
+
'auditableEntity'?: AuditableEntity;
|
|
6047
|
+
}
|
|
6048
|
+
/**
|
|
6049
|
+
*
|
|
6050
|
+
* @export
|
|
6051
|
+
* @interface HospitalEquipmentsModel
|
|
6052
|
+
*/
|
|
6053
|
+
export interface HospitalEquipmentsModel {
|
|
5821
6054
|
/**
|
|
5822
6055
|
*
|
|
5823
|
-
* @type {
|
|
5824
|
-
* @memberof
|
|
6056
|
+
* @type {Array<HospitalEquipmentItemModel>}
|
|
6057
|
+
* @memberof HospitalEquipmentsModel
|
|
5825
6058
|
*/
|
|
5826
|
-
'
|
|
6059
|
+
'items'?: Array<HospitalEquipmentItemModel> | null;
|
|
5827
6060
|
/**
|
|
5828
6061
|
*
|
|
5829
|
-
* @type {
|
|
5830
|
-
* @memberof
|
|
6062
|
+
* @type {PagedListMetaData}
|
|
6063
|
+
* @memberof HospitalEquipmentsModel
|
|
5831
6064
|
*/
|
|
5832
|
-
'
|
|
6065
|
+
'metaData'?: PagedListMetaData;
|
|
6066
|
+
}
|
|
6067
|
+
/**
|
|
6068
|
+
*
|
|
6069
|
+
* @export
|
|
6070
|
+
* @interface HospitalEvaluationItemModel
|
|
6071
|
+
*/
|
|
6072
|
+
export interface HospitalEvaluationItemModel {
|
|
5833
6073
|
/**
|
|
5834
6074
|
*
|
|
5835
6075
|
* @type {string}
|
|
5836
|
-
* @memberof
|
|
6076
|
+
* @memberof HospitalEvaluationItemModel
|
|
5837
6077
|
*/
|
|
5838
|
-
'
|
|
6078
|
+
'id'?: string;
|
|
5839
6079
|
/**
|
|
5840
6080
|
*
|
|
5841
|
-
* @type {
|
|
5842
|
-
* @memberof
|
|
6081
|
+
* @type {string}
|
|
6082
|
+
* @memberof HospitalEvaluationItemModel
|
|
5843
6083
|
*/
|
|
5844
|
-
'
|
|
6084
|
+
'hospitalId'?: string;
|
|
5845
6085
|
/**
|
|
5846
6086
|
*
|
|
5847
|
-
* @type {
|
|
5848
|
-
* @memberof
|
|
6087
|
+
* @type {string}
|
|
6088
|
+
* @memberof HospitalEvaluationItemModel
|
|
5849
6089
|
*/
|
|
5850
|
-
'
|
|
6090
|
+
'hospitalName'?: string | null;
|
|
6091
|
+
/**
|
|
6092
|
+
*
|
|
6093
|
+
* @type {string}
|
|
6094
|
+
* @memberof HospitalEvaluationItemModel
|
|
6095
|
+
*/
|
|
6096
|
+
'name'?: string | null;
|
|
6097
|
+
/**
|
|
6098
|
+
*
|
|
6099
|
+
* @type {number}
|
|
6100
|
+
* @memberof HospitalEvaluationItemModel
|
|
6101
|
+
*/
|
|
6102
|
+
'stars'?: number;
|
|
6103
|
+
/**
|
|
6104
|
+
*
|
|
6105
|
+
* @type {string}
|
|
6106
|
+
* @memberof HospitalEvaluationItemModel
|
|
6107
|
+
*/
|
|
6108
|
+
'description'?: string | null;
|
|
6109
|
+
/**
|
|
6110
|
+
*
|
|
6111
|
+
* @type {string}
|
|
6112
|
+
* @memberof HospitalEvaluationItemModel
|
|
6113
|
+
*/
|
|
6114
|
+
'referenceUrl'?: string | null;
|
|
6115
|
+
}
|
|
6116
|
+
/**
|
|
6117
|
+
*
|
|
6118
|
+
* @export
|
|
6119
|
+
* @interface HospitalEvaluationModel
|
|
6120
|
+
*/
|
|
6121
|
+
export interface HospitalEvaluationModel {
|
|
6122
|
+
/**
|
|
6123
|
+
*
|
|
6124
|
+
* @type {string}
|
|
6125
|
+
* @memberof HospitalEvaluationModel
|
|
6126
|
+
*/
|
|
6127
|
+
'id'?: string;
|
|
6128
|
+
/**
|
|
6129
|
+
*
|
|
6130
|
+
* @type {string}
|
|
6131
|
+
* @memberof HospitalEvaluationModel
|
|
6132
|
+
*/
|
|
6133
|
+
'hospitalId'?: string;
|
|
6134
|
+
/**
|
|
6135
|
+
*
|
|
6136
|
+
* @type {string}
|
|
6137
|
+
* @memberof HospitalEvaluationModel
|
|
6138
|
+
*/
|
|
6139
|
+
'hospitalName'?: string | null;
|
|
6140
|
+
/**
|
|
6141
|
+
*
|
|
6142
|
+
* @type {string}
|
|
6143
|
+
* @memberof HospitalEvaluationModel
|
|
6144
|
+
*/
|
|
6145
|
+
'name'?: string | null;
|
|
6146
|
+
/**
|
|
6147
|
+
*
|
|
6148
|
+
* @type {number}
|
|
6149
|
+
* @memberof HospitalEvaluationModel
|
|
6150
|
+
*/
|
|
6151
|
+
'stars'?: number;
|
|
6152
|
+
/**
|
|
6153
|
+
*
|
|
6154
|
+
* @type {string}
|
|
6155
|
+
* @memberof HospitalEvaluationModel
|
|
6156
|
+
*/
|
|
6157
|
+
'description'?: string | null;
|
|
6158
|
+
/**
|
|
6159
|
+
*
|
|
6160
|
+
* @type {string}
|
|
6161
|
+
* @memberof HospitalEvaluationModel
|
|
6162
|
+
*/
|
|
6163
|
+
'referenceUrl'?: string | null;
|
|
6164
|
+
}
|
|
6165
|
+
/**
|
|
6166
|
+
*
|
|
6167
|
+
* @export
|
|
6168
|
+
* @interface HospitalEvaluationsModel
|
|
6169
|
+
*/
|
|
6170
|
+
export interface HospitalEvaluationsModel {
|
|
6171
|
+
/**
|
|
6172
|
+
*
|
|
6173
|
+
* @type {Array<HospitalEvaluationItemModel>}
|
|
6174
|
+
* @memberof HospitalEvaluationsModel
|
|
6175
|
+
*/
|
|
6176
|
+
'items'?: Array<HospitalEvaluationItemModel> | null;
|
|
6177
|
+
/**
|
|
6178
|
+
*
|
|
6179
|
+
* @type {PagedListMetaData}
|
|
6180
|
+
* @memberof HospitalEvaluationsModel
|
|
6181
|
+
*/
|
|
6182
|
+
'metaData'?: PagedListMetaData;
|
|
6183
|
+
}
|
|
6184
|
+
/**
|
|
6185
|
+
*
|
|
6186
|
+
* @export
|
|
6187
|
+
* @interface HospitalItemModel
|
|
6188
|
+
*/
|
|
6189
|
+
export interface HospitalItemModel {
|
|
6190
|
+
/**
|
|
6191
|
+
*
|
|
6192
|
+
* @type {string}
|
|
6193
|
+
* @memberof HospitalItemModel
|
|
6194
|
+
*/
|
|
6195
|
+
'id'?: string;
|
|
6196
|
+
/**
|
|
6197
|
+
*
|
|
6198
|
+
* @type {string}
|
|
6199
|
+
* @memberof HospitalItemModel
|
|
6200
|
+
*/
|
|
6201
|
+
'name'?: string | null;
|
|
6202
|
+
/**
|
|
6203
|
+
*
|
|
6204
|
+
* @type {string}
|
|
6205
|
+
* @memberof HospitalItemModel
|
|
6206
|
+
*/
|
|
6207
|
+
'slug'?: string | null;
|
|
6208
|
+
/**
|
|
6209
|
+
*
|
|
6210
|
+
* @type {string}
|
|
6211
|
+
* @memberof HospitalItemModel
|
|
6212
|
+
*/
|
|
6213
|
+
'description'?: string | null;
|
|
6214
|
+
/**
|
|
6215
|
+
*
|
|
6216
|
+
* @type {string}
|
|
6217
|
+
* @memberof HospitalItemModel
|
|
6218
|
+
*/
|
|
6219
|
+
'logo'?: string | null;
|
|
6220
|
+
/**
|
|
6221
|
+
*
|
|
6222
|
+
* @type {string}
|
|
6223
|
+
* @memberof HospitalItemModel
|
|
6224
|
+
*/
|
|
6225
|
+
'overview'?: string | null;
|
|
6226
|
+
/**
|
|
6227
|
+
*
|
|
6228
|
+
* @type {number}
|
|
6229
|
+
* @memberof HospitalItemModel
|
|
6230
|
+
*/
|
|
6231
|
+
'bedsCount'?: number | null;
|
|
6232
|
+
/**
|
|
6233
|
+
*
|
|
6234
|
+
* @type {number}
|
|
6235
|
+
* @memberof HospitalItemModel
|
|
6236
|
+
*/
|
|
6237
|
+
'operationsPerYear'?: number | null;
|
|
6238
|
+
/**
|
|
6239
|
+
*
|
|
6240
|
+
* @type {number}
|
|
6241
|
+
* @memberof HospitalItemModel
|
|
6242
|
+
*/
|
|
6243
|
+
'foundationYear'?: number | null;
|
|
6244
|
+
/**
|
|
6245
|
+
*
|
|
6246
|
+
* @type {number}
|
|
6247
|
+
* @memberof HospitalItemModel
|
|
6248
|
+
*/
|
|
6249
|
+
'medicalStaffCount'?: number | null;
|
|
6250
|
+
/**
|
|
6251
|
+
*
|
|
6252
|
+
* @type {number}
|
|
6253
|
+
* @memberof HospitalItemModel
|
|
6254
|
+
*/
|
|
6255
|
+
'doctorCount'?: number | null;
|
|
6256
|
+
/**
|
|
6257
|
+
*
|
|
6258
|
+
* @type {string}
|
|
6259
|
+
* @memberof HospitalItemModel
|
|
6260
|
+
*/
|
|
6261
|
+
'countryId'?: string;
|
|
6262
|
+
/**
|
|
6263
|
+
*
|
|
6264
|
+
* @type {string}
|
|
6265
|
+
* @memberof HospitalItemModel
|
|
6266
|
+
*/
|
|
6267
|
+
'countryName'?: string | null;
|
|
6268
|
+
/**
|
|
6269
|
+
*
|
|
6270
|
+
* @type {MarketingType}
|
|
6271
|
+
* @memberof HospitalItemModel
|
|
6272
|
+
*/
|
|
6273
|
+
'marketingType'?: MarketingType;
|
|
6274
|
+
/**
|
|
6275
|
+
*
|
|
6276
|
+
* @type {boolean}
|
|
6277
|
+
* @memberof HospitalItemModel
|
|
6278
|
+
*/
|
|
6279
|
+
'consultationEnabled'?: boolean | null;
|
|
6280
|
+
/**
|
|
6281
|
+
*
|
|
6282
|
+
* @type {number}
|
|
6283
|
+
* @memberof HospitalItemModel
|
|
6284
|
+
*/
|
|
6285
|
+
'consultationFee'?: number | null;
|
|
6286
|
+
/**
|
|
6287
|
+
*
|
|
6288
|
+
* @type {string}
|
|
6289
|
+
* @memberof HospitalItemModel
|
|
6290
|
+
*/
|
|
6291
|
+
'timeZone'?: string | null;
|
|
6292
|
+
/**
|
|
6293
|
+
*
|
|
6294
|
+
* @type {number}
|
|
6295
|
+
* @memberof HospitalItemModel
|
|
6296
|
+
*/
|
|
6297
|
+
'articlesCount'?: number;
|
|
6298
|
+
/**
|
|
6299
|
+
*
|
|
6300
|
+
* @type {number}
|
|
6301
|
+
* @memberof HospitalItemModel
|
|
6302
|
+
*/
|
|
6303
|
+
'packagesCount'?: number;
|
|
5851
6304
|
/**
|
|
5852
6305
|
*
|
|
5853
6306
|
* @type {number}
|
|
@@ -6989,6 +7442,24 @@ export interface ManagerItemModel {
|
|
|
6989
7442
|
* @memberof ManagerItemModel
|
|
6990
7443
|
*/
|
|
6991
7444
|
'auditableEntity'?: AuditableEntity;
|
|
7445
|
+
/**
|
|
7446
|
+
*
|
|
7447
|
+
* @type {string}
|
|
7448
|
+
* @memberof ManagerItemModel
|
|
7449
|
+
*/
|
|
7450
|
+
'userType'?: string | null;
|
|
7451
|
+
/**
|
|
7452
|
+
*
|
|
7453
|
+
* @type {Array<UserLanguageModel>}
|
|
7454
|
+
* @memberof ManagerItemModel
|
|
7455
|
+
*/
|
|
7456
|
+
'languages'?: Array<UserLanguageModel> | null;
|
|
7457
|
+
/**
|
|
7458
|
+
*
|
|
7459
|
+
* @type {Array<UserLocationModel>}
|
|
7460
|
+
* @memberof ManagerItemModel
|
|
7461
|
+
*/
|
|
7462
|
+
'locations'?: Array<UserLocationModel> | null;
|
|
6992
7463
|
/**
|
|
6993
7464
|
*
|
|
6994
7465
|
* @type {string}
|
|
@@ -7001,6 +7472,12 @@ export interface ManagerItemModel {
|
|
|
7001
7472
|
* @memberof ManagerItemModel
|
|
7002
7473
|
*/
|
|
7003
7474
|
'hospitalName'?: string | null;
|
|
7475
|
+
/**
|
|
7476
|
+
*
|
|
7477
|
+
* @type {number}
|
|
7478
|
+
* @memberof ManagerItemModel
|
|
7479
|
+
*/
|
|
7480
|
+
'affiliationsCount'?: number;
|
|
7004
7481
|
}
|
|
7005
7482
|
/**
|
|
7006
7483
|
*
|
|
@@ -7110,6 +7587,18 @@ export interface ManagerModel {
|
|
|
7110
7587
|
* @memberof ManagerModel
|
|
7111
7588
|
*/
|
|
7112
7589
|
'locations'?: Array<UserLocationModel> | null;
|
|
7590
|
+
/**
|
|
7591
|
+
*
|
|
7592
|
+
* @type {string}
|
|
7593
|
+
* @memberof ManagerModel
|
|
7594
|
+
*/
|
|
7595
|
+
'hospitalId'?: string | null;
|
|
7596
|
+
/**
|
|
7597
|
+
*
|
|
7598
|
+
* @type {string}
|
|
7599
|
+
* @memberof ManagerModel
|
|
7600
|
+
*/
|
|
7601
|
+
'hospitalName'?: string | null;
|
|
7113
7602
|
/**
|
|
7114
7603
|
*
|
|
7115
7604
|
* @type {number}
|
|
@@ -9562,25 +10051,123 @@ export interface UpdateDoctorSpecialtyCommand {
|
|
|
9562
10051
|
/**
|
|
9563
10052
|
*
|
|
9564
10053
|
* @export
|
|
9565
|
-
* @interface
|
|
10054
|
+
* @interface UpdateFaqCategoryCommand
|
|
9566
10055
|
*/
|
|
9567
|
-
export interface
|
|
10056
|
+
export interface UpdateFaqCategoryCommand {
|
|
9568
10057
|
/**
|
|
9569
10058
|
*
|
|
9570
10059
|
* @type {string}
|
|
9571
|
-
* @memberof
|
|
10060
|
+
* @memberof UpdateFaqCategoryCommand
|
|
9572
10061
|
*/
|
|
9573
|
-
'
|
|
10062
|
+
'id'?: string | null;
|
|
9574
10063
|
/**
|
|
9575
10064
|
*
|
|
9576
10065
|
* @type {string}
|
|
9577
|
-
* @memberof
|
|
10066
|
+
* @memberof UpdateFaqCategoryCommand
|
|
9578
10067
|
*/
|
|
9579
10068
|
'name'?: string | null;
|
|
9580
10069
|
/**
|
|
9581
10070
|
*
|
|
9582
10071
|
* @type {string}
|
|
9583
|
-
* @memberof
|
|
10072
|
+
* @memberof UpdateFaqCategoryCommand
|
|
10073
|
+
*/
|
|
10074
|
+
'slug'?: string | null;
|
|
10075
|
+
/**
|
|
10076
|
+
*
|
|
10077
|
+
* @type {string}
|
|
10078
|
+
* @memberof UpdateFaqCategoryCommand
|
|
10079
|
+
*/
|
|
10080
|
+
'description'?: string | null;
|
|
10081
|
+
/**
|
|
10082
|
+
*
|
|
10083
|
+
* @type {number}
|
|
10084
|
+
* @memberof UpdateFaqCategoryCommand
|
|
10085
|
+
*/
|
|
10086
|
+
'order'?: number;
|
|
10087
|
+
/**
|
|
10088
|
+
*
|
|
10089
|
+
* @type {string}
|
|
10090
|
+
* @memberof UpdateFaqCategoryCommand
|
|
10091
|
+
*/
|
|
10092
|
+
'languageCode'?: string | null;
|
|
10093
|
+
/**
|
|
10094
|
+
*
|
|
10095
|
+
* @type {boolean}
|
|
10096
|
+
* @memberof UpdateFaqCategoryCommand
|
|
10097
|
+
*/
|
|
10098
|
+
'confirmed'?: boolean;
|
|
10099
|
+
}
|
|
10100
|
+
/**
|
|
10101
|
+
*
|
|
10102
|
+
* @export
|
|
10103
|
+
* @interface UpdateFaqCommand
|
|
10104
|
+
*/
|
|
10105
|
+
export interface UpdateFaqCommand {
|
|
10106
|
+
/**
|
|
10107
|
+
*
|
|
10108
|
+
* @type {string}
|
|
10109
|
+
* @memberof UpdateFaqCommand
|
|
10110
|
+
*/
|
|
10111
|
+
'id'?: string;
|
|
10112
|
+
/**
|
|
10113
|
+
*
|
|
10114
|
+
* @type {string}
|
|
10115
|
+
* @memberof UpdateFaqCommand
|
|
10116
|
+
*/
|
|
10117
|
+
'title'?: string | null;
|
|
10118
|
+
/**
|
|
10119
|
+
*
|
|
10120
|
+
* @type {string}
|
|
10121
|
+
* @memberof UpdateFaqCommand
|
|
10122
|
+
*/
|
|
10123
|
+
'slug'?: string | null;
|
|
10124
|
+
/**
|
|
10125
|
+
*
|
|
10126
|
+
* @type {string}
|
|
10127
|
+
* @memberof UpdateFaqCommand
|
|
10128
|
+
*/
|
|
10129
|
+
'content'?: string | null;
|
|
10130
|
+
/**
|
|
10131
|
+
*
|
|
10132
|
+
* @type {number}
|
|
10133
|
+
* @memberof UpdateFaqCommand
|
|
10134
|
+
*/
|
|
10135
|
+
'order'?: number;
|
|
10136
|
+
/**
|
|
10137
|
+
*
|
|
10138
|
+
* @type {string}
|
|
10139
|
+
* @memberof UpdateFaqCommand
|
|
10140
|
+
*/
|
|
10141
|
+
'languageCode'?: string | null;
|
|
10142
|
+
/**
|
|
10143
|
+
*
|
|
10144
|
+
* @type {boolean}
|
|
10145
|
+
* @memberof UpdateFaqCommand
|
|
10146
|
+
*/
|
|
10147
|
+
'confirmed'?: boolean;
|
|
10148
|
+
}
|
|
10149
|
+
/**
|
|
10150
|
+
*
|
|
10151
|
+
* @export
|
|
10152
|
+
* @interface UpdateHospitalCommand
|
|
10153
|
+
*/
|
|
10154
|
+
export interface UpdateHospitalCommand {
|
|
10155
|
+
/**
|
|
10156
|
+
*
|
|
10157
|
+
* @type {string}
|
|
10158
|
+
* @memberof UpdateHospitalCommand
|
|
10159
|
+
*/
|
|
10160
|
+
'languageCode'?: string | null;
|
|
10161
|
+
/**
|
|
10162
|
+
*
|
|
10163
|
+
* @type {string}
|
|
10164
|
+
* @memberof UpdateHospitalCommand
|
|
10165
|
+
*/
|
|
10166
|
+
'name'?: string | null;
|
|
10167
|
+
/**
|
|
10168
|
+
*
|
|
10169
|
+
* @type {string}
|
|
10170
|
+
* @memberof UpdateHospitalCommand
|
|
9584
10171
|
*/
|
|
9585
10172
|
'slug'?: string | null;
|
|
9586
10173
|
/**
|
|
@@ -10146,42 +10733,12 @@ export interface UpdateSpecialtyCommand {
|
|
|
10146
10733
|
* @memberof UpdateSpecialtyCommand
|
|
10147
10734
|
*/
|
|
10148
10735
|
'content'?: string | null;
|
|
10149
|
-
/**
|
|
10150
|
-
*
|
|
10151
|
-
* @type {number}
|
|
10152
|
-
* @memberof UpdateSpecialtyCommand
|
|
10153
|
-
*/
|
|
10154
|
-
'hospitalSpecialtyCount'?: number;
|
|
10155
|
-
/**
|
|
10156
|
-
*
|
|
10157
|
-
* @type {number}
|
|
10158
|
-
* @memberof UpdateSpecialtyCommand
|
|
10159
|
-
*/
|
|
10160
|
-
'serviceCount'?: number;
|
|
10161
10736
|
/**
|
|
10162
10737
|
*
|
|
10163
10738
|
* @type {string}
|
|
10164
10739
|
* @memberof UpdateSpecialtyCommand
|
|
10165
10740
|
*/
|
|
10166
10741
|
'specialtyTypeId'?: string;
|
|
10167
|
-
/**
|
|
10168
|
-
*
|
|
10169
|
-
* @type {string}
|
|
10170
|
-
* @memberof UpdateSpecialtyCommand
|
|
10171
|
-
*/
|
|
10172
|
-
'specialtyTypeName'?: string | null;
|
|
10173
|
-
/**
|
|
10174
|
-
*
|
|
10175
|
-
* @type {boolean}
|
|
10176
|
-
* @memberof UpdateSpecialtyCommand
|
|
10177
|
-
*/
|
|
10178
|
-
'confirmed'?: boolean;
|
|
10179
|
-
/**
|
|
10180
|
-
*
|
|
10181
|
-
* @type {AuditableEntity}
|
|
10182
|
-
* @memberof UpdateSpecialtyCommand
|
|
10183
|
-
*/
|
|
10184
|
-
'auditableEntity'?: AuditableEntity;
|
|
10185
10742
|
}
|
|
10186
10743
|
/**
|
|
10187
10744
|
*
|
|
@@ -13667,7 +14224,7 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13667
14224
|
apiV1CountriesCountryIdPut: (countryId: string, updateCountryCommand?: UpdateCountryCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13668
14225
|
/**
|
|
13669
14226
|
*
|
|
13670
|
-
* @summary
|
|
14227
|
+
* @summary Reactivate country.
|
|
13671
14228
|
* @param {string} countryId
|
|
13672
14229
|
* @param {*} [options] Override http request option.
|
|
13673
14230
|
* @throws {RequiredError}
|
|
@@ -13790,7 +14347,7 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
|
|
|
13790
14347
|
apiV1CountriesCountryIdPut(countryId: string, updateCountryCommand?: UpdateCountryCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountryModel>>;
|
|
13791
14348
|
/**
|
|
13792
14349
|
*
|
|
13793
|
-
* @summary
|
|
14350
|
+
* @summary Reactivate country.
|
|
13794
14351
|
* @param {string} countryId
|
|
13795
14352
|
* @param {*} [options] Override http request option.
|
|
13796
14353
|
* @throws {RequiredError}
|
|
@@ -13913,7 +14470,7 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
|
|
|
13913
14470
|
apiV1CountriesCountryIdPut(countryId: string, updateCountryCommand?: UpdateCountryCommand | undefined, options?: any): AxiosPromise<CountryModel>;
|
|
13914
14471
|
/**
|
|
13915
14472
|
*
|
|
13916
|
-
* @summary
|
|
14473
|
+
* @summary Reactivate country.
|
|
13917
14474
|
* @param {string} countryId
|
|
13918
14475
|
* @param {*} [options] Override http request option.
|
|
13919
14476
|
* @throws {RequiredError}
|
|
@@ -14046,7 +14603,7 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
14046
14603
|
apiV1CountriesCountryIdPut(countryId: string, updateCountryCommand?: UpdateCountryCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel>>;
|
|
14047
14604
|
/**
|
|
14048
14605
|
*
|
|
14049
|
-
* @summary
|
|
14606
|
+
* @summary Reactivate country.
|
|
14050
14607
|
* @param {string} countryId
|
|
14051
14608
|
* @param {*} [options] Override http request option.
|
|
14052
14609
|
* @throws {RequiredError}
|
|
@@ -14744,55 +15301,781 @@ export declare class DealsApi extends BaseAPI {
|
|
|
14744
15301
|
* @param {UpdateDealServiceCommand} [updateDealServiceCommand]
|
|
14745
15302
|
* @param {*} [options] Override http request option.
|
|
14746
15303
|
* @throws {RequiredError}
|
|
14747
|
-
* @memberof DealsApi
|
|
15304
|
+
* @memberof DealsApi
|
|
15305
|
+
*/
|
|
15306
|
+
apiV1DealsDealIdServicesServiceIdPut(dealId: string, serviceId: string, updateDealServiceCommand?: UpdateDealServiceCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealServiceModel>>;
|
|
15307
|
+
/**
|
|
15308
|
+
*
|
|
15309
|
+
* @summary Get all deals.
|
|
15310
|
+
* @param {string} [id]
|
|
15311
|
+
* @param {string} [name]
|
|
15312
|
+
* @param {MarketingType} [marketingType]
|
|
15313
|
+
* @param {string} [countryId]
|
|
15314
|
+
* @param {string} [hospitalId]
|
|
15315
|
+
* @param {string} [hospitalName]
|
|
15316
|
+
* @param {string} [specialtyId]
|
|
15317
|
+
* @param {string} [specialtyTypeId]
|
|
15318
|
+
* @param {string} [exceptHospitalId]
|
|
15319
|
+
* @param {string} [exceptDealId]
|
|
15320
|
+
* @param {Array<string>} [ids]
|
|
15321
|
+
* @param {number} [page]
|
|
15322
|
+
* @param {number} [limit]
|
|
15323
|
+
* @param {Date} [lastRetrieved]
|
|
15324
|
+
* @param {*} [options] Override http request option.
|
|
15325
|
+
* @throws {RequiredError}
|
|
15326
|
+
* @memberof DealsApi
|
|
15327
|
+
*/
|
|
15328
|
+
apiV1DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
|
|
15329
|
+
/**
|
|
15330
|
+
*
|
|
15331
|
+
* @summary Create a deal.
|
|
15332
|
+
* @param {CreateDealCommand} [createDealCommand]
|
|
15333
|
+
* @param {*} [options] Override http request option.
|
|
15334
|
+
* @throws {RequiredError}
|
|
15335
|
+
* @memberof DealsApi
|
|
15336
|
+
*/
|
|
15337
|
+
apiV1DealsPost(createDealCommand?: CreateDealCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
|
|
15338
|
+
/**
|
|
15339
|
+
*
|
|
15340
|
+
* @summary Get deal by slug.
|
|
15341
|
+
* @param {string} slug
|
|
15342
|
+
* @param {*} [options] Override http request option.
|
|
15343
|
+
* @throws {RequiredError}
|
|
15344
|
+
* @memberof DealsApi
|
|
15345
|
+
*/
|
|
15346
|
+
apiV1DealsSlugGet(slug: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
|
|
15347
|
+
}
|
|
15348
|
+
/**
|
|
15349
|
+
* DoctorsApi - axios parameter creator
|
|
15350
|
+
* @export
|
|
15351
|
+
*/
|
|
15352
|
+
export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
15353
|
+
/**
|
|
15354
|
+
*
|
|
15355
|
+
* @summary Get all doctor affiliations.
|
|
15356
|
+
* @param {string} doctorId
|
|
15357
|
+
* @param {string} [hospitalName]
|
|
15358
|
+
* @param {number} [page]
|
|
15359
|
+
* @param {number} [limit]
|
|
15360
|
+
* @param {Date} [lastRetrieved]
|
|
15361
|
+
* @param {*} [options] Override http request option.
|
|
15362
|
+
* @throws {RequiredError}
|
|
15363
|
+
*/
|
|
15364
|
+
apiV1DoctorsDoctorIdAffiliationsGet: (doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15365
|
+
/**
|
|
15366
|
+
*
|
|
15367
|
+
* @summary Delete doctor affiliation.
|
|
15368
|
+
* @param {string} doctorId
|
|
15369
|
+
* @param {string} hospitalId
|
|
15370
|
+
* @param {*} [options] Override http request option.
|
|
15371
|
+
* @throws {RequiredError}
|
|
15372
|
+
*/
|
|
15373
|
+
apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete: (doctorId: string, hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15374
|
+
/**
|
|
15375
|
+
*
|
|
15376
|
+
* @summary Get doctor affiliation.
|
|
15377
|
+
* @param {string} doctorId
|
|
15378
|
+
* @param {string} hospitalId
|
|
15379
|
+
* @param {*} [options] Override http request option.
|
|
15380
|
+
* @throws {RequiredError}
|
|
15381
|
+
*/
|
|
15382
|
+
apiV1DoctorsDoctorIdAffiliationsHospitalIdGet: (doctorId: string, hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15383
|
+
/**
|
|
15384
|
+
*
|
|
15385
|
+
* @param {string} doctorId
|
|
15386
|
+
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
15387
|
+
* @param {*} [options] Override http request option.
|
|
15388
|
+
* @throws {RequiredError}
|
|
15389
|
+
*/
|
|
15390
|
+
apiV1DoctorsDoctorIdAffiliationsPost: (doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15391
|
+
/**
|
|
15392
|
+
*
|
|
15393
|
+
* @summary Delete DoctorCertificate.
|
|
15394
|
+
* @param {string} doctorId
|
|
15395
|
+
* @param {string} certificateId
|
|
15396
|
+
* @param {*} [options] Override http request option.
|
|
15397
|
+
* @throws {RequiredError}
|
|
15398
|
+
*/
|
|
15399
|
+
apiV1DoctorsDoctorIdCertificatesCertificateIdDelete: (doctorId: string, certificateId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15400
|
+
/**
|
|
15401
|
+
*
|
|
15402
|
+
* @summary Get DoctorCertificate.
|
|
15403
|
+
* @param {string} doctorId
|
|
15404
|
+
* @param {string} certificateId
|
|
15405
|
+
* @param {*} [options] Override http request option.
|
|
15406
|
+
* @throws {RequiredError}
|
|
15407
|
+
*/
|
|
15408
|
+
apiV1DoctorsDoctorIdCertificatesCertificateIdGet: (doctorId: string, certificateId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15409
|
+
/**
|
|
15410
|
+
*
|
|
15411
|
+
* @summary Update DoctorCertificate.
|
|
15412
|
+
* @param {string} doctorId
|
|
15413
|
+
* @param {string} certificateId
|
|
15414
|
+
* @param {UpdateDoctorCertificateCommand} [updateDoctorCertificateCommand]
|
|
15415
|
+
* @param {*} [options] Override http request option.
|
|
15416
|
+
* @throws {RequiredError}
|
|
15417
|
+
*/
|
|
15418
|
+
apiV1DoctorsDoctorIdCertificatesCertificateIdPut: (doctorId: string, certificateId: string, updateDoctorCertificateCommand?: UpdateDoctorCertificateCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15419
|
+
/**
|
|
15420
|
+
*
|
|
15421
|
+
* @summary Delete DoctorCertificate.
|
|
15422
|
+
* @param {string} doctorId
|
|
15423
|
+
* @param {string} [doctorName]
|
|
15424
|
+
* @param {string} [certificateId]
|
|
15425
|
+
* @param {string} [certificate]
|
|
15426
|
+
* @param {Date} [activeFrom]
|
|
15427
|
+
* @param {Date} [activeTo]
|
|
15428
|
+
* @param {number} [page]
|
|
15429
|
+
* @param {number} [limit]
|
|
15430
|
+
* @param {Date} [lastRetrieved]
|
|
15431
|
+
* @param {*} [options] Override http request option.
|
|
15432
|
+
* @throws {RequiredError}
|
|
15433
|
+
*/
|
|
15434
|
+
apiV1DoctorsDoctorIdCertificatesGet: (doctorId: string, doctorName?: string | undefined, certificateId?: string | undefined, certificate?: string | undefined, activeFrom?: Date | undefined, activeTo?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15435
|
+
/**
|
|
15436
|
+
*
|
|
15437
|
+
* @summary Create DoctorCertificate.
|
|
15438
|
+
* @param {string} doctorId
|
|
15439
|
+
* @param {CreateDoctorCertificateCommand} [createDoctorCertificateCommand]
|
|
15440
|
+
* @param {*} [options] Override http request option.
|
|
15441
|
+
* @throws {RequiredError}
|
|
15442
|
+
*/
|
|
15443
|
+
apiV1DoctorsDoctorIdCertificatesPost: (doctorId: string, createDoctorCertificateCommand?: CreateDoctorCertificateCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15444
|
+
/**
|
|
15445
|
+
*
|
|
15446
|
+
* @summary Delete Doctor.
|
|
15447
|
+
* @param {string} doctorId
|
|
15448
|
+
* @param {*} [options] Override http request option.
|
|
15449
|
+
* @throws {RequiredError}
|
|
15450
|
+
*/
|
|
15451
|
+
apiV1DoctorsDoctorIdDelete: (doctorId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15452
|
+
/**
|
|
15453
|
+
*
|
|
15454
|
+
* @summary Delete DoctorEducation
|
|
15455
|
+
* @param {string} doctorId
|
|
15456
|
+
* @param {string} educationId
|
|
15457
|
+
* @param {*} [options] Override http request option.
|
|
15458
|
+
* @throws {RequiredError}
|
|
15459
|
+
*/
|
|
15460
|
+
apiV1DoctorsDoctorIdEducationsEducationIdDelete: (doctorId: string, educationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15461
|
+
/**
|
|
15462
|
+
*
|
|
15463
|
+
* @summary Get DoctorEducation.
|
|
15464
|
+
* @param {string} doctorId
|
|
15465
|
+
* @param {string} educationId
|
|
15466
|
+
* @param {*} [options] Override http request option.
|
|
15467
|
+
* @throws {RequiredError}
|
|
15468
|
+
*/
|
|
15469
|
+
apiV1DoctorsDoctorIdEducationsEducationIdGet: (doctorId: string, educationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15470
|
+
/**
|
|
15471
|
+
*
|
|
15472
|
+
* @summary Update DoctorEducation.
|
|
15473
|
+
* @param {string} doctorId
|
|
15474
|
+
* @param {string} educationId
|
|
15475
|
+
* @param {UpdateDoctorEducationCommand} [updateDoctorEducationCommand]
|
|
15476
|
+
* @param {*} [options] Override http request option.
|
|
15477
|
+
* @throws {RequiredError}
|
|
15478
|
+
*/
|
|
15479
|
+
apiV1DoctorsDoctorIdEducationsEducationIdPut: (doctorId: string, educationId: string, updateDoctorEducationCommand?: UpdateDoctorEducationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15480
|
+
/**
|
|
15481
|
+
*
|
|
15482
|
+
* @summary Get all DoctorEducations.
|
|
15483
|
+
* @param {string} doctorId
|
|
15484
|
+
* @param {string} [doctorName]
|
|
15485
|
+
* @param {string} [educationId]
|
|
15486
|
+
* @param {string} [institution]
|
|
15487
|
+
* @param {string} [qualification]
|
|
15488
|
+
* @param {Date} [graduationDate]
|
|
15489
|
+
* @param {number} [page]
|
|
15490
|
+
* @param {number} [limit]
|
|
15491
|
+
* @param {Date} [lastRetrieved]
|
|
15492
|
+
* @param {*} [options] Override http request option.
|
|
15493
|
+
* @throws {RequiredError}
|
|
15494
|
+
*/
|
|
15495
|
+
apiV1DoctorsDoctorIdEducationsGet: (doctorId: string, doctorName?: string | undefined, educationId?: string | undefined, institution?: string | undefined, qualification?: string | undefined, graduationDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15496
|
+
/**
|
|
15497
|
+
*
|
|
15498
|
+
* @summary Create DoctorEducation.
|
|
15499
|
+
* @param {string} doctorId
|
|
15500
|
+
* @param {CreateDoctorEducationCommand} [createDoctorEducationCommand]
|
|
15501
|
+
* @param {*} [options] Override http request option.
|
|
15502
|
+
* @throws {RequiredError}
|
|
15503
|
+
*/
|
|
15504
|
+
apiV1DoctorsDoctorIdEducationsPost: (doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15505
|
+
/**
|
|
15506
|
+
*
|
|
15507
|
+
* @summary Get Doctor.
|
|
15508
|
+
* @param {string} doctorId
|
|
15509
|
+
* @param {*} [options] Override http request option.
|
|
15510
|
+
* @throws {RequiredError}
|
|
15511
|
+
*/
|
|
15512
|
+
apiV1DoctorsDoctorIdGet: (doctorId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15513
|
+
/**
|
|
15514
|
+
*
|
|
15515
|
+
* @summary Get all DoctorMedias.
|
|
15516
|
+
* @param {string} doctorId
|
|
15517
|
+
* @param {string} [id]
|
|
15518
|
+
* @param {MediaType} [mediaType]
|
|
15519
|
+
* @param {number} [page]
|
|
15520
|
+
* @param {number} [limit]
|
|
15521
|
+
* @param {Date} [lastRetrieved]
|
|
15522
|
+
* @param {*} [options] Override http request option.
|
|
15523
|
+
* @throws {RequiredError}
|
|
15524
|
+
*/
|
|
15525
|
+
apiV1DoctorsDoctorIdMediasGet: (doctorId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15526
|
+
/**
|
|
15527
|
+
*
|
|
15528
|
+
* @summary Delete DoctorMedia
|
|
15529
|
+
* @param {string} doctorId
|
|
15530
|
+
* @param {string} mediaId
|
|
15531
|
+
* @param {*} [options] Override http request option.
|
|
15532
|
+
* @throws {RequiredError}
|
|
15533
|
+
*/
|
|
15534
|
+
apiV1DoctorsDoctorIdMediasMediaIdDelete: (doctorId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15535
|
+
/**
|
|
15536
|
+
*
|
|
15537
|
+
* @summary Get DoctorMedia.
|
|
15538
|
+
* @param {string} doctorId
|
|
15539
|
+
* @param {string} mediaId
|
|
15540
|
+
* @param {*} [options] Override http request option.
|
|
15541
|
+
* @throws {RequiredError}
|
|
15542
|
+
*/
|
|
15543
|
+
apiV1DoctorsDoctorIdMediasMediaIdGet: (doctorId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15544
|
+
/**
|
|
15545
|
+
*
|
|
15546
|
+
* @summary Update DoctorMedia.
|
|
15547
|
+
* @param {string} doctorId
|
|
15548
|
+
* @param {string} mediaId
|
|
15549
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
15550
|
+
* @param {*} [options] Override http request option.
|
|
15551
|
+
* @throws {RequiredError}
|
|
15552
|
+
*/
|
|
15553
|
+
apiV1DoctorsDoctorIdMediasMediaIdPut: (doctorId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15554
|
+
/**
|
|
15555
|
+
*
|
|
15556
|
+
* @summary Create DoctorMedia.
|
|
15557
|
+
* @param {string} doctorId
|
|
15558
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
15559
|
+
* @param {*} [options] Override http request option.
|
|
15560
|
+
* @throws {RequiredError}
|
|
15561
|
+
*/
|
|
15562
|
+
apiV1DoctorsDoctorIdMediasPost: (doctorId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15563
|
+
/**
|
|
15564
|
+
*
|
|
15565
|
+
* @summary Get All DoctorPortfolios
|
|
15566
|
+
* @param {string} doctorId
|
|
15567
|
+
* @param {string} [doctorName]
|
|
15568
|
+
* @param {string} [portfolioId]
|
|
15569
|
+
* @param {string} [name]
|
|
15570
|
+
* @param {number} [page]
|
|
15571
|
+
* @param {number} [limit]
|
|
15572
|
+
* @param {Date} [lastRetrieved]
|
|
15573
|
+
* @param {*} [options] Override http request option.
|
|
15574
|
+
* @throws {RequiredError}
|
|
15575
|
+
*/
|
|
15576
|
+
apiV1DoctorsDoctorIdPortfoliosGet: (doctorId: string, doctorName?: string | undefined, portfolioId?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15577
|
+
/**
|
|
15578
|
+
*
|
|
15579
|
+
* @summary Delete DoctorPortfolio.
|
|
15580
|
+
* @param {string} doctorId
|
|
15581
|
+
* @param {string} portfolioId
|
|
15582
|
+
* @param {*} [options] Override http request option.
|
|
15583
|
+
* @throws {RequiredError}
|
|
15584
|
+
*/
|
|
15585
|
+
apiV1DoctorsDoctorIdPortfoliosPortfolioIdDelete: (doctorId: string, portfolioId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15586
|
+
/**
|
|
15587
|
+
*
|
|
15588
|
+
* @summary Get DoctorPortfolio.
|
|
15589
|
+
* @param {string} doctorId
|
|
15590
|
+
* @param {string} portfolioId
|
|
15591
|
+
* @param {*} [options] Override http request option.
|
|
15592
|
+
* @throws {RequiredError}
|
|
15593
|
+
*/
|
|
15594
|
+
apiV1DoctorsDoctorIdPortfoliosPortfolioIdGet: (doctorId: string, portfolioId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15595
|
+
/**
|
|
15596
|
+
*
|
|
15597
|
+
* @summary Update DoctorPortfolio.
|
|
15598
|
+
* @param {string} doctorId
|
|
15599
|
+
* @param {string} portfolioId
|
|
15600
|
+
* @param {UpdateDoctorPortfolioCommand} [updateDoctorPortfolioCommand]
|
|
15601
|
+
* @param {*} [options] Override http request option.
|
|
15602
|
+
* @throws {RequiredError}
|
|
15603
|
+
*/
|
|
15604
|
+
apiV1DoctorsDoctorIdPortfoliosPortfolioIdPut: (doctorId: string, portfolioId: string, updateDoctorPortfolioCommand?: UpdateDoctorPortfolioCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15605
|
+
/**
|
|
15606
|
+
*
|
|
15607
|
+
* @summary Create DoctorPortfolio.
|
|
15608
|
+
* @param {string} doctorId
|
|
15609
|
+
* @param {CreateDoctorPortfolioCommand} [createDoctorPortfolioCommand]
|
|
15610
|
+
* @param {*} [options] Override http request option.
|
|
15611
|
+
* @throws {RequiredError}
|
|
15612
|
+
*/
|
|
15613
|
+
apiV1DoctorsDoctorIdPortfoliosPost: (doctorId: string, createDoctorPortfolioCommand?: CreateDoctorPortfolioCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15614
|
+
/**
|
|
15615
|
+
*
|
|
15616
|
+
* @summary Update Doctor.
|
|
15617
|
+
* @param {string} doctorId
|
|
15618
|
+
* @param {UpdateDoctorCommand} [updateDoctorCommand]
|
|
15619
|
+
* @param {*} [options] Override http request option.
|
|
15620
|
+
* @throws {RequiredError}
|
|
15621
|
+
*/
|
|
15622
|
+
apiV1DoctorsDoctorIdPut: (doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15623
|
+
/**
|
|
15624
|
+
*
|
|
15625
|
+
* @summary Get All DoctorSpecialties.
|
|
15626
|
+
* @param {string} doctorId
|
|
15627
|
+
* @param {string} [doctorName]
|
|
15628
|
+
* @param {string} [specialtyId]
|
|
15629
|
+
* @param {string} [specialtyName]
|
|
15630
|
+
* @param {number} [page]
|
|
15631
|
+
* @param {number} [limit]
|
|
15632
|
+
* @param {Date} [lastRetrieved]
|
|
15633
|
+
* @param {*} [options] Override http request option.
|
|
15634
|
+
* @throws {RequiredError}
|
|
15635
|
+
*/
|
|
15636
|
+
apiV1DoctorsDoctorIdSpecialtiesGet: (doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15637
|
+
/**
|
|
15638
|
+
*
|
|
15639
|
+
* @summary Link a doctor to a specialty.
|
|
15640
|
+
* @param {string} doctorId
|
|
15641
|
+
* @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
|
|
15642
|
+
* @param {*} [options] Override http request option.
|
|
15643
|
+
* @throws {RequiredError}
|
|
15644
|
+
*/
|
|
15645
|
+
apiV1DoctorsDoctorIdSpecialtiesPost: (doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15646
|
+
/**
|
|
15647
|
+
*
|
|
15648
|
+
* @summary Remove link between the doctor and the specialty.
|
|
15649
|
+
* @param {string} doctorId
|
|
15650
|
+
* @param {string} specialtyId
|
|
15651
|
+
* @param {*} [options] Override http request option.
|
|
15652
|
+
* @throws {RequiredError}
|
|
15653
|
+
*/
|
|
15654
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdDelete: (doctorId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15655
|
+
/**
|
|
15656
|
+
*
|
|
15657
|
+
* @summary Get DoctorSpecialty
|
|
15658
|
+
* @param {string} doctorId
|
|
15659
|
+
* @param {string} specialtyId
|
|
15660
|
+
* @param {*} [options] Override http request option.
|
|
15661
|
+
* @throws {RequiredError}
|
|
15662
|
+
*/
|
|
15663
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet: (doctorId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15664
|
+
/**
|
|
15665
|
+
*
|
|
15666
|
+
* @summary Update DoctorSpecialty.
|
|
15667
|
+
* @param {string} doctorId
|
|
15668
|
+
* @param {string} specialtyId
|
|
15669
|
+
* @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
|
|
15670
|
+
* @param {*} [options] Override http request option.
|
|
15671
|
+
* @throws {RequiredError}
|
|
15672
|
+
*/
|
|
15673
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut: (doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15674
|
+
/**
|
|
15675
|
+
*
|
|
15676
|
+
* @summary Get all Doctors.
|
|
15677
|
+
* @param {string} [hospitalId]
|
|
15678
|
+
* @param {string} [languageCode]
|
|
15679
|
+
* @param {string} [id]
|
|
15680
|
+
* @param {string} [fullname]
|
|
15681
|
+
* @param {string} [email]
|
|
15682
|
+
* @param {Gender} [gender]
|
|
15683
|
+
* @param {Date} [dateOfBirth]
|
|
15684
|
+
* @param {Date} [created]
|
|
15685
|
+
* @param {boolean} [showHidden]
|
|
15686
|
+
* @param {number} [page]
|
|
15687
|
+
* @param {number} [limit]
|
|
15688
|
+
* @param {Date} [lastRetrieved]
|
|
15689
|
+
* @param {*} [options] Override http request option.
|
|
15690
|
+
* @throws {RequiredError}
|
|
15691
|
+
*/
|
|
15692
|
+
apiV1DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15693
|
+
/**
|
|
15694
|
+
*
|
|
15695
|
+
* @summary Create a Doctor.
|
|
15696
|
+
* @param {CreateDoctorCommand} [createDoctorCommand]
|
|
15697
|
+
* @param {*} [options] Override http request option.
|
|
15698
|
+
* @throws {RequiredError}
|
|
15699
|
+
*/
|
|
15700
|
+
apiV1DoctorsPost: (createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15701
|
+
/**
|
|
15702
|
+
*
|
|
15703
|
+
* @summary Get Doctor by slug.
|
|
15704
|
+
* @param {string} slug
|
|
15705
|
+
* @param {string} [languageCode]
|
|
15706
|
+
* @param {*} [options] Override http request option.
|
|
15707
|
+
* @throws {RequiredError}
|
|
15708
|
+
*/
|
|
15709
|
+
apiV1DoctorsSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15710
|
+
};
|
|
15711
|
+
/**
|
|
15712
|
+
* DoctorsApi - functional programming interface
|
|
15713
|
+
* @export
|
|
15714
|
+
*/
|
|
15715
|
+
export declare const DoctorsApiFp: (configuration?: Configuration | undefined) => {
|
|
15716
|
+
/**
|
|
15717
|
+
*
|
|
15718
|
+
* @summary Get all doctor affiliations.
|
|
15719
|
+
* @param {string} doctorId
|
|
15720
|
+
* @param {string} [hospitalName]
|
|
15721
|
+
* @param {number} [page]
|
|
15722
|
+
* @param {number} [limit]
|
|
15723
|
+
* @param {Date} [lastRetrieved]
|
|
15724
|
+
* @param {*} [options] Override http request option.
|
|
15725
|
+
* @throws {RequiredError}
|
|
15726
|
+
*/
|
|
15727
|
+
apiV1DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
|
|
15728
|
+
/**
|
|
15729
|
+
*
|
|
15730
|
+
* @summary Delete doctor affiliation.
|
|
15731
|
+
* @param {string} doctorId
|
|
15732
|
+
* @param {string} hospitalId
|
|
15733
|
+
* @param {*} [options] Override http request option.
|
|
15734
|
+
* @throws {RequiredError}
|
|
15735
|
+
*/
|
|
15736
|
+
apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId: string, hospitalId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
15737
|
+
/**
|
|
15738
|
+
*
|
|
15739
|
+
* @summary Get doctor affiliation.
|
|
15740
|
+
* @param {string} doctorId
|
|
15741
|
+
* @param {string} hospitalId
|
|
15742
|
+
* @param {*} [options] Override http request option.
|
|
15743
|
+
* @throws {RequiredError}
|
|
15744
|
+
*/
|
|
15745
|
+
apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
|
|
15746
|
+
/**
|
|
15747
|
+
*
|
|
15748
|
+
* @param {string} doctorId
|
|
15749
|
+
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
15750
|
+
* @param {*} [options] Override http request option.
|
|
15751
|
+
* @throws {RequiredError}
|
|
15752
|
+
*/
|
|
15753
|
+
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
15754
|
+
/**
|
|
15755
|
+
*
|
|
15756
|
+
* @summary Delete DoctorCertificate.
|
|
15757
|
+
* @param {string} doctorId
|
|
15758
|
+
* @param {string} certificateId
|
|
15759
|
+
* @param {*} [options] Override http request option.
|
|
15760
|
+
* @throws {RequiredError}
|
|
15761
|
+
*/
|
|
15762
|
+
apiV1DoctorsDoctorIdCertificatesCertificateIdDelete(doctorId: string, certificateId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
15763
|
+
/**
|
|
15764
|
+
*
|
|
15765
|
+
* @summary Get DoctorCertificate.
|
|
15766
|
+
* @param {string} doctorId
|
|
15767
|
+
* @param {string} certificateId
|
|
15768
|
+
* @param {*} [options] Override http request option.
|
|
15769
|
+
* @throws {RequiredError}
|
|
15770
|
+
*/
|
|
15771
|
+
apiV1DoctorsDoctorIdCertificatesCertificateIdGet(doctorId: string, certificateId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorCertificateModel>>;
|
|
15772
|
+
/**
|
|
15773
|
+
*
|
|
15774
|
+
* @summary Update DoctorCertificate.
|
|
15775
|
+
* @param {string} doctorId
|
|
15776
|
+
* @param {string} certificateId
|
|
15777
|
+
* @param {UpdateDoctorCertificateCommand} [updateDoctorCertificateCommand]
|
|
15778
|
+
* @param {*} [options] Override http request option.
|
|
15779
|
+
* @throws {RequiredError}
|
|
15780
|
+
*/
|
|
15781
|
+
apiV1DoctorsDoctorIdCertificatesCertificateIdPut(doctorId: string, certificateId: string, updateDoctorCertificateCommand?: UpdateDoctorCertificateCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorCertificateModel>>;
|
|
15782
|
+
/**
|
|
15783
|
+
*
|
|
15784
|
+
* @summary Delete DoctorCertificate.
|
|
15785
|
+
* @param {string} doctorId
|
|
15786
|
+
* @param {string} [doctorName]
|
|
15787
|
+
* @param {string} [certificateId]
|
|
15788
|
+
* @param {string} [certificate]
|
|
15789
|
+
* @param {Date} [activeFrom]
|
|
15790
|
+
* @param {Date} [activeTo]
|
|
15791
|
+
* @param {number} [page]
|
|
15792
|
+
* @param {number} [limit]
|
|
15793
|
+
* @param {Date} [lastRetrieved]
|
|
15794
|
+
* @param {*} [options] Override http request option.
|
|
15795
|
+
* @throws {RequiredError}
|
|
15796
|
+
*/
|
|
15797
|
+
apiV1DoctorsDoctorIdCertificatesGet(doctorId: string, doctorName?: string | undefined, certificateId?: string | undefined, certificate?: string | undefined, activeFrom?: Date | undefined, activeTo?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorCertificatesModel>>;
|
|
15798
|
+
/**
|
|
15799
|
+
*
|
|
15800
|
+
* @summary Create DoctorCertificate.
|
|
15801
|
+
* @param {string} doctorId
|
|
15802
|
+
* @param {CreateDoctorCertificateCommand} [createDoctorCertificateCommand]
|
|
15803
|
+
* @param {*} [options] Override http request option.
|
|
15804
|
+
* @throws {RequiredError}
|
|
15805
|
+
*/
|
|
15806
|
+
apiV1DoctorsDoctorIdCertificatesPost(doctorId: string, createDoctorCertificateCommand?: CreateDoctorCertificateCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorCertificateModel>>;
|
|
15807
|
+
/**
|
|
15808
|
+
*
|
|
15809
|
+
* @summary Delete Doctor.
|
|
15810
|
+
* @param {string} doctorId
|
|
15811
|
+
* @param {*} [options] Override http request option.
|
|
15812
|
+
* @throws {RequiredError}
|
|
15813
|
+
*/
|
|
15814
|
+
apiV1DoctorsDoctorIdDelete(doctorId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
15815
|
+
/**
|
|
15816
|
+
*
|
|
15817
|
+
* @summary Delete DoctorEducation
|
|
15818
|
+
* @param {string} doctorId
|
|
15819
|
+
* @param {string} educationId
|
|
15820
|
+
* @param {*} [options] Override http request option.
|
|
15821
|
+
* @throws {RequiredError}
|
|
15822
|
+
*/
|
|
15823
|
+
apiV1DoctorsDoctorIdEducationsEducationIdDelete(doctorId: string, educationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
15824
|
+
/**
|
|
15825
|
+
*
|
|
15826
|
+
* @summary Get DoctorEducation.
|
|
15827
|
+
* @param {string} doctorId
|
|
15828
|
+
* @param {string} educationId
|
|
15829
|
+
* @param {*} [options] Override http request option.
|
|
15830
|
+
* @throws {RequiredError}
|
|
15831
|
+
*/
|
|
15832
|
+
apiV1DoctorsDoctorIdEducationsEducationIdGet(doctorId: string, educationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorEducationModel>>;
|
|
15833
|
+
/**
|
|
15834
|
+
*
|
|
15835
|
+
* @summary Update DoctorEducation.
|
|
15836
|
+
* @param {string} doctorId
|
|
15837
|
+
* @param {string} educationId
|
|
15838
|
+
* @param {UpdateDoctorEducationCommand} [updateDoctorEducationCommand]
|
|
15839
|
+
* @param {*} [options] Override http request option.
|
|
15840
|
+
* @throws {RequiredError}
|
|
15841
|
+
*/
|
|
15842
|
+
apiV1DoctorsDoctorIdEducationsEducationIdPut(doctorId: string, educationId: string, updateDoctorEducationCommand?: UpdateDoctorEducationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorEducationModel>>;
|
|
15843
|
+
/**
|
|
15844
|
+
*
|
|
15845
|
+
* @summary Get all DoctorEducations.
|
|
15846
|
+
* @param {string} doctorId
|
|
15847
|
+
* @param {string} [doctorName]
|
|
15848
|
+
* @param {string} [educationId]
|
|
15849
|
+
* @param {string} [institution]
|
|
15850
|
+
* @param {string} [qualification]
|
|
15851
|
+
* @param {Date} [graduationDate]
|
|
15852
|
+
* @param {number} [page]
|
|
15853
|
+
* @param {number} [limit]
|
|
15854
|
+
* @param {Date} [lastRetrieved]
|
|
15855
|
+
* @param {*} [options] Override http request option.
|
|
15856
|
+
* @throws {RequiredError}
|
|
15857
|
+
*/
|
|
15858
|
+
apiV1DoctorsDoctorIdEducationsGet(doctorId: string, doctorName?: string | undefined, educationId?: string | undefined, institution?: string | undefined, qualification?: string | undefined, graduationDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorEducationsModel>>;
|
|
15859
|
+
/**
|
|
15860
|
+
*
|
|
15861
|
+
* @summary Create DoctorEducation.
|
|
15862
|
+
* @param {string} doctorId
|
|
15863
|
+
* @param {CreateDoctorEducationCommand} [createDoctorEducationCommand]
|
|
15864
|
+
* @param {*} [options] Override http request option.
|
|
15865
|
+
* @throws {RequiredError}
|
|
15866
|
+
*/
|
|
15867
|
+
apiV1DoctorsDoctorIdEducationsPost(doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorEducationModel>>;
|
|
15868
|
+
/**
|
|
15869
|
+
*
|
|
15870
|
+
* @summary Get Doctor.
|
|
15871
|
+
* @param {string} doctorId
|
|
15872
|
+
* @param {*} [options] Override http request option.
|
|
15873
|
+
* @throws {RequiredError}
|
|
15874
|
+
*/
|
|
15875
|
+
apiV1DoctorsDoctorIdGet(doctorId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
15876
|
+
/**
|
|
15877
|
+
*
|
|
15878
|
+
* @summary Get all DoctorMedias.
|
|
15879
|
+
* @param {string} doctorId
|
|
15880
|
+
* @param {string} [id]
|
|
15881
|
+
* @param {MediaType} [mediaType]
|
|
15882
|
+
* @param {number} [page]
|
|
15883
|
+
* @param {number} [limit]
|
|
15884
|
+
* @param {Date} [lastRetrieved]
|
|
15885
|
+
* @param {*} [options] Override http request option.
|
|
15886
|
+
* @throws {RequiredError}
|
|
15887
|
+
*/
|
|
15888
|
+
apiV1DoctorsDoctorIdMediasGet(doctorId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
15889
|
+
/**
|
|
15890
|
+
*
|
|
15891
|
+
* @summary Delete DoctorMedia
|
|
15892
|
+
* @param {string} doctorId
|
|
15893
|
+
* @param {string} mediaId
|
|
15894
|
+
* @param {*} [options] Override http request option.
|
|
15895
|
+
* @throws {RequiredError}
|
|
15896
|
+
*/
|
|
15897
|
+
apiV1DoctorsDoctorIdMediasMediaIdDelete(doctorId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
15898
|
+
/**
|
|
15899
|
+
*
|
|
15900
|
+
* @summary Get DoctorMedia.
|
|
15901
|
+
* @param {string} doctorId
|
|
15902
|
+
* @param {string} mediaId
|
|
15903
|
+
* @param {*} [options] Override http request option.
|
|
15904
|
+
* @throws {RequiredError}
|
|
15905
|
+
*/
|
|
15906
|
+
apiV1DoctorsDoctorIdMediasMediaIdGet(doctorId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
15907
|
+
/**
|
|
15908
|
+
*
|
|
15909
|
+
* @summary Update DoctorMedia.
|
|
15910
|
+
* @param {string} doctorId
|
|
15911
|
+
* @param {string} mediaId
|
|
15912
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
15913
|
+
* @param {*} [options] Override http request option.
|
|
15914
|
+
* @throws {RequiredError}
|
|
15915
|
+
*/
|
|
15916
|
+
apiV1DoctorsDoctorIdMediasMediaIdPut(doctorId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
15917
|
+
/**
|
|
15918
|
+
*
|
|
15919
|
+
* @summary Create DoctorMedia.
|
|
15920
|
+
* @param {string} doctorId
|
|
15921
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
15922
|
+
* @param {*} [options] Override http request option.
|
|
15923
|
+
* @throws {RequiredError}
|
|
15924
|
+
*/
|
|
15925
|
+
apiV1DoctorsDoctorIdMediasPost(doctorId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
15926
|
+
/**
|
|
15927
|
+
*
|
|
15928
|
+
* @summary Get All DoctorPortfolios
|
|
15929
|
+
* @param {string} doctorId
|
|
15930
|
+
* @param {string} [doctorName]
|
|
15931
|
+
* @param {string} [portfolioId]
|
|
15932
|
+
* @param {string} [name]
|
|
15933
|
+
* @param {number} [page]
|
|
15934
|
+
* @param {number} [limit]
|
|
15935
|
+
* @param {Date} [lastRetrieved]
|
|
15936
|
+
* @param {*} [options] Override http request option.
|
|
15937
|
+
* @throws {RequiredError}
|
|
15938
|
+
*/
|
|
15939
|
+
apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string, doctorName?: string | undefined, portfolioId?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorPortfoliosModel>>;
|
|
15940
|
+
/**
|
|
15941
|
+
*
|
|
15942
|
+
* @summary Delete DoctorPortfolio.
|
|
15943
|
+
* @param {string} doctorId
|
|
15944
|
+
* @param {string} portfolioId
|
|
15945
|
+
* @param {*} [options] Override http request option.
|
|
15946
|
+
* @throws {RequiredError}
|
|
15947
|
+
*/
|
|
15948
|
+
apiV1DoctorsDoctorIdPortfoliosPortfolioIdDelete(doctorId: string, portfolioId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
15949
|
+
/**
|
|
15950
|
+
*
|
|
15951
|
+
* @summary Get DoctorPortfolio.
|
|
15952
|
+
* @param {string} doctorId
|
|
15953
|
+
* @param {string} portfolioId
|
|
15954
|
+
* @param {*} [options] Override http request option.
|
|
15955
|
+
* @throws {RequiredError}
|
|
15956
|
+
*/
|
|
15957
|
+
apiV1DoctorsDoctorIdPortfoliosPortfolioIdGet(doctorId: string, portfolioId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorPortfolioModel>>;
|
|
15958
|
+
/**
|
|
15959
|
+
*
|
|
15960
|
+
* @summary Update DoctorPortfolio.
|
|
15961
|
+
* @param {string} doctorId
|
|
15962
|
+
* @param {string} portfolioId
|
|
15963
|
+
* @param {UpdateDoctorPortfolioCommand} [updateDoctorPortfolioCommand]
|
|
15964
|
+
* @param {*} [options] Override http request option.
|
|
15965
|
+
* @throws {RequiredError}
|
|
15966
|
+
*/
|
|
15967
|
+
apiV1DoctorsDoctorIdPortfoliosPortfolioIdPut(doctorId: string, portfolioId: string, updateDoctorPortfolioCommand?: UpdateDoctorPortfolioCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorPortfolioModel>>;
|
|
15968
|
+
/**
|
|
15969
|
+
*
|
|
15970
|
+
* @summary Create DoctorPortfolio.
|
|
15971
|
+
* @param {string} doctorId
|
|
15972
|
+
* @param {CreateDoctorPortfolioCommand} [createDoctorPortfolioCommand]
|
|
15973
|
+
* @param {*} [options] Override http request option.
|
|
15974
|
+
* @throws {RequiredError}
|
|
15975
|
+
*/
|
|
15976
|
+
apiV1DoctorsDoctorIdPortfoliosPost(doctorId: string, createDoctorPortfolioCommand?: CreateDoctorPortfolioCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorPortfolioModel>>;
|
|
15977
|
+
/**
|
|
15978
|
+
*
|
|
15979
|
+
* @summary Update Doctor.
|
|
15980
|
+
* @param {string} doctorId
|
|
15981
|
+
* @param {UpdateDoctorCommand} [updateDoctorCommand]
|
|
15982
|
+
* @param {*} [options] Override http request option.
|
|
15983
|
+
* @throws {RequiredError}
|
|
15984
|
+
*/
|
|
15985
|
+
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
15986
|
+
/**
|
|
15987
|
+
*
|
|
15988
|
+
* @summary Get All DoctorSpecialties.
|
|
15989
|
+
* @param {string} doctorId
|
|
15990
|
+
* @param {string} [doctorName]
|
|
15991
|
+
* @param {string} [specialtyId]
|
|
15992
|
+
* @param {string} [specialtyName]
|
|
15993
|
+
* @param {number} [page]
|
|
15994
|
+
* @param {number} [limit]
|
|
15995
|
+
* @param {Date} [lastRetrieved]
|
|
15996
|
+
* @param {*} [options] Override http request option.
|
|
15997
|
+
* @throws {RequiredError}
|
|
15998
|
+
*/
|
|
15999
|
+
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtiesModel>>;
|
|
16000
|
+
/**
|
|
16001
|
+
*
|
|
16002
|
+
* @summary Link a doctor to a specialty.
|
|
16003
|
+
* @param {string} doctorId
|
|
16004
|
+
* @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
|
|
16005
|
+
* @param {*} [options] Override http request option.
|
|
16006
|
+
* @throws {RequiredError}
|
|
16007
|
+
*/
|
|
16008
|
+
apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
|
|
16009
|
+
/**
|
|
16010
|
+
*
|
|
16011
|
+
* @summary Remove link between the doctor and the specialty.
|
|
16012
|
+
* @param {string} doctorId
|
|
16013
|
+
* @param {string} specialtyId
|
|
16014
|
+
* @param {*} [options] Override http request option.
|
|
16015
|
+
* @throws {RequiredError}
|
|
16016
|
+
*/
|
|
16017
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdDelete(doctorId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
16018
|
+
/**
|
|
16019
|
+
*
|
|
16020
|
+
* @summary Get DoctorSpecialty
|
|
16021
|
+
* @param {string} doctorId
|
|
16022
|
+
* @param {string} specialtyId
|
|
16023
|
+
* @param {*} [options] Override http request option.
|
|
16024
|
+
* @throws {RequiredError}
|
|
16025
|
+
*/
|
|
16026
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
|
|
16027
|
+
/**
|
|
16028
|
+
*
|
|
16029
|
+
* @summary Update DoctorSpecialty.
|
|
16030
|
+
* @param {string} doctorId
|
|
16031
|
+
* @param {string} specialtyId
|
|
16032
|
+
* @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
|
|
16033
|
+
* @param {*} [options] Override http request option.
|
|
16034
|
+
* @throws {RequiredError}
|
|
14748
16035
|
*/
|
|
14749
|
-
|
|
16036
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
|
|
14750
16037
|
/**
|
|
14751
16038
|
*
|
|
14752
|
-
* @summary Get all
|
|
14753
|
-
* @param {string} [id]
|
|
14754
|
-
* @param {string} [name]
|
|
14755
|
-
* @param {MarketingType} [marketingType]
|
|
14756
|
-
* @param {string} [countryId]
|
|
16039
|
+
* @summary Get all Doctors.
|
|
14757
16040
|
* @param {string} [hospitalId]
|
|
14758
|
-
* @param {string} [
|
|
14759
|
-
* @param {string} [
|
|
14760
|
-
* @param {string} [
|
|
14761
|
-
* @param {string} [
|
|
14762
|
-
* @param {
|
|
14763
|
-
* @param {
|
|
16041
|
+
* @param {string} [languageCode]
|
|
16042
|
+
* @param {string} [id]
|
|
16043
|
+
* @param {string} [fullname]
|
|
16044
|
+
* @param {string} [email]
|
|
16045
|
+
* @param {Gender} [gender]
|
|
16046
|
+
* @param {Date} [dateOfBirth]
|
|
16047
|
+
* @param {Date} [created]
|
|
16048
|
+
* @param {boolean} [showHidden]
|
|
14764
16049
|
* @param {number} [page]
|
|
14765
16050
|
* @param {number} [limit]
|
|
14766
16051
|
* @param {Date} [lastRetrieved]
|
|
14767
16052
|
* @param {*} [options] Override http request option.
|
|
14768
16053
|
* @throws {RequiredError}
|
|
14769
|
-
* @memberof DealsApi
|
|
14770
16054
|
*/
|
|
14771
|
-
|
|
16055
|
+
apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
|
|
14772
16056
|
/**
|
|
14773
16057
|
*
|
|
14774
|
-
* @summary Create a
|
|
14775
|
-
* @param {
|
|
16058
|
+
* @summary Create a Doctor.
|
|
16059
|
+
* @param {CreateDoctorCommand} [createDoctorCommand]
|
|
14776
16060
|
* @param {*} [options] Override http request option.
|
|
14777
16061
|
* @throws {RequiredError}
|
|
14778
|
-
* @memberof DealsApi
|
|
14779
16062
|
*/
|
|
14780
|
-
|
|
16063
|
+
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
14781
16064
|
/**
|
|
14782
16065
|
*
|
|
14783
|
-
* @summary Get
|
|
16066
|
+
* @summary Get Doctor by slug.
|
|
14784
16067
|
* @param {string} slug
|
|
16068
|
+
* @param {string} [languageCode]
|
|
14785
16069
|
* @param {*} [options] Override http request option.
|
|
14786
16070
|
* @throws {RequiredError}
|
|
14787
|
-
* @memberof DealsApi
|
|
14788
16071
|
*/
|
|
14789
|
-
|
|
14790
|
-
}
|
|
16072
|
+
apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
16073
|
+
};
|
|
14791
16074
|
/**
|
|
14792
|
-
* DoctorsApi -
|
|
16075
|
+
* DoctorsApi - factory interface
|
|
14793
16076
|
* @export
|
|
14794
16077
|
*/
|
|
14795
|
-
export declare const
|
|
16078
|
+
export declare const DoctorsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
14796
16079
|
/**
|
|
14797
16080
|
*
|
|
14798
16081
|
* @summary Get all doctor affiliations.
|
|
@@ -14804,7 +16087,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14804
16087
|
* @param {*} [options] Override http request option.
|
|
14805
16088
|
* @throws {RequiredError}
|
|
14806
16089
|
*/
|
|
14807
|
-
apiV1DoctorsDoctorIdAffiliationsGet
|
|
16090
|
+
apiV1DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
|
|
14808
16091
|
/**
|
|
14809
16092
|
*
|
|
14810
16093
|
* @summary Delete doctor affiliation.
|
|
@@ -14813,7 +16096,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14813
16096
|
* @param {*} [options] Override http request option.
|
|
14814
16097
|
* @throws {RequiredError}
|
|
14815
16098
|
*/
|
|
14816
|
-
apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete
|
|
16099
|
+
apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId: string, hospitalId: string, options?: any): AxiosPromise<boolean>;
|
|
14817
16100
|
/**
|
|
14818
16101
|
*
|
|
14819
16102
|
* @summary Get doctor affiliation.
|
|
@@ -14822,7 +16105,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14822
16105
|
* @param {*} [options] Override http request option.
|
|
14823
16106
|
* @throws {RequiredError}
|
|
14824
16107
|
*/
|
|
14825
|
-
apiV1DoctorsDoctorIdAffiliationsHospitalIdGet
|
|
16108
|
+
apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: any): AxiosPromise<DoctorAffiliationModel>;
|
|
14826
16109
|
/**
|
|
14827
16110
|
*
|
|
14828
16111
|
* @param {string} doctorId
|
|
@@ -14830,7 +16113,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14830
16113
|
* @param {*} [options] Override http request option.
|
|
14831
16114
|
* @throws {RequiredError}
|
|
14832
16115
|
*/
|
|
14833
|
-
apiV1DoctorsDoctorIdAffiliationsPost
|
|
16116
|
+
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
14834
16117
|
/**
|
|
14835
16118
|
*
|
|
14836
16119
|
* @summary Delete DoctorCertificate.
|
|
@@ -14839,7 +16122,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14839
16122
|
* @param {*} [options] Override http request option.
|
|
14840
16123
|
* @throws {RequiredError}
|
|
14841
16124
|
*/
|
|
14842
|
-
apiV1DoctorsDoctorIdCertificatesCertificateIdDelete
|
|
16125
|
+
apiV1DoctorsDoctorIdCertificatesCertificateIdDelete(doctorId: string, certificateId: string, options?: any): AxiosPromise<boolean>;
|
|
14843
16126
|
/**
|
|
14844
16127
|
*
|
|
14845
16128
|
* @summary Get DoctorCertificate.
|
|
@@ -14848,7 +16131,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14848
16131
|
* @param {*} [options] Override http request option.
|
|
14849
16132
|
* @throws {RequiredError}
|
|
14850
16133
|
*/
|
|
14851
|
-
apiV1DoctorsDoctorIdCertificatesCertificateIdGet
|
|
16134
|
+
apiV1DoctorsDoctorIdCertificatesCertificateIdGet(doctorId: string, certificateId: string, options?: any): AxiosPromise<DoctorCertificateModel>;
|
|
14852
16135
|
/**
|
|
14853
16136
|
*
|
|
14854
16137
|
* @summary Update DoctorCertificate.
|
|
@@ -14858,7 +16141,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14858
16141
|
* @param {*} [options] Override http request option.
|
|
14859
16142
|
* @throws {RequiredError}
|
|
14860
16143
|
*/
|
|
14861
|
-
apiV1DoctorsDoctorIdCertificatesCertificateIdPut
|
|
16144
|
+
apiV1DoctorsDoctorIdCertificatesCertificateIdPut(doctorId: string, certificateId: string, updateDoctorCertificateCommand?: UpdateDoctorCertificateCommand | undefined, options?: any): AxiosPromise<DoctorCertificateModel>;
|
|
14862
16145
|
/**
|
|
14863
16146
|
*
|
|
14864
16147
|
* @summary Delete DoctorCertificate.
|
|
@@ -14874,7 +16157,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14874
16157
|
* @param {*} [options] Override http request option.
|
|
14875
16158
|
* @throws {RequiredError}
|
|
14876
16159
|
*/
|
|
14877
|
-
apiV1DoctorsDoctorIdCertificatesGet
|
|
16160
|
+
apiV1DoctorsDoctorIdCertificatesGet(doctorId: string, doctorName?: string | undefined, certificateId?: string | undefined, certificate?: string | undefined, activeFrom?: Date | undefined, activeTo?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorCertificatesModel>;
|
|
14878
16161
|
/**
|
|
14879
16162
|
*
|
|
14880
16163
|
* @summary Create DoctorCertificate.
|
|
@@ -14883,7 +16166,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14883
16166
|
* @param {*} [options] Override http request option.
|
|
14884
16167
|
* @throws {RequiredError}
|
|
14885
16168
|
*/
|
|
14886
|
-
apiV1DoctorsDoctorIdCertificatesPost
|
|
16169
|
+
apiV1DoctorsDoctorIdCertificatesPost(doctorId: string, createDoctorCertificateCommand?: CreateDoctorCertificateCommand | undefined, options?: any): AxiosPromise<DoctorCertificateModel>;
|
|
14887
16170
|
/**
|
|
14888
16171
|
*
|
|
14889
16172
|
* @summary Delete Doctor.
|
|
@@ -14891,7 +16174,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14891
16174
|
* @param {*} [options] Override http request option.
|
|
14892
16175
|
* @throws {RequiredError}
|
|
14893
16176
|
*/
|
|
14894
|
-
apiV1DoctorsDoctorIdDelete
|
|
16177
|
+
apiV1DoctorsDoctorIdDelete(doctorId: string, options?: any): AxiosPromise<boolean>;
|
|
14895
16178
|
/**
|
|
14896
16179
|
*
|
|
14897
16180
|
* @summary Delete DoctorEducation
|
|
@@ -14900,7 +16183,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14900
16183
|
* @param {*} [options] Override http request option.
|
|
14901
16184
|
* @throws {RequiredError}
|
|
14902
16185
|
*/
|
|
14903
|
-
apiV1DoctorsDoctorIdEducationsEducationIdDelete
|
|
16186
|
+
apiV1DoctorsDoctorIdEducationsEducationIdDelete(doctorId: string, educationId: string, options?: any): AxiosPromise<boolean>;
|
|
14904
16187
|
/**
|
|
14905
16188
|
*
|
|
14906
16189
|
* @summary Get DoctorEducation.
|
|
@@ -14909,7 +16192,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14909
16192
|
* @param {*} [options] Override http request option.
|
|
14910
16193
|
* @throws {RequiredError}
|
|
14911
16194
|
*/
|
|
14912
|
-
apiV1DoctorsDoctorIdEducationsEducationIdGet
|
|
16195
|
+
apiV1DoctorsDoctorIdEducationsEducationIdGet(doctorId: string, educationId: string, options?: any): AxiosPromise<DoctorEducationModel>;
|
|
14913
16196
|
/**
|
|
14914
16197
|
*
|
|
14915
16198
|
* @summary Update DoctorEducation.
|
|
@@ -14919,7 +16202,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14919
16202
|
* @param {*} [options] Override http request option.
|
|
14920
16203
|
* @throws {RequiredError}
|
|
14921
16204
|
*/
|
|
14922
|
-
apiV1DoctorsDoctorIdEducationsEducationIdPut
|
|
16205
|
+
apiV1DoctorsDoctorIdEducationsEducationIdPut(doctorId: string, educationId: string, updateDoctorEducationCommand?: UpdateDoctorEducationCommand | undefined, options?: any): AxiosPromise<DoctorEducationModel>;
|
|
14923
16206
|
/**
|
|
14924
16207
|
*
|
|
14925
16208
|
* @summary Get all DoctorEducations.
|
|
@@ -14935,7 +16218,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14935
16218
|
* @param {*} [options] Override http request option.
|
|
14936
16219
|
* @throws {RequiredError}
|
|
14937
16220
|
*/
|
|
14938
|
-
apiV1DoctorsDoctorIdEducationsGet
|
|
16221
|
+
apiV1DoctorsDoctorIdEducationsGet(doctorId: string, doctorName?: string | undefined, educationId?: string | undefined, institution?: string | undefined, qualification?: string | undefined, graduationDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorEducationsModel>;
|
|
14939
16222
|
/**
|
|
14940
16223
|
*
|
|
14941
16224
|
* @summary Create DoctorEducation.
|
|
@@ -14944,7 +16227,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14944
16227
|
* @param {*} [options] Override http request option.
|
|
14945
16228
|
* @throws {RequiredError}
|
|
14946
16229
|
*/
|
|
14947
|
-
apiV1DoctorsDoctorIdEducationsPost
|
|
16230
|
+
apiV1DoctorsDoctorIdEducationsPost(doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand | undefined, options?: any): AxiosPromise<DoctorEducationModel>;
|
|
14948
16231
|
/**
|
|
14949
16232
|
*
|
|
14950
16233
|
* @summary Get Doctor.
|
|
@@ -14952,7 +16235,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14952
16235
|
* @param {*} [options] Override http request option.
|
|
14953
16236
|
* @throws {RequiredError}
|
|
14954
16237
|
*/
|
|
14955
|
-
apiV1DoctorsDoctorIdGet
|
|
16238
|
+
apiV1DoctorsDoctorIdGet(doctorId: string, options?: any): AxiosPromise<DoctorModel>;
|
|
14956
16239
|
/**
|
|
14957
16240
|
*
|
|
14958
16241
|
* @summary Get all DoctorMedias.
|
|
@@ -14965,7 +16248,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14965
16248
|
* @param {*} [options] Override http request option.
|
|
14966
16249
|
* @throws {RequiredError}
|
|
14967
16250
|
*/
|
|
14968
|
-
apiV1DoctorsDoctorIdMediasGet
|
|
16251
|
+
apiV1DoctorsDoctorIdMediasGet(doctorId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
|
|
14969
16252
|
/**
|
|
14970
16253
|
*
|
|
14971
16254
|
* @summary Delete DoctorMedia
|
|
@@ -14974,7 +16257,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14974
16257
|
* @param {*} [options] Override http request option.
|
|
14975
16258
|
* @throws {RequiredError}
|
|
14976
16259
|
*/
|
|
14977
|
-
apiV1DoctorsDoctorIdMediasMediaIdDelete
|
|
16260
|
+
apiV1DoctorsDoctorIdMediasMediaIdDelete(doctorId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
|
|
14978
16261
|
/**
|
|
14979
16262
|
*
|
|
14980
16263
|
* @summary Get DoctorMedia.
|
|
@@ -14983,7 +16266,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14983
16266
|
* @param {*} [options] Override http request option.
|
|
14984
16267
|
* @throws {RequiredError}
|
|
14985
16268
|
*/
|
|
14986
|
-
apiV1DoctorsDoctorIdMediasMediaIdGet
|
|
16269
|
+
apiV1DoctorsDoctorIdMediasMediaIdGet(doctorId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
14987
16270
|
/**
|
|
14988
16271
|
*
|
|
14989
16272
|
* @summary Update DoctorMedia.
|
|
@@ -14993,7 +16276,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14993
16276
|
* @param {*} [options] Override http request option.
|
|
14994
16277
|
* @throws {RequiredError}
|
|
14995
16278
|
*/
|
|
14996
|
-
apiV1DoctorsDoctorIdMediasMediaIdPut
|
|
16279
|
+
apiV1DoctorsDoctorIdMediasMediaIdPut(doctorId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
14997
16280
|
/**
|
|
14998
16281
|
*
|
|
14999
16282
|
* @summary Create DoctorMedia.
|
|
@@ -15002,7 +16285,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15002
16285
|
* @param {*} [options] Override http request option.
|
|
15003
16286
|
* @throws {RequiredError}
|
|
15004
16287
|
*/
|
|
15005
|
-
apiV1DoctorsDoctorIdMediasPost
|
|
16288
|
+
apiV1DoctorsDoctorIdMediasPost(doctorId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
15006
16289
|
/**
|
|
15007
16290
|
*
|
|
15008
16291
|
* @summary Get All DoctorPortfolios
|
|
@@ -15016,7 +16299,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15016
16299
|
* @param {*} [options] Override http request option.
|
|
15017
16300
|
* @throws {RequiredError}
|
|
15018
16301
|
*/
|
|
15019
|
-
apiV1DoctorsDoctorIdPortfoliosGet
|
|
16302
|
+
apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string, doctorName?: string | undefined, portfolioId?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorPortfoliosModel>;
|
|
15020
16303
|
/**
|
|
15021
16304
|
*
|
|
15022
16305
|
* @summary Delete DoctorPortfolio.
|
|
@@ -15025,7 +16308,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15025
16308
|
* @param {*} [options] Override http request option.
|
|
15026
16309
|
* @throws {RequiredError}
|
|
15027
16310
|
*/
|
|
15028
|
-
apiV1DoctorsDoctorIdPortfoliosPortfolioIdDelete
|
|
16311
|
+
apiV1DoctorsDoctorIdPortfoliosPortfolioIdDelete(doctorId: string, portfolioId: string, options?: any): AxiosPromise<boolean>;
|
|
15029
16312
|
/**
|
|
15030
16313
|
*
|
|
15031
16314
|
* @summary Get DoctorPortfolio.
|
|
@@ -15034,7 +16317,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15034
16317
|
* @param {*} [options] Override http request option.
|
|
15035
16318
|
* @throws {RequiredError}
|
|
15036
16319
|
*/
|
|
15037
|
-
apiV1DoctorsDoctorIdPortfoliosPortfolioIdGet
|
|
16320
|
+
apiV1DoctorsDoctorIdPortfoliosPortfolioIdGet(doctorId: string, portfolioId: string, options?: any): AxiosPromise<DoctorPortfolioModel>;
|
|
15038
16321
|
/**
|
|
15039
16322
|
*
|
|
15040
16323
|
* @summary Update DoctorPortfolio.
|
|
@@ -15044,7 +16327,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15044
16327
|
* @param {*} [options] Override http request option.
|
|
15045
16328
|
* @throws {RequiredError}
|
|
15046
16329
|
*/
|
|
15047
|
-
apiV1DoctorsDoctorIdPortfoliosPortfolioIdPut
|
|
16330
|
+
apiV1DoctorsDoctorIdPortfoliosPortfolioIdPut(doctorId: string, portfolioId: string, updateDoctorPortfolioCommand?: UpdateDoctorPortfolioCommand | undefined, options?: any): AxiosPromise<DoctorPortfolioModel>;
|
|
15048
16331
|
/**
|
|
15049
16332
|
*
|
|
15050
16333
|
* @summary Create DoctorPortfolio.
|
|
@@ -15053,7 +16336,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15053
16336
|
* @param {*} [options] Override http request option.
|
|
15054
16337
|
* @throws {RequiredError}
|
|
15055
16338
|
*/
|
|
15056
|
-
apiV1DoctorsDoctorIdPortfoliosPost
|
|
16339
|
+
apiV1DoctorsDoctorIdPortfoliosPost(doctorId: string, createDoctorPortfolioCommand?: CreateDoctorPortfolioCommand | undefined, options?: any): AxiosPromise<DoctorPortfolioModel>;
|
|
15057
16340
|
/**
|
|
15058
16341
|
*
|
|
15059
16342
|
* @summary Update Doctor.
|
|
@@ -15062,7 +16345,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15062
16345
|
* @param {*} [options] Override http request option.
|
|
15063
16346
|
* @throws {RequiredError}
|
|
15064
16347
|
*/
|
|
15065
|
-
apiV1DoctorsDoctorIdPut
|
|
16348
|
+
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
15066
16349
|
/**
|
|
15067
16350
|
*
|
|
15068
16351
|
* @summary Get All DoctorSpecialties.
|
|
@@ -15076,7 +16359,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15076
16359
|
* @param {*} [options] Override http request option.
|
|
15077
16360
|
* @throws {RequiredError}
|
|
15078
16361
|
*/
|
|
15079
|
-
apiV1DoctorsDoctorIdSpecialtiesGet
|
|
16362
|
+
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorSpecialtiesModel>;
|
|
15080
16363
|
/**
|
|
15081
16364
|
*
|
|
15082
16365
|
* @summary Link a doctor to a specialty.
|
|
@@ -15085,7 +16368,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15085
16368
|
* @param {*} [options] Override http request option.
|
|
15086
16369
|
* @throws {RequiredError}
|
|
15087
16370
|
*/
|
|
15088
|
-
apiV1DoctorsDoctorIdSpecialtiesPost
|
|
16371
|
+
apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand | undefined, options?: any): AxiosPromise<DoctorSpecialtyModel>;
|
|
15089
16372
|
/**
|
|
15090
16373
|
*
|
|
15091
16374
|
* @summary Remove link between the doctor and the specialty.
|
|
@@ -15094,7 +16377,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15094
16377
|
* @param {*} [options] Override http request option.
|
|
15095
16378
|
* @throws {RequiredError}
|
|
15096
16379
|
*/
|
|
15097
|
-
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdDelete
|
|
16380
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdDelete(doctorId: string, specialtyId: string, options?: any): AxiosPromise<boolean>;
|
|
15098
16381
|
/**
|
|
15099
16382
|
*
|
|
15100
16383
|
* @summary Get DoctorSpecialty
|
|
@@ -15103,7 +16386,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15103
16386
|
* @param {*} [options] Override http request option.
|
|
15104
16387
|
* @throws {RequiredError}
|
|
15105
16388
|
*/
|
|
15106
|
-
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet
|
|
16389
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: any): AxiosPromise<DoctorSpecialtyModel>;
|
|
15107
16390
|
/**
|
|
15108
16391
|
*
|
|
15109
16392
|
* @summary Update DoctorSpecialty.
|
|
@@ -15113,7 +16396,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15113
16396
|
* @param {*} [options] Override http request option.
|
|
15114
16397
|
* @throws {RequiredError}
|
|
15115
16398
|
*/
|
|
15116
|
-
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut
|
|
16399
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand | undefined, options?: any): AxiosPromise<DoctorSpecialtyModel>;
|
|
15117
16400
|
/**
|
|
15118
16401
|
*
|
|
15119
16402
|
* @summary Get all Doctors.
|
|
@@ -15132,7 +16415,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15132
16415
|
* @param {*} [options] Override http request option.
|
|
15133
16416
|
* @throws {RequiredError}
|
|
15134
16417
|
*/
|
|
15135
|
-
apiV1DoctorsGet
|
|
16418
|
+
apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
|
|
15136
16419
|
/**
|
|
15137
16420
|
*
|
|
15138
16421
|
* @summary Create a Doctor.
|
|
@@ -15140,13 +16423,24 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15140
16423
|
* @param {*} [options] Override http request option.
|
|
15141
16424
|
* @throws {RequiredError}
|
|
15142
16425
|
*/
|
|
15143
|
-
apiV1DoctorsPost
|
|
16426
|
+
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
16427
|
+
/**
|
|
16428
|
+
*
|
|
16429
|
+
* @summary Get Doctor by slug.
|
|
16430
|
+
* @param {string} slug
|
|
16431
|
+
* @param {string} [languageCode]
|
|
16432
|
+
* @param {*} [options] Override http request option.
|
|
16433
|
+
* @throws {RequiredError}
|
|
16434
|
+
*/
|
|
16435
|
+
apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
15144
16436
|
};
|
|
15145
16437
|
/**
|
|
15146
|
-
* DoctorsApi -
|
|
16438
|
+
* DoctorsApi - object-oriented interface
|
|
15147
16439
|
* @export
|
|
16440
|
+
* @class DoctorsApi
|
|
16441
|
+
* @extends {BaseAPI}
|
|
15148
16442
|
*/
|
|
15149
|
-
export declare
|
|
16443
|
+
export declare class DoctorsApi extends BaseAPI {
|
|
15150
16444
|
/**
|
|
15151
16445
|
*
|
|
15152
16446
|
* @summary Get all doctor affiliations.
|
|
@@ -15157,8 +16451,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15157
16451
|
* @param {Date} [lastRetrieved]
|
|
15158
16452
|
* @param {*} [options] Override http request option.
|
|
15159
16453
|
* @throws {RequiredError}
|
|
16454
|
+
* @memberof DoctorsApi
|
|
15160
16455
|
*/
|
|
15161
|
-
apiV1DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string
|
|
16456
|
+
apiV1DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel>>;
|
|
15162
16457
|
/**
|
|
15163
16458
|
*
|
|
15164
16459
|
* @summary Delete doctor affiliation.
|
|
@@ -15166,8 +16461,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15166
16461
|
* @param {string} hospitalId
|
|
15167
16462
|
* @param {*} [options] Override http request option.
|
|
15168
16463
|
* @throws {RequiredError}
|
|
16464
|
+
* @memberof DoctorsApi
|
|
15169
16465
|
*/
|
|
15170
|
-
apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId: string, hospitalId: string, options?: AxiosRequestConfig
|
|
16466
|
+
apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
15171
16467
|
/**
|
|
15172
16468
|
*
|
|
15173
16469
|
* @summary Get doctor affiliation.
|
|
@@ -15175,16 +16471,18 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15175
16471
|
* @param {string} hospitalId
|
|
15176
16472
|
* @param {*} [options] Override http request option.
|
|
15177
16473
|
* @throws {RequiredError}
|
|
16474
|
+
* @memberof DoctorsApi
|
|
15178
16475
|
*/
|
|
15179
|
-
apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig
|
|
16476
|
+
apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel>>;
|
|
15180
16477
|
/**
|
|
15181
16478
|
*
|
|
15182
16479
|
* @param {string} doctorId
|
|
15183
16480
|
* @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
|
|
15184
16481
|
* @param {*} [options] Override http request option.
|
|
15185
16482
|
* @throws {RequiredError}
|
|
16483
|
+
* @memberof DoctorsApi
|
|
15186
16484
|
*/
|
|
15187
|
-
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand
|
|
16485
|
+
apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
15188
16486
|
/**
|
|
15189
16487
|
*
|
|
15190
16488
|
* @summary Delete DoctorCertificate.
|
|
@@ -15192,8 +16490,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15192
16490
|
* @param {string} certificateId
|
|
15193
16491
|
* @param {*} [options] Override http request option.
|
|
15194
16492
|
* @throws {RequiredError}
|
|
16493
|
+
* @memberof DoctorsApi
|
|
15195
16494
|
*/
|
|
15196
|
-
apiV1DoctorsDoctorIdCertificatesCertificateIdDelete(doctorId: string, certificateId: string, options?: AxiosRequestConfig
|
|
16495
|
+
apiV1DoctorsDoctorIdCertificatesCertificateIdDelete(doctorId: string, certificateId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
15197
16496
|
/**
|
|
15198
16497
|
*
|
|
15199
16498
|
* @summary Get DoctorCertificate.
|
|
@@ -15201,8 +16500,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15201
16500
|
* @param {string} certificateId
|
|
15202
16501
|
* @param {*} [options] Override http request option.
|
|
15203
16502
|
* @throws {RequiredError}
|
|
16503
|
+
* @memberof DoctorsApi
|
|
15204
16504
|
*/
|
|
15205
|
-
apiV1DoctorsDoctorIdCertificatesCertificateIdGet(doctorId: string, certificateId: string, options?: AxiosRequestConfig
|
|
16505
|
+
apiV1DoctorsDoctorIdCertificatesCertificateIdGet(doctorId: string, certificateId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorCertificateModel>>;
|
|
15206
16506
|
/**
|
|
15207
16507
|
*
|
|
15208
16508
|
* @summary Update DoctorCertificate.
|
|
@@ -15211,8 +16511,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15211
16511
|
* @param {UpdateDoctorCertificateCommand} [updateDoctorCertificateCommand]
|
|
15212
16512
|
* @param {*} [options] Override http request option.
|
|
15213
16513
|
* @throws {RequiredError}
|
|
16514
|
+
* @memberof DoctorsApi
|
|
15214
16515
|
*/
|
|
15215
|
-
apiV1DoctorsDoctorIdCertificatesCertificateIdPut(doctorId: string, certificateId: string, updateDoctorCertificateCommand?: UpdateDoctorCertificateCommand
|
|
16516
|
+
apiV1DoctorsDoctorIdCertificatesCertificateIdPut(doctorId: string, certificateId: string, updateDoctorCertificateCommand?: UpdateDoctorCertificateCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorCertificateModel>>;
|
|
15216
16517
|
/**
|
|
15217
16518
|
*
|
|
15218
16519
|
* @summary Delete DoctorCertificate.
|
|
@@ -15227,8 +16528,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15227
16528
|
* @param {Date} [lastRetrieved]
|
|
15228
16529
|
* @param {*} [options] Override http request option.
|
|
15229
16530
|
* @throws {RequiredError}
|
|
16531
|
+
* @memberof DoctorsApi
|
|
15230
16532
|
*/
|
|
15231
|
-
apiV1DoctorsDoctorIdCertificatesGet(doctorId: string, doctorName?: string
|
|
16533
|
+
apiV1DoctorsDoctorIdCertificatesGet(doctorId: string, doctorName?: string, certificateId?: string, certificate?: string, activeFrom?: Date, activeTo?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorCertificatesModel>>;
|
|
15232
16534
|
/**
|
|
15233
16535
|
*
|
|
15234
16536
|
* @summary Create DoctorCertificate.
|
|
@@ -15236,16 +16538,18 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15236
16538
|
* @param {CreateDoctorCertificateCommand} [createDoctorCertificateCommand]
|
|
15237
16539
|
* @param {*} [options] Override http request option.
|
|
15238
16540
|
* @throws {RequiredError}
|
|
16541
|
+
* @memberof DoctorsApi
|
|
15239
16542
|
*/
|
|
15240
|
-
apiV1DoctorsDoctorIdCertificatesPost(doctorId: string, createDoctorCertificateCommand?: CreateDoctorCertificateCommand
|
|
16543
|
+
apiV1DoctorsDoctorIdCertificatesPost(doctorId: string, createDoctorCertificateCommand?: CreateDoctorCertificateCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorCertificateModel>>;
|
|
15241
16544
|
/**
|
|
15242
16545
|
*
|
|
15243
16546
|
* @summary Delete Doctor.
|
|
15244
16547
|
* @param {string} doctorId
|
|
15245
16548
|
* @param {*} [options] Override http request option.
|
|
15246
16549
|
* @throws {RequiredError}
|
|
16550
|
+
* @memberof DoctorsApi
|
|
15247
16551
|
*/
|
|
15248
|
-
apiV1DoctorsDoctorIdDelete(doctorId: string, options?: AxiosRequestConfig
|
|
16552
|
+
apiV1DoctorsDoctorIdDelete(doctorId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
15249
16553
|
/**
|
|
15250
16554
|
*
|
|
15251
16555
|
* @summary Delete DoctorEducation
|
|
@@ -15253,8 +16557,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15253
16557
|
* @param {string} educationId
|
|
15254
16558
|
* @param {*} [options] Override http request option.
|
|
15255
16559
|
* @throws {RequiredError}
|
|
16560
|
+
* @memberof DoctorsApi
|
|
15256
16561
|
*/
|
|
15257
|
-
apiV1DoctorsDoctorIdEducationsEducationIdDelete(doctorId: string, educationId: string, options?: AxiosRequestConfig
|
|
16562
|
+
apiV1DoctorsDoctorIdEducationsEducationIdDelete(doctorId: string, educationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
15258
16563
|
/**
|
|
15259
16564
|
*
|
|
15260
16565
|
* @summary Get DoctorEducation.
|
|
@@ -15262,8 +16567,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15262
16567
|
* @param {string} educationId
|
|
15263
16568
|
* @param {*} [options] Override http request option.
|
|
15264
16569
|
* @throws {RequiredError}
|
|
16570
|
+
* @memberof DoctorsApi
|
|
15265
16571
|
*/
|
|
15266
|
-
apiV1DoctorsDoctorIdEducationsEducationIdGet(doctorId: string, educationId: string, options?: AxiosRequestConfig
|
|
16572
|
+
apiV1DoctorsDoctorIdEducationsEducationIdGet(doctorId: string, educationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorEducationModel>>;
|
|
15267
16573
|
/**
|
|
15268
16574
|
*
|
|
15269
16575
|
* @summary Update DoctorEducation.
|
|
@@ -15272,8 +16578,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15272
16578
|
* @param {UpdateDoctorEducationCommand} [updateDoctorEducationCommand]
|
|
15273
16579
|
* @param {*} [options] Override http request option.
|
|
15274
16580
|
* @throws {RequiredError}
|
|
16581
|
+
* @memberof DoctorsApi
|
|
15275
16582
|
*/
|
|
15276
|
-
apiV1DoctorsDoctorIdEducationsEducationIdPut(doctorId: string, educationId: string, updateDoctorEducationCommand?: UpdateDoctorEducationCommand
|
|
16583
|
+
apiV1DoctorsDoctorIdEducationsEducationIdPut(doctorId: string, educationId: string, updateDoctorEducationCommand?: UpdateDoctorEducationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorEducationModel>>;
|
|
15277
16584
|
/**
|
|
15278
16585
|
*
|
|
15279
16586
|
* @summary Get all DoctorEducations.
|
|
@@ -15288,8 +16595,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15288
16595
|
* @param {Date} [lastRetrieved]
|
|
15289
16596
|
* @param {*} [options] Override http request option.
|
|
15290
16597
|
* @throws {RequiredError}
|
|
16598
|
+
* @memberof DoctorsApi
|
|
15291
16599
|
*/
|
|
15292
|
-
apiV1DoctorsDoctorIdEducationsGet(doctorId: string, doctorName?: string
|
|
16600
|
+
apiV1DoctorsDoctorIdEducationsGet(doctorId: string, doctorName?: string, educationId?: string, institution?: string, qualification?: string, graduationDate?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorEducationsModel>>;
|
|
15293
16601
|
/**
|
|
15294
16602
|
*
|
|
15295
16603
|
* @summary Create DoctorEducation.
|
|
@@ -15297,16 +16605,18 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15297
16605
|
* @param {CreateDoctorEducationCommand} [createDoctorEducationCommand]
|
|
15298
16606
|
* @param {*} [options] Override http request option.
|
|
15299
16607
|
* @throws {RequiredError}
|
|
16608
|
+
* @memberof DoctorsApi
|
|
15300
16609
|
*/
|
|
15301
|
-
apiV1DoctorsDoctorIdEducationsPost(doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand
|
|
16610
|
+
apiV1DoctorsDoctorIdEducationsPost(doctorId: string, createDoctorEducationCommand?: CreateDoctorEducationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorEducationModel>>;
|
|
15302
16611
|
/**
|
|
15303
16612
|
*
|
|
15304
16613
|
* @summary Get Doctor.
|
|
15305
16614
|
* @param {string} doctorId
|
|
15306
16615
|
* @param {*} [options] Override http request option.
|
|
15307
16616
|
* @throws {RequiredError}
|
|
16617
|
+
* @memberof DoctorsApi
|
|
15308
16618
|
*/
|
|
15309
|
-
apiV1DoctorsDoctorIdGet(doctorId: string, options?: AxiosRequestConfig
|
|
16619
|
+
apiV1DoctorsDoctorIdGet(doctorId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
15310
16620
|
/**
|
|
15311
16621
|
*
|
|
15312
16622
|
* @summary Get all DoctorMedias.
|
|
@@ -15318,8 +16628,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15318
16628
|
* @param {Date} [lastRetrieved]
|
|
15319
16629
|
* @param {*} [options] Override http request option.
|
|
15320
16630
|
* @throws {RequiredError}
|
|
16631
|
+
* @memberof DoctorsApi
|
|
15321
16632
|
*/
|
|
15322
|
-
apiV1DoctorsDoctorIdMediasGet(doctorId: string, id?: string
|
|
16633
|
+
apiV1DoctorsDoctorIdMediasGet(doctorId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
|
|
15323
16634
|
/**
|
|
15324
16635
|
*
|
|
15325
16636
|
* @summary Delete DoctorMedia
|
|
@@ -15327,8 +16638,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15327
16638
|
* @param {string} mediaId
|
|
15328
16639
|
* @param {*} [options] Override http request option.
|
|
15329
16640
|
* @throws {RequiredError}
|
|
16641
|
+
* @memberof DoctorsApi
|
|
15330
16642
|
*/
|
|
15331
|
-
apiV1DoctorsDoctorIdMediasMediaIdDelete(doctorId: string, mediaId: string, options?: AxiosRequestConfig
|
|
16643
|
+
apiV1DoctorsDoctorIdMediasMediaIdDelete(doctorId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
15332
16644
|
/**
|
|
15333
16645
|
*
|
|
15334
16646
|
* @summary Get DoctorMedia.
|
|
@@ -15336,8 +16648,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15336
16648
|
* @param {string} mediaId
|
|
15337
16649
|
* @param {*} [options] Override http request option.
|
|
15338
16650
|
* @throws {RequiredError}
|
|
16651
|
+
* @memberof DoctorsApi
|
|
15339
16652
|
*/
|
|
15340
|
-
apiV1DoctorsDoctorIdMediasMediaIdGet(doctorId: string, mediaId: string, options?: AxiosRequestConfig
|
|
16653
|
+
apiV1DoctorsDoctorIdMediasMediaIdGet(doctorId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
15341
16654
|
/**
|
|
15342
16655
|
*
|
|
15343
16656
|
* @summary Update DoctorMedia.
|
|
@@ -15346,8 +16659,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15346
16659
|
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
15347
16660
|
* @param {*} [options] Override http request option.
|
|
15348
16661
|
* @throws {RequiredError}
|
|
16662
|
+
* @memberof DoctorsApi
|
|
15349
16663
|
*/
|
|
15350
|
-
apiV1DoctorsDoctorIdMediasMediaIdPut(doctorId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand
|
|
16664
|
+
apiV1DoctorsDoctorIdMediasMediaIdPut(doctorId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
15351
16665
|
/**
|
|
15352
16666
|
*
|
|
15353
16667
|
* @summary Create DoctorMedia.
|
|
@@ -15355,8 +16669,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15355
16669
|
* @param {CreateMediaCommand} [createMediaCommand]
|
|
15356
16670
|
* @param {*} [options] Override http request option.
|
|
15357
16671
|
* @throws {RequiredError}
|
|
16672
|
+
* @memberof DoctorsApi
|
|
15358
16673
|
*/
|
|
15359
|
-
apiV1DoctorsDoctorIdMediasPost(doctorId: string, createMediaCommand?: CreateMediaCommand
|
|
16674
|
+
apiV1DoctorsDoctorIdMediasPost(doctorId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
15360
16675
|
/**
|
|
15361
16676
|
*
|
|
15362
16677
|
* @summary Get All DoctorPortfolios
|
|
@@ -15369,8 +16684,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15369
16684
|
* @param {Date} [lastRetrieved]
|
|
15370
16685
|
* @param {*} [options] Override http request option.
|
|
15371
16686
|
* @throws {RequiredError}
|
|
16687
|
+
* @memberof DoctorsApi
|
|
15372
16688
|
*/
|
|
15373
|
-
apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string, doctorName?: string
|
|
16689
|
+
apiV1DoctorsDoctorIdPortfoliosGet(doctorId: string, doctorName?: string, portfolioId?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorPortfoliosModel>>;
|
|
15374
16690
|
/**
|
|
15375
16691
|
*
|
|
15376
16692
|
* @summary Delete DoctorPortfolio.
|
|
@@ -15378,8 +16694,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15378
16694
|
* @param {string} portfolioId
|
|
15379
16695
|
* @param {*} [options] Override http request option.
|
|
15380
16696
|
* @throws {RequiredError}
|
|
16697
|
+
* @memberof DoctorsApi
|
|
15381
16698
|
*/
|
|
15382
|
-
apiV1DoctorsDoctorIdPortfoliosPortfolioIdDelete(doctorId: string, portfolioId: string, options?: AxiosRequestConfig
|
|
16699
|
+
apiV1DoctorsDoctorIdPortfoliosPortfolioIdDelete(doctorId: string, portfolioId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
15383
16700
|
/**
|
|
15384
16701
|
*
|
|
15385
16702
|
* @summary Get DoctorPortfolio.
|
|
@@ -15387,8 +16704,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15387
16704
|
* @param {string} portfolioId
|
|
15388
16705
|
* @param {*} [options] Override http request option.
|
|
15389
16706
|
* @throws {RequiredError}
|
|
16707
|
+
* @memberof DoctorsApi
|
|
15390
16708
|
*/
|
|
15391
|
-
apiV1DoctorsDoctorIdPortfoliosPortfolioIdGet(doctorId: string, portfolioId: string, options?: AxiosRequestConfig
|
|
16709
|
+
apiV1DoctorsDoctorIdPortfoliosPortfolioIdGet(doctorId: string, portfolioId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorPortfolioModel>>;
|
|
15392
16710
|
/**
|
|
15393
16711
|
*
|
|
15394
16712
|
* @summary Update DoctorPortfolio.
|
|
@@ -15397,8 +16715,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15397
16715
|
* @param {UpdateDoctorPortfolioCommand} [updateDoctorPortfolioCommand]
|
|
15398
16716
|
* @param {*} [options] Override http request option.
|
|
15399
16717
|
* @throws {RequiredError}
|
|
16718
|
+
* @memberof DoctorsApi
|
|
15400
16719
|
*/
|
|
15401
|
-
apiV1DoctorsDoctorIdPortfoliosPortfolioIdPut(doctorId: string, portfolioId: string, updateDoctorPortfolioCommand?: UpdateDoctorPortfolioCommand
|
|
16720
|
+
apiV1DoctorsDoctorIdPortfoliosPortfolioIdPut(doctorId: string, portfolioId: string, updateDoctorPortfolioCommand?: UpdateDoctorPortfolioCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorPortfolioModel>>;
|
|
15402
16721
|
/**
|
|
15403
16722
|
*
|
|
15404
16723
|
* @summary Create DoctorPortfolio.
|
|
@@ -15406,8 +16725,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15406
16725
|
* @param {CreateDoctorPortfolioCommand} [createDoctorPortfolioCommand]
|
|
15407
16726
|
* @param {*} [options] Override http request option.
|
|
15408
16727
|
* @throws {RequiredError}
|
|
16728
|
+
* @memberof DoctorsApi
|
|
15409
16729
|
*/
|
|
15410
|
-
apiV1DoctorsDoctorIdPortfoliosPost(doctorId: string, createDoctorPortfolioCommand?: CreateDoctorPortfolioCommand
|
|
16730
|
+
apiV1DoctorsDoctorIdPortfoliosPost(doctorId: string, createDoctorPortfolioCommand?: CreateDoctorPortfolioCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorPortfolioModel>>;
|
|
15411
16731
|
/**
|
|
15412
16732
|
*
|
|
15413
16733
|
* @summary Update Doctor.
|
|
@@ -15415,8 +16735,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15415
16735
|
* @param {UpdateDoctorCommand} [updateDoctorCommand]
|
|
15416
16736
|
* @param {*} [options] Override http request option.
|
|
15417
16737
|
* @throws {RequiredError}
|
|
16738
|
+
* @memberof DoctorsApi
|
|
15418
16739
|
*/
|
|
15419
|
-
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand
|
|
16740
|
+
apiV1DoctorsDoctorIdPut(doctorId: string, updateDoctorCommand?: UpdateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
15420
16741
|
/**
|
|
15421
16742
|
*
|
|
15422
16743
|
* @summary Get All DoctorSpecialties.
|
|
@@ -15429,8 +16750,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15429
16750
|
* @param {Date} [lastRetrieved]
|
|
15430
16751
|
* @param {*} [options] Override http request option.
|
|
15431
16752
|
* @throws {RequiredError}
|
|
16753
|
+
* @memberof DoctorsApi
|
|
15432
16754
|
*/
|
|
15433
|
-
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string
|
|
16755
|
+
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel>>;
|
|
15434
16756
|
/**
|
|
15435
16757
|
*
|
|
15436
16758
|
* @summary Link a doctor to a specialty.
|
|
@@ -15438,8 +16760,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15438
16760
|
* @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
|
|
15439
16761
|
* @param {*} [options] Override http request option.
|
|
15440
16762
|
* @throws {RequiredError}
|
|
16763
|
+
* @memberof DoctorsApi
|
|
15441
16764
|
*/
|
|
15442
|
-
apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand
|
|
16765
|
+
apiV1DoctorsDoctorIdSpecialtiesPost(doctorId: string, createDoctorSpecialtyCommand?: CreateDoctorSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
|
|
15443
16766
|
/**
|
|
15444
16767
|
*
|
|
15445
16768
|
* @summary Remove link between the doctor and the specialty.
|
|
@@ -15447,8 +16770,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15447
16770
|
* @param {string} specialtyId
|
|
15448
16771
|
* @param {*} [options] Override http request option.
|
|
15449
16772
|
* @throws {RequiredError}
|
|
16773
|
+
* @memberof DoctorsApi
|
|
15450
16774
|
*/
|
|
15451
|
-
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdDelete(doctorId: string, specialtyId: string, options?: AxiosRequestConfig
|
|
16775
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdDelete(doctorId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
15452
16776
|
/**
|
|
15453
16777
|
*
|
|
15454
16778
|
* @summary Get DoctorSpecialty
|
|
@@ -15456,8 +16780,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15456
16780
|
* @param {string} specialtyId
|
|
15457
16781
|
* @param {*} [options] Override http request option.
|
|
15458
16782
|
* @throws {RequiredError}
|
|
16783
|
+
* @memberof DoctorsApi
|
|
15459
16784
|
*/
|
|
15460
|
-
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig
|
|
16785
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
|
|
15461
16786
|
/**
|
|
15462
16787
|
*
|
|
15463
16788
|
* @summary Update DoctorSpecialty.
|
|
@@ -15466,8 +16791,9 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15466
16791
|
* @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
|
|
15467
16792
|
* @param {*} [options] Override http request option.
|
|
15468
16793
|
* @throws {RequiredError}
|
|
16794
|
+
* @memberof DoctorsApi
|
|
15469
16795
|
*/
|
|
15470
|
-
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand
|
|
16796
|
+
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPut(doctorId: string, specialtyId: string, updateDoctorSpecialtyCommand?: UpdateDoctorSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
|
|
15471
16797
|
/**
|
|
15472
16798
|
*
|
|
15473
16799
|
* @summary Get all Doctors.
|
|
@@ -15485,558 +16811,588 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
15485
16811
|
* @param {Date} [lastRetrieved]
|
|
15486
16812
|
* @param {*} [options] Override http request option.
|
|
15487
16813
|
* @throws {RequiredError}
|
|
16814
|
+
* @memberof DoctorsApi
|
|
15488
16815
|
*/
|
|
15489
|
-
apiV1DoctorsGet(hospitalId?: string
|
|
15490
|
-
/**
|
|
15491
|
-
*
|
|
15492
|
-
* @summary Create a Doctor.
|
|
15493
|
-
* @param {CreateDoctorCommand} [createDoctorCommand]
|
|
15494
|
-
* @param {*} [options] Override http request option.
|
|
15495
|
-
* @throws {RequiredError}
|
|
15496
|
-
*/
|
|
15497
|
-
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
15498
|
-
};
|
|
15499
|
-
/**
|
|
15500
|
-
* DoctorsApi - factory interface
|
|
15501
|
-
* @export
|
|
15502
|
-
*/
|
|
15503
|
-
export declare const DoctorsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
15504
|
-
/**
|
|
15505
|
-
*
|
|
15506
|
-
* @summary Get all doctor affiliations.
|
|
15507
|
-
* @param {string} doctorId
|
|
15508
|
-
* @param {string} [hospitalName]
|
|
15509
|
-
* @param {number} [page]
|
|
15510
|
-
* @param {number} [limit]
|
|
15511
|
-
* @param {Date} [lastRetrieved]
|
|
15512
|
-
* @param {*} [options] Override http request option.
|
|
15513
|
-
* @throws {RequiredError}
|
|
15514
|
-
*/
|
|
15515
|
-
apiV1DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
|
|
15516
|
-
/**
|
|
15517
|
-
*
|
|
15518
|
-
* @summary Delete doctor affiliation.
|
|
15519
|
-
* @param {string} doctorId
|
|
15520
|
-
* @param {string} hospitalId
|
|
16816
|
+
apiV1DoctorsGet(hospitalId?: string, languageCode?: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
|
|
16817
|
+
/**
|
|
16818
|
+
*
|
|
16819
|
+
* @summary Create a Doctor.
|
|
16820
|
+
* @param {CreateDoctorCommand} [createDoctorCommand]
|
|
15521
16821
|
* @param {*} [options] Override http request option.
|
|
15522
16822
|
* @throws {RequiredError}
|
|
16823
|
+
* @memberof DoctorsApi
|
|
15523
16824
|
*/
|
|
15524
|
-
|
|
16825
|
+
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
15525
16826
|
/**
|
|
15526
16827
|
*
|
|
15527
|
-
* @summary Get
|
|
15528
|
-
* @param {string}
|
|
15529
|
-
* @param {string}
|
|
16828
|
+
* @summary Get Doctor by slug.
|
|
16829
|
+
* @param {string} slug
|
|
16830
|
+
* @param {string} [languageCode]
|
|
15530
16831
|
* @param {*} [options] Override http request option.
|
|
15531
16832
|
* @throws {RequiredError}
|
|
16833
|
+
* @memberof DoctorsApi
|
|
15532
16834
|
*/
|
|
15533
|
-
|
|
16835
|
+
apiV1DoctorsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
16836
|
+
}
|
|
16837
|
+
/**
|
|
16838
|
+
* FaqCategoriesApi - axios parameter creator
|
|
16839
|
+
* @export
|
|
16840
|
+
*/
|
|
16841
|
+
export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
15534
16842
|
/**
|
|
15535
16843
|
*
|
|
15536
|
-
* @
|
|
15537
|
-
* @param {
|
|
16844
|
+
* @summary Get BreadCrumbs.
|
|
16845
|
+
* @param {string} faqId
|
|
16846
|
+
* @param {string} [languageCode]
|
|
15538
16847
|
* @param {*} [options] Override http request option.
|
|
15539
16848
|
* @throws {RequiredError}
|
|
15540
16849
|
*/
|
|
15541
|
-
|
|
16850
|
+
apiV1FaqcategoriesBreadcrumbsFaqIdGet: (faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15542
16851
|
/**
|
|
15543
16852
|
*
|
|
15544
|
-
* @summary Delete
|
|
15545
|
-
* @param {string}
|
|
15546
|
-
* @param {
|
|
16853
|
+
* @summary Delete faqCategory.
|
|
16854
|
+
* @param {string} faqCategoryId
|
|
16855
|
+
* @param {boolean} [forceDelete]
|
|
15547
16856
|
* @param {*} [options] Override http request option.
|
|
15548
16857
|
* @throws {RequiredError}
|
|
15549
16858
|
*/
|
|
15550
|
-
|
|
16859
|
+
apiV1FaqcategoriesFaqCategoryIdDelete: (faqCategoryId: string, forceDelete?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15551
16860
|
/**
|
|
15552
16861
|
*
|
|
15553
|
-
* @summary Get
|
|
15554
|
-
* @param {string}
|
|
15555
|
-
* @param {string}
|
|
16862
|
+
* @summary Get faqCategory.
|
|
16863
|
+
* @param {string} faqCategoryId
|
|
16864
|
+
* @param {string} [languageCode]
|
|
15556
16865
|
* @param {*} [options] Override http request option.
|
|
15557
16866
|
* @throws {RequiredError}
|
|
15558
16867
|
*/
|
|
15559
|
-
|
|
16868
|
+
apiV1FaqcategoriesFaqCategoryIdGet: (faqCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15560
16869
|
/**
|
|
15561
16870
|
*
|
|
15562
|
-
* @summary Update
|
|
15563
|
-
* @param {string}
|
|
15564
|
-
* @param {
|
|
15565
|
-
* @param {UpdateDoctorCertificateCommand} [updateDoctorCertificateCommand]
|
|
16871
|
+
* @summary Update faqCategory.
|
|
16872
|
+
* @param {string} faqCategoryId
|
|
16873
|
+
* @param {UpdateFaqCategoryCommand} [updateFaqCategoryCommand]
|
|
15566
16874
|
* @param {*} [options] Override http request option.
|
|
15567
16875
|
* @throws {RequiredError}
|
|
15568
16876
|
*/
|
|
15569
|
-
|
|
16877
|
+
apiV1FaqcategoriesFaqCategoryIdPut: (faqCategoryId: string, updateFaqCategoryCommand?: UpdateFaqCategoryCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15570
16878
|
/**
|
|
15571
16879
|
*
|
|
15572
|
-
* @summary
|
|
15573
|
-
* @param {string}
|
|
15574
|
-
* @param {string} [
|
|
15575
|
-
* @param {string} [
|
|
15576
|
-
* @param {string} [
|
|
15577
|
-
* @param {
|
|
15578
|
-
* @param {Date} [activeTo]
|
|
16880
|
+
* @summary Get all FaqCategories.
|
|
16881
|
+
* @param {string} [id]
|
|
16882
|
+
* @param {string} [parentId]
|
|
16883
|
+
* @param {string} [name]
|
|
16884
|
+
* @param {string} [description]
|
|
16885
|
+
* @param {string} [languageCode]
|
|
15579
16886
|
* @param {number} [page]
|
|
15580
16887
|
* @param {number} [limit]
|
|
15581
16888
|
* @param {Date} [lastRetrieved]
|
|
15582
16889
|
* @param {*} [options] Override http request option.
|
|
15583
16890
|
* @throws {RequiredError}
|
|
15584
16891
|
*/
|
|
15585
|
-
|
|
16892
|
+
apiV1FaqcategoriesGet: (id?: string | undefined, parentId?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15586
16893
|
/**
|
|
15587
16894
|
*
|
|
15588
|
-
* @summary Create
|
|
15589
|
-
* @param {
|
|
15590
|
-
* @param {CreateDoctorCertificateCommand} [createDoctorCertificateCommand]
|
|
16895
|
+
* @summary Create a faqCategory.
|
|
16896
|
+
* @param {CreateFaqCategoryCommand} [createFaqCategoryCommand]
|
|
15591
16897
|
* @param {*} [options] Override http request option.
|
|
15592
16898
|
* @throws {RequiredError}
|
|
15593
16899
|
*/
|
|
15594
|
-
|
|
16900
|
+
apiV1FaqcategoriesPost: (createFaqCategoryCommand?: CreateFaqCategoryCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15595
16901
|
/**
|
|
15596
16902
|
*
|
|
15597
|
-
* @summary
|
|
15598
|
-
* @param {string}
|
|
16903
|
+
* @summary Get faqCategory by slug.
|
|
16904
|
+
* @param {string} slug
|
|
16905
|
+
* @param {string} [languageCode]
|
|
15599
16906
|
* @param {*} [options] Override http request option.
|
|
15600
16907
|
* @throws {RequiredError}
|
|
15601
16908
|
*/
|
|
15602
|
-
|
|
16909
|
+
apiV1FaqcategoriesSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16910
|
+
};
|
|
16911
|
+
/**
|
|
16912
|
+
* FaqCategoriesApi - functional programming interface
|
|
16913
|
+
* @export
|
|
16914
|
+
*/
|
|
16915
|
+
export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefined) => {
|
|
15603
16916
|
/**
|
|
15604
16917
|
*
|
|
15605
|
-
* @summary
|
|
15606
|
-
* @param {string}
|
|
15607
|
-
* @param {string}
|
|
16918
|
+
* @summary Get BreadCrumbs.
|
|
16919
|
+
* @param {string} faqId
|
|
16920
|
+
* @param {string} [languageCode]
|
|
15608
16921
|
* @param {*} [options] Override http request option.
|
|
15609
16922
|
* @throws {RequiredError}
|
|
15610
16923
|
*/
|
|
15611
|
-
|
|
16924
|
+
apiV1FaqcategoriesBreadcrumbsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<FaqCategoryBreadCrumbModel>>>;
|
|
15612
16925
|
/**
|
|
15613
16926
|
*
|
|
15614
|
-
* @summary
|
|
15615
|
-
* @param {string}
|
|
15616
|
-
* @param {
|
|
16927
|
+
* @summary Delete faqCategory.
|
|
16928
|
+
* @param {string} faqCategoryId
|
|
16929
|
+
* @param {boolean} [forceDelete]
|
|
15617
16930
|
* @param {*} [options] Override http request option.
|
|
15618
16931
|
* @throws {RequiredError}
|
|
15619
16932
|
*/
|
|
15620
|
-
|
|
16933
|
+
apiV1FaqcategoriesFaqCategoryIdDelete(faqCategoryId: string, forceDelete?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
15621
16934
|
/**
|
|
15622
16935
|
*
|
|
15623
|
-
* @summary
|
|
15624
|
-
* @param {string}
|
|
15625
|
-
* @param {string}
|
|
15626
|
-
* @param {UpdateDoctorEducationCommand} [updateDoctorEducationCommand]
|
|
16936
|
+
* @summary Get faqCategory.
|
|
16937
|
+
* @param {string} faqCategoryId
|
|
16938
|
+
* @param {string} [languageCode]
|
|
15627
16939
|
* @param {*} [options] Override http request option.
|
|
15628
16940
|
* @throws {RequiredError}
|
|
15629
16941
|
*/
|
|
15630
|
-
|
|
16942
|
+
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoryModel>>;
|
|
15631
16943
|
/**
|
|
15632
16944
|
*
|
|
15633
|
-
* @summary
|
|
15634
|
-
* @param {string}
|
|
15635
|
-
* @param {
|
|
15636
|
-
* @param {string} [educationId]
|
|
15637
|
-
* @param {string} [institution]
|
|
15638
|
-
* @param {string} [qualification]
|
|
15639
|
-
* @param {Date} [graduationDate]
|
|
15640
|
-
* @param {number} [page]
|
|
15641
|
-
* @param {number} [limit]
|
|
15642
|
-
* @param {Date} [lastRetrieved]
|
|
16945
|
+
* @summary Update faqCategory.
|
|
16946
|
+
* @param {string} faqCategoryId
|
|
16947
|
+
* @param {UpdateFaqCategoryCommand} [updateFaqCategoryCommand]
|
|
15643
16948
|
* @param {*} [options] Override http request option.
|
|
15644
16949
|
* @throws {RequiredError}
|
|
15645
16950
|
*/
|
|
15646
|
-
|
|
16951
|
+
apiV1FaqcategoriesFaqCategoryIdPut(faqCategoryId: string, updateFaqCategoryCommand?: UpdateFaqCategoryCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoryModel>>;
|
|
15647
16952
|
/**
|
|
15648
16953
|
*
|
|
15649
|
-
* @summary
|
|
15650
|
-
* @param {string}
|
|
15651
|
-
* @param {
|
|
16954
|
+
* @summary Get all FaqCategories.
|
|
16955
|
+
* @param {string} [id]
|
|
16956
|
+
* @param {string} [parentId]
|
|
16957
|
+
* @param {string} [name]
|
|
16958
|
+
* @param {string} [description]
|
|
16959
|
+
* @param {string} [languageCode]
|
|
16960
|
+
* @param {number} [page]
|
|
16961
|
+
* @param {number} [limit]
|
|
16962
|
+
* @param {Date} [lastRetrieved]
|
|
15652
16963
|
* @param {*} [options] Override http request option.
|
|
15653
16964
|
* @throws {RequiredError}
|
|
15654
16965
|
*/
|
|
15655
|
-
|
|
16966
|
+
apiV1FaqcategoriesGet(id?: string | undefined, parentId?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoriesModel>>;
|
|
15656
16967
|
/**
|
|
15657
16968
|
*
|
|
15658
|
-
* @summary
|
|
15659
|
-
* @param {
|
|
16969
|
+
* @summary Create a faqCategory.
|
|
16970
|
+
* @param {CreateFaqCategoryCommand} [createFaqCategoryCommand]
|
|
15660
16971
|
* @param {*} [options] Override http request option.
|
|
15661
16972
|
* @throws {RequiredError}
|
|
15662
16973
|
*/
|
|
15663
|
-
|
|
16974
|
+
apiV1FaqcategoriesPost(createFaqCategoryCommand?: CreateFaqCategoryCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoryModel>>;
|
|
15664
16975
|
/**
|
|
15665
16976
|
*
|
|
15666
|
-
* @summary Get
|
|
15667
|
-
* @param {string}
|
|
15668
|
-
* @param {string} [
|
|
15669
|
-
* @param {MediaType} [mediaType]
|
|
15670
|
-
* @param {number} [page]
|
|
15671
|
-
* @param {number} [limit]
|
|
15672
|
-
* @param {Date} [lastRetrieved]
|
|
16977
|
+
* @summary Get faqCategory by slug.
|
|
16978
|
+
* @param {string} slug
|
|
16979
|
+
* @param {string} [languageCode]
|
|
15673
16980
|
* @param {*} [options] Override http request option.
|
|
15674
16981
|
* @throws {RequiredError}
|
|
15675
16982
|
*/
|
|
15676
|
-
|
|
16983
|
+
apiV1FaqcategoriesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoryModel>>;
|
|
16984
|
+
};
|
|
16985
|
+
/**
|
|
16986
|
+
* FaqCategoriesApi - factory interface
|
|
16987
|
+
* @export
|
|
16988
|
+
*/
|
|
16989
|
+
export declare const FaqCategoriesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
15677
16990
|
/**
|
|
15678
16991
|
*
|
|
15679
|
-
* @summary
|
|
15680
|
-
* @param {string}
|
|
15681
|
-
* @param {string}
|
|
16992
|
+
* @summary Get BreadCrumbs.
|
|
16993
|
+
* @param {string} faqId
|
|
16994
|
+
* @param {string} [languageCode]
|
|
15682
16995
|
* @param {*} [options] Override http request option.
|
|
15683
16996
|
* @throws {RequiredError}
|
|
15684
16997
|
*/
|
|
15685
|
-
|
|
16998
|
+
apiV1FaqcategoriesBreadcrumbsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: any): AxiosPromise<Array<FaqCategoryBreadCrumbModel>>;
|
|
15686
16999
|
/**
|
|
15687
17000
|
*
|
|
15688
|
-
* @summary
|
|
15689
|
-
* @param {string}
|
|
15690
|
-
* @param {
|
|
17001
|
+
* @summary Delete faqCategory.
|
|
17002
|
+
* @param {string} faqCategoryId
|
|
17003
|
+
* @param {boolean} [forceDelete]
|
|
15691
17004
|
* @param {*} [options] Override http request option.
|
|
15692
17005
|
* @throws {RequiredError}
|
|
15693
17006
|
*/
|
|
15694
|
-
|
|
17007
|
+
apiV1FaqcategoriesFaqCategoryIdDelete(faqCategoryId: string, forceDelete?: boolean | undefined, options?: any): AxiosPromise<boolean>;
|
|
15695
17008
|
/**
|
|
15696
17009
|
*
|
|
15697
|
-
* @summary
|
|
15698
|
-
* @param {string}
|
|
15699
|
-
* @param {string}
|
|
15700
|
-
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
17010
|
+
* @summary Get faqCategory.
|
|
17011
|
+
* @param {string} faqCategoryId
|
|
17012
|
+
* @param {string} [languageCode]
|
|
15701
17013
|
* @param {*} [options] Override http request option.
|
|
15702
17014
|
* @throws {RequiredError}
|
|
15703
17015
|
*/
|
|
15704
|
-
|
|
17016
|
+
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string | undefined, options?: any): AxiosPromise<FaqCategoryModel>;
|
|
15705
17017
|
/**
|
|
15706
17018
|
*
|
|
15707
|
-
* @summary
|
|
15708
|
-
* @param {string}
|
|
15709
|
-
* @param {
|
|
17019
|
+
* @summary Update faqCategory.
|
|
17020
|
+
* @param {string} faqCategoryId
|
|
17021
|
+
* @param {UpdateFaqCategoryCommand} [updateFaqCategoryCommand]
|
|
15710
17022
|
* @param {*} [options] Override http request option.
|
|
15711
17023
|
* @throws {RequiredError}
|
|
15712
17024
|
*/
|
|
15713
|
-
|
|
17025
|
+
apiV1FaqcategoriesFaqCategoryIdPut(faqCategoryId: string, updateFaqCategoryCommand?: UpdateFaqCategoryCommand | undefined, options?: any): AxiosPromise<FaqCategoryModel>;
|
|
15714
17026
|
/**
|
|
15715
17027
|
*
|
|
15716
|
-
* @summary Get
|
|
15717
|
-
* @param {string}
|
|
15718
|
-
* @param {string} [
|
|
15719
|
-
* @param {string} [portfolioId]
|
|
17028
|
+
* @summary Get all FaqCategories.
|
|
17029
|
+
* @param {string} [id]
|
|
17030
|
+
* @param {string} [parentId]
|
|
15720
17031
|
* @param {string} [name]
|
|
17032
|
+
* @param {string} [description]
|
|
17033
|
+
* @param {string} [languageCode]
|
|
15721
17034
|
* @param {number} [page]
|
|
15722
17035
|
* @param {number} [limit]
|
|
15723
17036
|
* @param {Date} [lastRetrieved]
|
|
15724
17037
|
* @param {*} [options] Override http request option.
|
|
15725
17038
|
* @throws {RequiredError}
|
|
15726
17039
|
*/
|
|
15727
|
-
|
|
17040
|
+
apiV1FaqcategoriesGet(id?: string | undefined, parentId?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqCategoriesModel>;
|
|
15728
17041
|
/**
|
|
15729
17042
|
*
|
|
15730
|
-
* @summary
|
|
15731
|
-
* @param {
|
|
15732
|
-
* @param {string} portfolioId
|
|
17043
|
+
* @summary Create a faqCategory.
|
|
17044
|
+
* @param {CreateFaqCategoryCommand} [createFaqCategoryCommand]
|
|
15733
17045
|
* @param {*} [options] Override http request option.
|
|
15734
17046
|
* @throws {RequiredError}
|
|
15735
17047
|
*/
|
|
15736
|
-
|
|
17048
|
+
apiV1FaqcategoriesPost(createFaqCategoryCommand?: CreateFaqCategoryCommand | undefined, options?: any): AxiosPromise<FaqCategoryModel>;
|
|
15737
17049
|
/**
|
|
15738
17050
|
*
|
|
15739
|
-
* @summary Get
|
|
15740
|
-
* @param {string}
|
|
15741
|
-
* @param {string}
|
|
17051
|
+
* @summary Get faqCategory by slug.
|
|
17052
|
+
* @param {string} slug
|
|
17053
|
+
* @param {string} [languageCode]
|
|
15742
17054
|
* @param {*} [options] Override http request option.
|
|
15743
17055
|
* @throws {RequiredError}
|
|
15744
17056
|
*/
|
|
15745
|
-
|
|
17057
|
+
apiV1FaqcategoriesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<FaqCategoryModel>;
|
|
17058
|
+
};
|
|
17059
|
+
/**
|
|
17060
|
+
* FaqCategoriesApi - object-oriented interface
|
|
17061
|
+
* @export
|
|
17062
|
+
* @class FaqCategoriesApi
|
|
17063
|
+
* @extends {BaseAPI}
|
|
17064
|
+
*/
|
|
17065
|
+
export declare class FaqCategoriesApi extends BaseAPI {
|
|
15746
17066
|
/**
|
|
15747
17067
|
*
|
|
15748
|
-
* @summary
|
|
15749
|
-
* @param {string}
|
|
15750
|
-
* @param {string}
|
|
15751
|
-
* @param {UpdateDoctorPortfolioCommand} [updateDoctorPortfolioCommand]
|
|
17068
|
+
* @summary Get BreadCrumbs.
|
|
17069
|
+
* @param {string} faqId
|
|
17070
|
+
* @param {string} [languageCode]
|
|
15752
17071
|
* @param {*} [options] Override http request option.
|
|
15753
17072
|
* @throws {RequiredError}
|
|
17073
|
+
* @memberof FaqCategoriesApi
|
|
15754
17074
|
*/
|
|
15755
|
-
|
|
17075
|
+
apiV1FaqcategoriesBreadcrumbsFaqIdGet(faqId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryBreadCrumbModel[]>>;
|
|
15756
17076
|
/**
|
|
15757
17077
|
*
|
|
15758
|
-
* @summary
|
|
15759
|
-
* @param {string}
|
|
15760
|
-
* @param {
|
|
17078
|
+
* @summary Delete faqCategory.
|
|
17079
|
+
* @param {string} faqCategoryId
|
|
17080
|
+
* @param {boolean} [forceDelete]
|
|
15761
17081
|
* @param {*} [options] Override http request option.
|
|
15762
17082
|
* @throws {RequiredError}
|
|
17083
|
+
* @memberof FaqCategoriesApi
|
|
15763
17084
|
*/
|
|
15764
|
-
|
|
17085
|
+
apiV1FaqcategoriesFaqCategoryIdDelete(faqCategoryId: string, forceDelete?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
15765
17086
|
/**
|
|
15766
17087
|
*
|
|
15767
|
-
* @summary
|
|
15768
|
-
* @param {string}
|
|
15769
|
-
* @param {
|
|
17088
|
+
* @summary Get faqCategory.
|
|
17089
|
+
* @param {string} faqCategoryId
|
|
17090
|
+
* @param {string} [languageCode]
|
|
15770
17091
|
* @param {*} [options] Override http request option.
|
|
15771
17092
|
* @throws {RequiredError}
|
|
17093
|
+
* @memberof FaqCategoriesApi
|
|
15772
17094
|
*/
|
|
15773
|
-
|
|
17095
|
+
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel>>;
|
|
15774
17096
|
/**
|
|
15775
17097
|
*
|
|
15776
|
-
* @summary
|
|
15777
|
-
* @param {string}
|
|
15778
|
-
* @param {
|
|
15779
|
-
* @param {
|
|
15780
|
-
* @
|
|
17098
|
+
* @summary Update faqCategory.
|
|
17099
|
+
* @param {string} faqCategoryId
|
|
17100
|
+
* @param {UpdateFaqCategoryCommand} [updateFaqCategoryCommand]
|
|
17101
|
+
* @param {*} [options] Override http request option.
|
|
17102
|
+
* @throws {RequiredError}
|
|
17103
|
+
* @memberof FaqCategoriesApi
|
|
17104
|
+
*/
|
|
17105
|
+
apiV1FaqcategoriesFaqCategoryIdPut(faqCategoryId: string, updateFaqCategoryCommand?: UpdateFaqCategoryCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel>>;
|
|
17106
|
+
/**
|
|
17107
|
+
*
|
|
17108
|
+
* @summary Get all FaqCategories.
|
|
17109
|
+
* @param {string} [id]
|
|
17110
|
+
* @param {string} [parentId]
|
|
17111
|
+
* @param {string} [name]
|
|
17112
|
+
* @param {string} [description]
|
|
17113
|
+
* @param {string} [languageCode]
|
|
15781
17114
|
* @param {number} [page]
|
|
15782
17115
|
* @param {number} [limit]
|
|
15783
17116
|
* @param {Date} [lastRetrieved]
|
|
15784
17117
|
* @param {*} [options] Override http request option.
|
|
15785
17118
|
* @throws {RequiredError}
|
|
17119
|
+
* @memberof FaqCategoriesApi
|
|
15786
17120
|
*/
|
|
15787
|
-
|
|
17121
|
+
apiV1FaqcategoriesGet(id?: string, parentId?: string, name?: string, description?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoriesModel>>;
|
|
15788
17122
|
/**
|
|
15789
17123
|
*
|
|
15790
|
-
* @summary
|
|
15791
|
-
* @param {
|
|
15792
|
-
* @param {CreateDoctorSpecialtyCommand} [createDoctorSpecialtyCommand]
|
|
17124
|
+
* @summary Create a faqCategory.
|
|
17125
|
+
* @param {CreateFaqCategoryCommand} [createFaqCategoryCommand]
|
|
15793
17126
|
* @param {*} [options] Override http request option.
|
|
15794
17127
|
* @throws {RequiredError}
|
|
17128
|
+
* @memberof FaqCategoriesApi
|
|
15795
17129
|
*/
|
|
15796
|
-
|
|
17130
|
+
apiV1FaqcategoriesPost(createFaqCategoryCommand?: CreateFaqCategoryCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel>>;
|
|
15797
17131
|
/**
|
|
15798
17132
|
*
|
|
15799
|
-
* @summary
|
|
15800
|
-
* @param {string}
|
|
15801
|
-
* @param {string}
|
|
17133
|
+
* @summary Get faqCategory by slug.
|
|
17134
|
+
* @param {string} slug
|
|
17135
|
+
* @param {string} [languageCode]
|
|
15802
17136
|
* @param {*} [options] Override http request option.
|
|
15803
17137
|
* @throws {RequiredError}
|
|
17138
|
+
* @memberof FaqCategoriesApi
|
|
15804
17139
|
*/
|
|
15805
|
-
|
|
17140
|
+
apiV1FaqcategoriesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel>>;
|
|
17141
|
+
}
|
|
17142
|
+
/**
|
|
17143
|
+
* FaqsApi - axios parameter creator
|
|
17144
|
+
* @export
|
|
17145
|
+
*/
|
|
17146
|
+
export declare const FaqsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
15806
17147
|
/**
|
|
15807
17148
|
*
|
|
15808
|
-
* @summary
|
|
15809
|
-
* @param {string}
|
|
15810
|
-
* @param {string} specialtyId
|
|
17149
|
+
* @summary Delete faq.
|
|
17150
|
+
* @param {string} faqId
|
|
15811
17151
|
* @param {*} [options] Override http request option.
|
|
15812
17152
|
* @throws {RequiredError}
|
|
15813
17153
|
*/
|
|
15814
|
-
|
|
17154
|
+
apiV1FaqsFaqIdDelete: (faqId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15815
17155
|
/**
|
|
15816
17156
|
*
|
|
15817
|
-
* @summary
|
|
15818
|
-
* @param {string}
|
|
15819
|
-
* @param {string}
|
|
15820
|
-
* @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
|
|
17157
|
+
* @summary Get faq.
|
|
17158
|
+
* @param {string} faqId
|
|
17159
|
+
* @param {string} [languageCode]
|
|
15821
17160
|
* @param {*} [options] Override http request option.
|
|
15822
17161
|
* @throws {RequiredError}
|
|
15823
17162
|
*/
|
|
15824
|
-
|
|
17163
|
+
apiV1FaqsFaqIdGet: (faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15825
17164
|
/**
|
|
15826
17165
|
*
|
|
15827
|
-
* @summary Get all
|
|
15828
|
-
* @param {string}
|
|
15829
|
-
* @param {string} [languageCode]
|
|
17166
|
+
* @summary Get all FaqMedias.
|
|
17167
|
+
* @param {string} faqId
|
|
15830
17168
|
* @param {string} [id]
|
|
15831
|
-
* @param {
|
|
15832
|
-
* @param {string} [email]
|
|
15833
|
-
* @param {Gender} [gender]
|
|
15834
|
-
* @param {Date} [dateOfBirth]
|
|
15835
|
-
* @param {Date} [created]
|
|
15836
|
-
* @param {boolean} [showHidden]
|
|
17169
|
+
* @param {MediaType} [mediaType]
|
|
15837
17170
|
* @param {number} [page]
|
|
15838
17171
|
* @param {number} [limit]
|
|
15839
17172
|
* @param {Date} [lastRetrieved]
|
|
15840
17173
|
* @param {*} [options] Override http request option.
|
|
15841
17174
|
* @throws {RequiredError}
|
|
15842
17175
|
*/
|
|
15843
|
-
|
|
17176
|
+
apiV1FaqsFaqIdMediasGet: (faqId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15844
17177
|
/**
|
|
15845
17178
|
*
|
|
15846
|
-
* @summary
|
|
15847
|
-
* @param {
|
|
17179
|
+
* @summary Delete FaqMedia
|
|
17180
|
+
* @param {string} faqId
|
|
17181
|
+
* @param {string} mediaId
|
|
15848
17182
|
* @param {*} [options] Override http request option.
|
|
15849
17183
|
* @throws {RequiredError}
|
|
15850
17184
|
*/
|
|
15851
|
-
|
|
15852
|
-
};
|
|
15853
|
-
/**
|
|
15854
|
-
* DoctorsApi - object-oriented interface
|
|
15855
|
-
* @export
|
|
15856
|
-
* @class DoctorsApi
|
|
15857
|
-
* @extends {BaseAPI}
|
|
15858
|
-
*/
|
|
15859
|
-
export declare class DoctorsApi extends BaseAPI {
|
|
17185
|
+
apiV1FaqsFaqIdMediasMediaIdDelete: (faqId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15860
17186
|
/**
|
|
15861
17187
|
*
|
|
15862
|
-
* @summary Get
|
|
15863
|
-
* @param {string}
|
|
15864
|
-
* @param {string}
|
|
15865
|
-
* @param {number} [page]
|
|
15866
|
-
* @param {number} [limit]
|
|
15867
|
-
* @param {Date} [lastRetrieved]
|
|
17188
|
+
* @summary Get FaqMedia.
|
|
17189
|
+
* @param {string} faqId
|
|
17190
|
+
* @param {string} mediaId
|
|
15868
17191
|
* @param {*} [options] Override http request option.
|
|
15869
17192
|
* @throws {RequiredError}
|
|
15870
|
-
* @memberof DoctorsApi
|
|
15871
17193
|
*/
|
|
15872
|
-
|
|
17194
|
+
apiV1FaqsFaqIdMediasMediaIdGet: (faqId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17195
|
+
/**
|
|
17196
|
+
*
|
|
17197
|
+
* @summary Update FaqMedia.
|
|
17198
|
+
* @param {string} faqId
|
|
17199
|
+
* @param {string} mediaId
|
|
17200
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
17201
|
+
* @param {*} [options] Override http request option.
|
|
17202
|
+
* @throws {RequiredError}
|
|
17203
|
+
*/
|
|
17204
|
+
apiV1FaqsFaqIdMediasMediaIdPut: (faqId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17205
|
+
/**
|
|
17206
|
+
*
|
|
17207
|
+
* @summary Create FaqMedia.
|
|
17208
|
+
* @param {string} faqId
|
|
17209
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
17210
|
+
* @param {*} [options] Override http request option.
|
|
17211
|
+
* @throws {RequiredError}
|
|
17212
|
+
*/
|
|
17213
|
+
apiV1FaqsFaqIdMediasPost: (faqId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15873
17214
|
/**
|
|
15874
17215
|
*
|
|
15875
|
-
* @summary
|
|
15876
|
-
* @param {string}
|
|
15877
|
-
* @param {
|
|
17216
|
+
* @summary Update faq.
|
|
17217
|
+
* @param {string} faqId
|
|
17218
|
+
* @param {UpdateFaqCommand} [updateFaqCommand]
|
|
15878
17219
|
* @param {*} [options] Override http request option.
|
|
15879
17220
|
* @throws {RequiredError}
|
|
15880
|
-
* @memberof DoctorsApi
|
|
15881
17221
|
*/
|
|
15882
|
-
|
|
17222
|
+
apiV1FaqsFaqIdPut: (faqId: string, updateFaqCommand?: UpdateFaqCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15883
17223
|
/**
|
|
15884
17224
|
*
|
|
15885
|
-
* @summary Get
|
|
15886
|
-
* @param {string}
|
|
15887
|
-
* @param {string}
|
|
17225
|
+
* @summary Get all Faqs.
|
|
17226
|
+
* @param {string} [id]
|
|
17227
|
+
* @param {string} [title]
|
|
17228
|
+
* @param {string} [content]
|
|
17229
|
+
* @param {string} [categoryId]
|
|
17230
|
+
* @param {string} [languageCode]
|
|
17231
|
+
* @param {number} [page]
|
|
17232
|
+
* @param {number} [limit]
|
|
17233
|
+
* @param {Date} [lastRetrieved]
|
|
15888
17234
|
* @param {*} [options] Override http request option.
|
|
15889
17235
|
* @throws {RequiredError}
|
|
15890
|
-
* @memberof DoctorsApi
|
|
15891
17236
|
*/
|
|
15892
|
-
|
|
17237
|
+
apiV1FaqsGet: (id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15893
17238
|
/**
|
|
15894
17239
|
*
|
|
15895
|
-
* @
|
|
15896
|
-
* @param {
|
|
17240
|
+
* @summary Create a faq.
|
|
17241
|
+
* @param {CreateFaqCommand} [createFaqCommand]
|
|
15897
17242
|
* @param {*} [options] Override http request option.
|
|
15898
17243
|
* @throws {RequiredError}
|
|
15899
|
-
* @memberof DoctorsApi
|
|
15900
17244
|
*/
|
|
15901
|
-
|
|
17245
|
+
apiV1FaqsPost: (createFaqCommand?: CreateFaqCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15902
17246
|
/**
|
|
15903
17247
|
*
|
|
15904
|
-
* @summary
|
|
15905
|
-
* @param {string}
|
|
15906
|
-
* @param {string}
|
|
17248
|
+
* @summary Get faq by slug.
|
|
17249
|
+
* @param {string} slug
|
|
17250
|
+
* @param {string} [languageCode]
|
|
15907
17251
|
* @param {*} [options] Override http request option.
|
|
15908
17252
|
* @throws {RequiredError}
|
|
15909
|
-
* @memberof DoctorsApi
|
|
15910
17253
|
*/
|
|
15911
|
-
|
|
17254
|
+
apiV1FaqsSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17255
|
+
};
|
|
17256
|
+
/**
|
|
17257
|
+
* FaqsApi - functional programming interface
|
|
17258
|
+
* @export
|
|
17259
|
+
*/
|
|
17260
|
+
export declare const FaqsApiFp: (configuration?: Configuration | undefined) => {
|
|
15912
17261
|
/**
|
|
15913
17262
|
*
|
|
15914
|
-
* @summary
|
|
15915
|
-
* @param {string}
|
|
15916
|
-
* @param {string} certificateId
|
|
17263
|
+
* @summary Delete faq.
|
|
17264
|
+
* @param {string} faqId
|
|
15917
17265
|
* @param {*} [options] Override http request option.
|
|
15918
17266
|
* @throws {RequiredError}
|
|
15919
|
-
* @memberof DoctorsApi
|
|
15920
17267
|
*/
|
|
15921
|
-
|
|
17268
|
+
apiV1FaqsFaqIdDelete(faqId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
15922
17269
|
/**
|
|
15923
17270
|
*
|
|
15924
|
-
* @summary
|
|
15925
|
-
* @param {string}
|
|
15926
|
-
* @param {string}
|
|
15927
|
-
* @param {UpdateDoctorCertificateCommand} [updateDoctorCertificateCommand]
|
|
17271
|
+
* @summary Get faq.
|
|
17272
|
+
* @param {string} faqId
|
|
17273
|
+
* @param {string} [languageCode]
|
|
15928
17274
|
* @param {*} [options] Override http request option.
|
|
15929
17275
|
* @throws {RequiredError}
|
|
15930
|
-
* @memberof DoctorsApi
|
|
15931
17276
|
*/
|
|
15932
|
-
|
|
17277
|
+
apiV1FaqsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqModel>>;
|
|
15933
17278
|
/**
|
|
15934
17279
|
*
|
|
15935
|
-
* @summary
|
|
15936
|
-
* @param {string}
|
|
15937
|
-
* @param {string} [
|
|
15938
|
-
* @param {
|
|
15939
|
-
* @param {string} [certificate]
|
|
15940
|
-
* @param {Date} [activeFrom]
|
|
15941
|
-
* @param {Date} [activeTo]
|
|
17280
|
+
* @summary Get all FaqMedias.
|
|
17281
|
+
* @param {string} faqId
|
|
17282
|
+
* @param {string} [id]
|
|
17283
|
+
* @param {MediaType} [mediaType]
|
|
15942
17284
|
* @param {number} [page]
|
|
15943
17285
|
* @param {number} [limit]
|
|
15944
17286
|
* @param {Date} [lastRetrieved]
|
|
15945
17287
|
* @param {*} [options] Override http request option.
|
|
15946
17288
|
* @throws {RequiredError}
|
|
15947
|
-
* @memberof DoctorsApi
|
|
15948
17289
|
*/
|
|
15949
|
-
|
|
17290
|
+
apiV1FaqsFaqIdMediasGet(faqId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
15950
17291
|
/**
|
|
15951
17292
|
*
|
|
15952
|
-
* @summary
|
|
15953
|
-
* @param {string}
|
|
15954
|
-
* @param {
|
|
17293
|
+
* @summary Delete FaqMedia
|
|
17294
|
+
* @param {string} faqId
|
|
17295
|
+
* @param {string} mediaId
|
|
15955
17296
|
* @param {*} [options] Override http request option.
|
|
15956
17297
|
* @throws {RequiredError}
|
|
15957
|
-
* @memberof DoctorsApi
|
|
15958
17298
|
*/
|
|
15959
|
-
|
|
17299
|
+
apiV1FaqsFaqIdMediasMediaIdDelete(faqId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
15960
17300
|
/**
|
|
15961
17301
|
*
|
|
15962
|
-
* @summary
|
|
15963
|
-
* @param {string}
|
|
17302
|
+
* @summary Get FaqMedia.
|
|
17303
|
+
* @param {string} faqId
|
|
17304
|
+
* @param {string} mediaId
|
|
15964
17305
|
* @param {*} [options] Override http request option.
|
|
15965
17306
|
* @throws {RequiredError}
|
|
15966
|
-
* @memberof DoctorsApi
|
|
15967
17307
|
*/
|
|
15968
|
-
|
|
17308
|
+
apiV1FaqsFaqIdMediasMediaIdGet(faqId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
15969
17309
|
/**
|
|
15970
17310
|
*
|
|
15971
|
-
* @summary
|
|
15972
|
-
* @param {string}
|
|
15973
|
-
* @param {string}
|
|
17311
|
+
* @summary Update FaqMedia.
|
|
17312
|
+
* @param {string} faqId
|
|
17313
|
+
* @param {string} mediaId
|
|
17314
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
15974
17315
|
* @param {*} [options] Override http request option.
|
|
15975
17316
|
* @throws {RequiredError}
|
|
15976
|
-
* @memberof DoctorsApi
|
|
15977
17317
|
*/
|
|
15978
|
-
|
|
17318
|
+
apiV1FaqsFaqIdMediasMediaIdPut(faqId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
15979
17319
|
/**
|
|
15980
17320
|
*
|
|
15981
|
-
* @summary
|
|
15982
|
-
* @param {string}
|
|
15983
|
-
* @param {
|
|
17321
|
+
* @summary Create FaqMedia.
|
|
17322
|
+
* @param {string} faqId
|
|
17323
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
15984
17324
|
* @param {*} [options] Override http request option.
|
|
15985
17325
|
* @throws {RequiredError}
|
|
15986
|
-
* @memberof DoctorsApi
|
|
15987
17326
|
*/
|
|
15988
|
-
|
|
17327
|
+
apiV1FaqsFaqIdMediasPost(faqId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
15989
17328
|
/**
|
|
15990
17329
|
*
|
|
15991
|
-
* @summary Update
|
|
15992
|
-
* @param {string}
|
|
15993
|
-
* @param {
|
|
15994
|
-
* @param {UpdateDoctorEducationCommand} [updateDoctorEducationCommand]
|
|
17330
|
+
* @summary Update faq.
|
|
17331
|
+
* @param {string} faqId
|
|
17332
|
+
* @param {UpdateFaqCommand} [updateFaqCommand]
|
|
15995
17333
|
* @param {*} [options] Override http request option.
|
|
15996
17334
|
* @throws {RequiredError}
|
|
15997
|
-
* @memberof DoctorsApi
|
|
15998
17335
|
*/
|
|
15999
|
-
|
|
17336
|
+
apiV1FaqsFaqIdPut(faqId: string, updateFaqCommand?: UpdateFaqCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqModel>>;
|
|
16000
17337
|
/**
|
|
16001
17338
|
*
|
|
16002
|
-
* @summary Get all
|
|
16003
|
-
* @param {string}
|
|
16004
|
-
* @param {string} [
|
|
16005
|
-
* @param {string} [
|
|
16006
|
-
* @param {string} [
|
|
16007
|
-
* @param {string} [
|
|
16008
|
-
* @param {Date} [graduationDate]
|
|
17339
|
+
* @summary Get all Faqs.
|
|
17340
|
+
* @param {string} [id]
|
|
17341
|
+
* @param {string} [title]
|
|
17342
|
+
* @param {string} [content]
|
|
17343
|
+
* @param {string} [categoryId]
|
|
17344
|
+
* @param {string} [languageCode]
|
|
16009
17345
|
* @param {number} [page]
|
|
16010
17346
|
* @param {number} [limit]
|
|
16011
17347
|
* @param {Date} [lastRetrieved]
|
|
16012
17348
|
* @param {*} [options] Override http request option.
|
|
16013
17349
|
* @throws {RequiredError}
|
|
16014
|
-
* @memberof DoctorsApi
|
|
16015
17350
|
*/
|
|
16016
|
-
|
|
17351
|
+
apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqsModel>>;
|
|
16017
17352
|
/**
|
|
16018
17353
|
*
|
|
16019
|
-
* @summary Create
|
|
16020
|
-
* @param {
|
|
16021
|
-
* @param {CreateDoctorEducationCommand} [createDoctorEducationCommand]
|
|
17354
|
+
* @summary Create a faq.
|
|
17355
|
+
* @param {CreateFaqCommand} [createFaqCommand]
|
|
16022
17356
|
* @param {*} [options] Override http request option.
|
|
16023
17357
|
* @throws {RequiredError}
|
|
16024
|
-
* @memberof DoctorsApi
|
|
16025
17358
|
*/
|
|
16026
|
-
|
|
17359
|
+
apiV1FaqsPost(createFaqCommand?: CreateFaqCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqModel>>;
|
|
16027
17360
|
/**
|
|
16028
17361
|
*
|
|
16029
|
-
* @summary Get
|
|
16030
|
-
* @param {string}
|
|
17362
|
+
* @summary Get faq by slug.
|
|
17363
|
+
* @param {string} slug
|
|
17364
|
+
* @param {string} [languageCode]
|
|
16031
17365
|
* @param {*} [options] Override http request option.
|
|
16032
17366
|
* @throws {RequiredError}
|
|
16033
|
-
* @memberof DoctorsApi
|
|
16034
17367
|
*/
|
|
16035
|
-
|
|
17368
|
+
apiV1FaqsSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqModel>>;
|
|
17369
|
+
};
|
|
17370
|
+
/**
|
|
17371
|
+
* FaqsApi - factory interface
|
|
17372
|
+
* @export
|
|
17373
|
+
*/
|
|
17374
|
+
export declare const FaqsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
16036
17375
|
/**
|
|
16037
17376
|
*
|
|
16038
|
-
* @summary
|
|
16039
|
-
* @param {string}
|
|
17377
|
+
* @summary Delete faq.
|
|
17378
|
+
* @param {string} faqId
|
|
17379
|
+
* @param {*} [options] Override http request option.
|
|
17380
|
+
* @throws {RequiredError}
|
|
17381
|
+
*/
|
|
17382
|
+
apiV1FaqsFaqIdDelete(faqId: string, options?: any): AxiosPromise<boolean>;
|
|
17383
|
+
/**
|
|
17384
|
+
*
|
|
17385
|
+
* @summary Get faq.
|
|
17386
|
+
* @param {string} faqId
|
|
17387
|
+
* @param {string} [languageCode]
|
|
17388
|
+
* @param {*} [options] Override http request option.
|
|
17389
|
+
* @throws {RequiredError}
|
|
17390
|
+
*/
|
|
17391
|
+
apiV1FaqsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: any): AxiosPromise<FaqModel>;
|
|
17392
|
+
/**
|
|
17393
|
+
*
|
|
17394
|
+
* @summary Get all FaqMedias.
|
|
17395
|
+
* @param {string} faqId
|
|
16040
17396
|
* @param {string} [id]
|
|
16041
17397
|
* @param {MediaType} [mediaType]
|
|
16042
17398
|
* @param {number} [page]
|
|
@@ -16044,201 +17400,213 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16044
17400
|
* @param {Date} [lastRetrieved]
|
|
16045
17401
|
* @param {*} [options] Override http request option.
|
|
16046
17402
|
* @throws {RequiredError}
|
|
16047
|
-
* @memberof DoctorsApi
|
|
16048
17403
|
*/
|
|
16049
|
-
|
|
17404
|
+
apiV1FaqsFaqIdMediasGet(faqId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<MediasModel>;
|
|
16050
17405
|
/**
|
|
16051
17406
|
*
|
|
16052
|
-
* @summary Delete
|
|
16053
|
-
* @param {string}
|
|
17407
|
+
* @summary Delete FaqMedia
|
|
17408
|
+
* @param {string} faqId
|
|
16054
17409
|
* @param {string} mediaId
|
|
16055
17410
|
* @param {*} [options] Override http request option.
|
|
16056
17411
|
* @throws {RequiredError}
|
|
16057
|
-
* @memberof DoctorsApi
|
|
16058
17412
|
*/
|
|
16059
|
-
|
|
17413
|
+
apiV1FaqsFaqIdMediasMediaIdDelete(faqId: string, mediaId: string, options?: any): AxiosPromise<boolean>;
|
|
16060
17414
|
/**
|
|
16061
17415
|
*
|
|
16062
|
-
* @summary Get
|
|
16063
|
-
* @param {string}
|
|
17416
|
+
* @summary Get FaqMedia.
|
|
17417
|
+
* @param {string} faqId
|
|
16064
17418
|
* @param {string} mediaId
|
|
16065
17419
|
* @param {*} [options] Override http request option.
|
|
16066
17420
|
* @throws {RequiredError}
|
|
16067
|
-
* @memberof DoctorsApi
|
|
16068
17421
|
*/
|
|
16069
|
-
|
|
17422
|
+
apiV1FaqsFaqIdMediasMediaIdGet(faqId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
16070
17423
|
/**
|
|
16071
17424
|
*
|
|
16072
|
-
* @summary Update
|
|
16073
|
-
* @param {string}
|
|
17425
|
+
* @summary Update FaqMedia.
|
|
17426
|
+
* @param {string} faqId
|
|
16074
17427
|
* @param {string} mediaId
|
|
16075
17428
|
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
16076
17429
|
* @param {*} [options] Override http request option.
|
|
16077
17430
|
* @throws {RequiredError}
|
|
16078
|
-
* @memberof DoctorsApi
|
|
16079
17431
|
*/
|
|
16080
|
-
|
|
17432
|
+
apiV1FaqsFaqIdMediasMediaIdPut(faqId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
16081
17433
|
/**
|
|
16082
17434
|
*
|
|
16083
|
-
* @summary Create
|
|
16084
|
-
* @param {string}
|
|
17435
|
+
* @summary Create FaqMedia.
|
|
17436
|
+
* @param {string} faqId
|
|
16085
17437
|
* @param {CreateMediaCommand} [createMediaCommand]
|
|
16086
17438
|
* @param {*} [options] Override http request option.
|
|
16087
17439
|
* @throws {RequiredError}
|
|
16088
|
-
* @memberof DoctorsApi
|
|
16089
17440
|
*/
|
|
16090
|
-
|
|
17441
|
+
apiV1FaqsFaqIdMediasPost(faqId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
16091
17442
|
/**
|
|
16092
17443
|
*
|
|
16093
|
-
* @summary
|
|
16094
|
-
* @param {string}
|
|
16095
|
-
* @param {
|
|
16096
|
-
* @param {string} [portfolioId]
|
|
16097
|
-
* @param {string} [name]
|
|
16098
|
-
* @param {number} [page]
|
|
16099
|
-
* @param {number} [limit]
|
|
16100
|
-
* @param {Date} [lastRetrieved]
|
|
17444
|
+
* @summary Update faq.
|
|
17445
|
+
* @param {string} faqId
|
|
17446
|
+
* @param {UpdateFaqCommand} [updateFaqCommand]
|
|
16101
17447
|
* @param {*} [options] Override http request option.
|
|
16102
17448
|
* @throws {RequiredError}
|
|
16103
|
-
* @memberof DoctorsApi
|
|
16104
17449
|
*/
|
|
16105
|
-
|
|
17450
|
+
apiV1FaqsFaqIdPut(faqId: string, updateFaqCommand?: UpdateFaqCommand | undefined, options?: any): AxiosPromise<FaqModel>;
|
|
16106
17451
|
/**
|
|
16107
17452
|
*
|
|
16108
|
-
* @summary
|
|
16109
|
-
* @param {string}
|
|
16110
|
-
* @param {string}
|
|
17453
|
+
* @summary Get all Faqs.
|
|
17454
|
+
* @param {string} [id]
|
|
17455
|
+
* @param {string} [title]
|
|
17456
|
+
* @param {string} [content]
|
|
17457
|
+
* @param {string} [categoryId]
|
|
17458
|
+
* @param {string} [languageCode]
|
|
17459
|
+
* @param {number} [page]
|
|
17460
|
+
* @param {number} [limit]
|
|
17461
|
+
* @param {Date} [lastRetrieved]
|
|
16111
17462
|
* @param {*} [options] Override http request option.
|
|
16112
17463
|
* @throws {RequiredError}
|
|
16113
|
-
* @memberof DoctorsApi
|
|
16114
17464
|
*/
|
|
16115
|
-
|
|
17465
|
+
apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqsModel>;
|
|
16116
17466
|
/**
|
|
16117
17467
|
*
|
|
16118
|
-
* @summary
|
|
16119
|
-
* @param {
|
|
16120
|
-
* @param {string} portfolioId
|
|
17468
|
+
* @summary Create a faq.
|
|
17469
|
+
* @param {CreateFaqCommand} [createFaqCommand]
|
|
16121
17470
|
* @param {*} [options] Override http request option.
|
|
16122
17471
|
* @throws {RequiredError}
|
|
16123
|
-
* @memberof DoctorsApi
|
|
16124
17472
|
*/
|
|
16125
|
-
|
|
17473
|
+
apiV1FaqsPost(createFaqCommand?: CreateFaqCommand | undefined, options?: any): AxiosPromise<FaqModel>;
|
|
16126
17474
|
/**
|
|
16127
17475
|
*
|
|
16128
|
-
* @summary
|
|
16129
|
-
* @param {string}
|
|
16130
|
-
* @param {string}
|
|
16131
|
-
* @param {UpdateDoctorPortfolioCommand} [updateDoctorPortfolioCommand]
|
|
17476
|
+
* @summary Get faq by slug.
|
|
17477
|
+
* @param {string} slug
|
|
17478
|
+
* @param {string} [languageCode]
|
|
16132
17479
|
* @param {*} [options] Override http request option.
|
|
16133
17480
|
* @throws {RequiredError}
|
|
16134
|
-
* @memberof DoctorsApi
|
|
16135
17481
|
*/
|
|
16136
|
-
|
|
17482
|
+
apiV1FaqsSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<FaqModel>;
|
|
17483
|
+
};
|
|
17484
|
+
/**
|
|
17485
|
+
* FaqsApi - object-oriented interface
|
|
17486
|
+
* @export
|
|
17487
|
+
* @class FaqsApi
|
|
17488
|
+
* @extends {BaseAPI}
|
|
17489
|
+
*/
|
|
17490
|
+
export declare class FaqsApi extends BaseAPI {
|
|
16137
17491
|
/**
|
|
16138
17492
|
*
|
|
16139
|
-
* @summary
|
|
16140
|
-
* @param {string}
|
|
16141
|
-
* @param {CreateDoctorPortfolioCommand} [createDoctorPortfolioCommand]
|
|
17493
|
+
* @summary Delete faq.
|
|
17494
|
+
* @param {string} faqId
|
|
16142
17495
|
* @param {*} [options] Override http request option.
|
|
16143
17496
|
* @throws {RequiredError}
|
|
16144
|
-
* @memberof
|
|
17497
|
+
* @memberof FaqsApi
|
|
16145
17498
|
*/
|
|
16146
|
-
|
|
17499
|
+
apiV1FaqsFaqIdDelete(faqId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
16147
17500
|
/**
|
|
16148
17501
|
*
|
|
16149
|
-
* @summary
|
|
16150
|
-
* @param {string}
|
|
16151
|
-
* @param {
|
|
17502
|
+
* @summary Get faq.
|
|
17503
|
+
* @param {string} faqId
|
|
17504
|
+
* @param {string} [languageCode]
|
|
16152
17505
|
* @param {*} [options] Override http request option.
|
|
16153
17506
|
* @throws {RequiredError}
|
|
16154
|
-
* @memberof
|
|
17507
|
+
* @memberof FaqsApi
|
|
16155
17508
|
*/
|
|
16156
|
-
|
|
17509
|
+
apiV1FaqsFaqIdGet(faqId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqModel>>;
|
|
16157
17510
|
/**
|
|
16158
17511
|
*
|
|
16159
|
-
* @summary Get
|
|
16160
|
-
* @param {string}
|
|
16161
|
-
* @param {string} [
|
|
16162
|
-
* @param {
|
|
16163
|
-
* @param {string} [specialtyName]
|
|
17512
|
+
* @summary Get all FaqMedias.
|
|
17513
|
+
* @param {string} faqId
|
|
17514
|
+
* @param {string} [id]
|
|
17515
|
+
* @param {MediaType} [mediaType]
|
|
16164
17516
|
* @param {number} [page]
|
|
16165
17517
|
* @param {number} [limit]
|
|
16166
17518
|
* @param {Date} [lastRetrieved]
|
|
16167
17519
|
* @param {*} [options] Override http request option.
|
|
16168
17520
|
* @throws {RequiredError}
|
|
16169
|
-
* @memberof
|
|
17521
|
+
* @memberof FaqsApi
|
|
16170
17522
|
*/
|
|
16171
|
-
|
|
17523
|
+
apiV1FaqsFaqIdMediasGet(faqId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
|
|
16172
17524
|
/**
|
|
16173
17525
|
*
|
|
16174
|
-
* @summary
|
|
16175
|
-
* @param {string}
|
|
16176
|
-
* @param {
|
|
17526
|
+
* @summary Delete FaqMedia
|
|
17527
|
+
* @param {string} faqId
|
|
17528
|
+
* @param {string} mediaId
|
|
16177
17529
|
* @param {*} [options] Override http request option.
|
|
16178
17530
|
* @throws {RequiredError}
|
|
16179
|
-
* @memberof
|
|
17531
|
+
* @memberof FaqsApi
|
|
16180
17532
|
*/
|
|
16181
|
-
|
|
17533
|
+
apiV1FaqsFaqIdMediasMediaIdDelete(faqId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
16182
17534
|
/**
|
|
16183
17535
|
*
|
|
16184
|
-
* @summary
|
|
16185
|
-
* @param {string}
|
|
16186
|
-
* @param {string}
|
|
17536
|
+
* @summary Get FaqMedia.
|
|
17537
|
+
* @param {string} faqId
|
|
17538
|
+
* @param {string} mediaId
|
|
16187
17539
|
* @param {*} [options] Override http request option.
|
|
16188
17540
|
* @throws {RequiredError}
|
|
16189
|
-
* @memberof
|
|
17541
|
+
* @memberof FaqsApi
|
|
16190
17542
|
*/
|
|
16191
|
-
|
|
17543
|
+
apiV1FaqsFaqIdMediasMediaIdGet(faqId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
16192
17544
|
/**
|
|
16193
17545
|
*
|
|
16194
|
-
* @summary
|
|
16195
|
-
* @param {string}
|
|
16196
|
-
* @param {string}
|
|
17546
|
+
* @summary Update FaqMedia.
|
|
17547
|
+
* @param {string} faqId
|
|
17548
|
+
* @param {string} mediaId
|
|
17549
|
+
* @param {UpdateMediaCommand} [updateMediaCommand]
|
|
16197
17550
|
* @param {*} [options] Override http request option.
|
|
16198
17551
|
* @throws {RequiredError}
|
|
16199
|
-
* @memberof
|
|
17552
|
+
* @memberof FaqsApi
|
|
16200
17553
|
*/
|
|
16201
|
-
|
|
17554
|
+
apiV1FaqsFaqIdMediasMediaIdPut(faqId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
16202
17555
|
/**
|
|
16203
17556
|
*
|
|
16204
|
-
* @summary
|
|
16205
|
-
* @param {string}
|
|
16206
|
-
* @param {
|
|
16207
|
-
* @param {UpdateDoctorSpecialtyCommand} [updateDoctorSpecialtyCommand]
|
|
17557
|
+
* @summary Create FaqMedia.
|
|
17558
|
+
* @param {string} faqId
|
|
17559
|
+
* @param {CreateMediaCommand} [createMediaCommand]
|
|
16208
17560
|
* @param {*} [options] Override http request option.
|
|
16209
17561
|
* @throws {RequiredError}
|
|
16210
|
-
* @memberof
|
|
17562
|
+
* @memberof FaqsApi
|
|
16211
17563
|
*/
|
|
16212
|
-
|
|
17564
|
+
apiV1FaqsFaqIdMediasPost(faqId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
16213
17565
|
/**
|
|
16214
17566
|
*
|
|
16215
|
-
* @summary
|
|
16216
|
-
* @param {string}
|
|
16217
|
-
* @param {
|
|
17567
|
+
* @summary Update faq.
|
|
17568
|
+
* @param {string} faqId
|
|
17569
|
+
* @param {UpdateFaqCommand} [updateFaqCommand]
|
|
17570
|
+
* @param {*} [options] Override http request option.
|
|
17571
|
+
* @throws {RequiredError}
|
|
17572
|
+
* @memberof FaqsApi
|
|
17573
|
+
*/
|
|
17574
|
+
apiV1FaqsFaqIdPut(faqId: string, updateFaqCommand?: UpdateFaqCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqModel>>;
|
|
17575
|
+
/**
|
|
17576
|
+
*
|
|
17577
|
+
* @summary Get all Faqs.
|
|
16218
17578
|
* @param {string} [id]
|
|
16219
|
-
* @param {string} [
|
|
16220
|
-
* @param {string} [
|
|
16221
|
-
* @param {
|
|
16222
|
-
* @param {
|
|
16223
|
-
* @param {Date} [created]
|
|
16224
|
-
* @param {boolean} [showHidden]
|
|
17579
|
+
* @param {string} [title]
|
|
17580
|
+
* @param {string} [content]
|
|
17581
|
+
* @param {string} [categoryId]
|
|
17582
|
+
* @param {string} [languageCode]
|
|
16225
17583
|
* @param {number} [page]
|
|
16226
17584
|
* @param {number} [limit]
|
|
16227
17585
|
* @param {Date} [lastRetrieved]
|
|
16228
17586
|
* @param {*} [options] Override http request option.
|
|
16229
17587
|
* @throws {RequiredError}
|
|
16230
|
-
* @memberof
|
|
17588
|
+
* @memberof FaqsApi
|
|
16231
17589
|
*/
|
|
16232
|
-
|
|
17590
|
+
apiV1FaqsGet(id?: string, title?: string, content?: string, categoryId?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqsModel>>;
|
|
16233
17591
|
/**
|
|
16234
17592
|
*
|
|
16235
|
-
* @summary Create a
|
|
16236
|
-
* @param {
|
|
17593
|
+
* @summary Create a faq.
|
|
17594
|
+
* @param {CreateFaqCommand} [createFaqCommand]
|
|
16237
17595
|
* @param {*} [options] Override http request option.
|
|
16238
17596
|
* @throws {RequiredError}
|
|
16239
|
-
* @memberof
|
|
17597
|
+
* @memberof FaqsApi
|
|
16240
17598
|
*/
|
|
16241
|
-
|
|
17599
|
+
apiV1FaqsPost(createFaqCommand?: CreateFaqCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqModel>>;
|
|
17600
|
+
/**
|
|
17601
|
+
*
|
|
17602
|
+
* @summary Get faq by slug.
|
|
17603
|
+
* @param {string} slug
|
|
17604
|
+
* @param {string} [languageCode]
|
|
17605
|
+
* @param {*} [options] Override http request option.
|
|
17606
|
+
* @throws {RequiredError}
|
|
17607
|
+
* @memberof FaqsApi
|
|
17608
|
+
*/
|
|
17609
|
+
apiV1FaqsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqModel>>;
|
|
16242
17610
|
}
|
|
16243
17611
|
/**
|
|
16244
17612
|
* HospitalsApi - axios parameter creator
|