ch-admin-api-client-typescript 2.7.4 → 2.7.9
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 +1185 -77
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1625 -91
- package/package.json +1 -1
- package/src/api.ts +2030 -167
package/lib/api.d.ts
CHANGED
|
@@ -406,34 +406,34 @@ export interface ArticleItemModel {
|
|
|
406
406
|
'articleContributors'?: Array<ArticleContributorItemModel> | null;
|
|
407
407
|
/**
|
|
408
408
|
*
|
|
409
|
-
* @type {Array<
|
|
409
|
+
* @type {Array<LocalizedUrlModel>}
|
|
410
410
|
* @memberof ArticleItemModel
|
|
411
411
|
*/
|
|
412
|
-
'
|
|
412
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
413
413
|
/**
|
|
414
414
|
*
|
|
415
|
-
* @type {
|
|
415
|
+
* @type {boolean}
|
|
416
416
|
* @memberof ArticleItemModel
|
|
417
417
|
*/
|
|
418
|
-
'
|
|
418
|
+
'confirmed'?: boolean;
|
|
419
419
|
/**
|
|
420
420
|
*
|
|
421
|
-
* @type {
|
|
421
|
+
* @type {Array<MediaModel>}
|
|
422
422
|
* @memberof ArticleItemModel
|
|
423
423
|
*/
|
|
424
|
-
'
|
|
424
|
+
'medias'?: Array<MediaModel> | null;
|
|
425
425
|
/**
|
|
426
426
|
*
|
|
427
|
-
* @type {Array<
|
|
427
|
+
* @type {Array<SourceModel>}
|
|
428
428
|
* @memberof ArticleItemModel
|
|
429
429
|
*/
|
|
430
|
-
'
|
|
430
|
+
'sources'?: Array<SourceModel> | null;
|
|
431
431
|
/**
|
|
432
432
|
*
|
|
433
|
-
* @type {
|
|
433
|
+
* @type {AuditableEntity}
|
|
434
434
|
* @memberof ArticleItemModel
|
|
435
435
|
*/
|
|
436
|
-
'
|
|
436
|
+
'auditableEntity'?: AuditableEntity;
|
|
437
437
|
}
|
|
438
438
|
/**
|
|
439
439
|
*
|
|
@@ -533,34 +533,34 @@ export interface ArticleModel {
|
|
|
533
533
|
'articleContributors'?: Array<ArticleContributorItemModel> | null;
|
|
534
534
|
/**
|
|
535
535
|
*
|
|
536
|
-
* @type {Array<
|
|
536
|
+
* @type {Array<LocalizedUrlModel>}
|
|
537
537
|
* @memberof ArticleModel
|
|
538
538
|
*/
|
|
539
|
-
'
|
|
539
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
540
540
|
/**
|
|
541
541
|
*
|
|
542
|
-
* @type {
|
|
542
|
+
* @type {boolean}
|
|
543
543
|
* @memberof ArticleModel
|
|
544
544
|
*/
|
|
545
|
-
'
|
|
545
|
+
'confirmed'?: boolean;
|
|
546
546
|
/**
|
|
547
547
|
*
|
|
548
|
-
* @type {
|
|
548
|
+
* @type {Array<MediaModel>}
|
|
549
549
|
* @memberof ArticleModel
|
|
550
550
|
*/
|
|
551
|
-
'
|
|
551
|
+
'medias'?: Array<MediaModel> | null;
|
|
552
552
|
/**
|
|
553
553
|
*
|
|
554
|
-
* @type {Array<
|
|
554
|
+
* @type {Array<SourceModel>}
|
|
555
555
|
* @memberof ArticleModel
|
|
556
556
|
*/
|
|
557
|
-
'
|
|
557
|
+
'sources'?: Array<SourceModel> | null;
|
|
558
558
|
/**
|
|
559
559
|
*
|
|
560
|
-
* @type {
|
|
560
|
+
* @type {AuditableEntity}
|
|
561
561
|
* @memberof ArticleModel
|
|
562
562
|
*/
|
|
563
|
-
'
|
|
563
|
+
'auditableEntity'?: AuditableEntity;
|
|
564
564
|
/**
|
|
565
565
|
*
|
|
566
566
|
* @type {string}
|
|
@@ -771,6 +771,43 @@ export interface AwardModel {
|
|
|
771
771
|
*/
|
|
772
772
|
'date'?: Date;
|
|
773
773
|
}
|
|
774
|
+
/**
|
|
775
|
+
*
|
|
776
|
+
* @export
|
|
777
|
+
* @interface AzureSearchModel
|
|
778
|
+
*/
|
|
779
|
+
export interface AzureSearchModel {
|
|
780
|
+
/**
|
|
781
|
+
*
|
|
782
|
+
* @type {number}
|
|
783
|
+
* @memberof AzureSearchModel
|
|
784
|
+
*/
|
|
785
|
+
'hospitals'?: number;
|
|
786
|
+
/**
|
|
787
|
+
*
|
|
788
|
+
* @type {number}
|
|
789
|
+
* @memberof AzureSearchModel
|
|
790
|
+
*/
|
|
791
|
+
'doctors'?: number;
|
|
792
|
+
/**
|
|
793
|
+
*
|
|
794
|
+
* @type {number}
|
|
795
|
+
* @memberof AzureSearchModel
|
|
796
|
+
*/
|
|
797
|
+
'deals'?: number;
|
|
798
|
+
/**
|
|
799
|
+
*
|
|
800
|
+
* @type {number}
|
|
801
|
+
* @memberof AzureSearchModel
|
|
802
|
+
*/
|
|
803
|
+
'specialties'?: number;
|
|
804
|
+
/**
|
|
805
|
+
*
|
|
806
|
+
* @type {number}
|
|
807
|
+
* @memberof AzureSearchModel
|
|
808
|
+
*/
|
|
809
|
+
'specialtyTypes'?: number;
|
|
810
|
+
}
|
|
774
811
|
/**
|
|
775
812
|
*
|
|
776
813
|
* @export
|
|
@@ -3951,12 +3988,36 @@ export interface CreateHospitalSpecialtyCommand {
|
|
|
3951
3988
|
* @memberof CreateHospitalSpecialtyCommand
|
|
3952
3989
|
*/
|
|
3953
3990
|
'specialtyId'?: string;
|
|
3991
|
+
/**
|
|
3992
|
+
*
|
|
3993
|
+
* @type {string}
|
|
3994
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
3995
|
+
*/
|
|
3996
|
+
'title'?: string | null;
|
|
3997
|
+
/**
|
|
3998
|
+
*
|
|
3999
|
+
* @type {string}
|
|
4000
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
4001
|
+
*/
|
|
4002
|
+
'description'?: string | null;
|
|
4003
|
+
/**
|
|
4004
|
+
*
|
|
4005
|
+
* @type {string}
|
|
4006
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
4007
|
+
*/
|
|
4008
|
+
'content'?: string | null;
|
|
3954
4009
|
/**
|
|
3955
4010
|
*
|
|
3956
4011
|
* @type {number}
|
|
3957
4012
|
* @memberof CreateHospitalSpecialtyCommand
|
|
3958
4013
|
*/
|
|
3959
4014
|
'order'?: number;
|
|
4015
|
+
/**
|
|
4016
|
+
*
|
|
4017
|
+
* @type {Array<MediaModel>}
|
|
4018
|
+
* @memberof CreateHospitalSpecialtyCommand
|
|
4019
|
+
*/
|
|
4020
|
+
'medias'?: Array<MediaModel> | null;
|
|
3960
4021
|
}
|
|
3961
4022
|
/**
|
|
3962
4023
|
*
|
|
@@ -4475,6 +4536,30 @@ export interface DealItemModel {
|
|
|
4475
4536
|
* @memberof DealItemModel
|
|
4476
4537
|
*/
|
|
4477
4538
|
'hospitalSlug'?: string | null;
|
|
4539
|
+
/**
|
|
4540
|
+
*
|
|
4541
|
+
* @type {string}
|
|
4542
|
+
* @memberof DealItemModel
|
|
4543
|
+
*/
|
|
4544
|
+
'hospitalLocationCountry'?: string | null;
|
|
4545
|
+
/**
|
|
4546
|
+
*
|
|
4547
|
+
* @type {string}
|
|
4548
|
+
* @memberof DealItemModel
|
|
4549
|
+
*/
|
|
4550
|
+
'hospitalLocationState'?: string | null;
|
|
4551
|
+
/**
|
|
4552
|
+
*
|
|
4553
|
+
* @type {boolean}
|
|
4554
|
+
* @memberof DealItemModel
|
|
4555
|
+
*/
|
|
4556
|
+
'hospitalConsultationEnabled'?: boolean;
|
|
4557
|
+
/**
|
|
4558
|
+
*
|
|
4559
|
+
* @type {number}
|
|
4560
|
+
* @memberof DealItemModel
|
|
4561
|
+
*/
|
|
4562
|
+
'serviceDuration'?: number;
|
|
4478
4563
|
/**
|
|
4479
4564
|
*
|
|
4480
4565
|
* @type {MarketingType}
|
|
@@ -4578,6 +4663,30 @@ export interface DealModel {
|
|
|
4578
4663
|
* @memberof DealModel
|
|
4579
4664
|
*/
|
|
4580
4665
|
'hospitalSlug'?: string | null;
|
|
4666
|
+
/**
|
|
4667
|
+
*
|
|
4668
|
+
* @type {string}
|
|
4669
|
+
* @memberof DealModel
|
|
4670
|
+
*/
|
|
4671
|
+
'hospitalLocationCountry'?: string | null;
|
|
4672
|
+
/**
|
|
4673
|
+
*
|
|
4674
|
+
* @type {string}
|
|
4675
|
+
* @memberof DealModel
|
|
4676
|
+
*/
|
|
4677
|
+
'hospitalLocationState'?: string | null;
|
|
4678
|
+
/**
|
|
4679
|
+
*
|
|
4680
|
+
* @type {boolean}
|
|
4681
|
+
* @memberof DealModel
|
|
4682
|
+
*/
|
|
4683
|
+
'hospitalConsultationEnabled'?: boolean;
|
|
4684
|
+
/**
|
|
4685
|
+
*
|
|
4686
|
+
* @type {number}
|
|
4687
|
+
* @memberof DealModel
|
|
4688
|
+
*/
|
|
4689
|
+
'serviceDuration'?: number;
|
|
4581
4690
|
/**
|
|
4582
4691
|
*
|
|
4583
4692
|
* @type {MarketingType}
|
|
@@ -5401,6 +5510,67 @@ export interface DoctorItemModel {
|
|
|
5401
5510
|
*/
|
|
5402
5511
|
'confirmed'?: boolean;
|
|
5403
5512
|
}
|
|
5513
|
+
/**
|
|
5514
|
+
*
|
|
5515
|
+
* @export
|
|
5516
|
+
* @interface DoctorItemSimpleModel
|
|
5517
|
+
*/
|
|
5518
|
+
export interface DoctorItemSimpleModel {
|
|
5519
|
+
/**
|
|
5520
|
+
*
|
|
5521
|
+
* @type {string}
|
|
5522
|
+
* @memberof DoctorItemSimpleModel
|
|
5523
|
+
*/
|
|
5524
|
+
'id'?: string;
|
|
5525
|
+
/**
|
|
5526
|
+
*
|
|
5527
|
+
* @type {string}
|
|
5528
|
+
* @memberof DoctorItemSimpleModel
|
|
5529
|
+
*/
|
|
5530
|
+
'firstName'?: string | null;
|
|
5531
|
+
/**
|
|
5532
|
+
*
|
|
5533
|
+
* @type {string}
|
|
5534
|
+
* @memberof DoctorItemSimpleModel
|
|
5535
|
+
*/
|
|
5536
|
+
'lastName'?: string | null;
|
|
5537
|
+
/**
|
|
5538
|
+
*
|
|
5539
|
+
* @type {string}
|
|
5540
|
+
* @memberof DoctorItemSimpleModel
|
|
5541
|
+
*/
|
|
5542
|
+
'fullname'?: string | null;
|
|
5543
|
+
/**
|
|
5544
|
+
*
|
|
5545
|
+
* @type {string}
|
|
5546
|
+
* @memberof DoctorItemSimpleModel
|
|
5547
|
+
*/
|
|
5548
|
+
'slug'?: string | null;
|
|
5549
|
+
/**
|
|
5550
|
+
*
|
|
5551
|
+
* @type {string}
|
|
5552
|
+
* @memberof DoctorItemSimpleModel
|
|
5553
|
+
*/
|
|
5554
|
+
'hospitalId'?: string | null;
|
|
5555
|
+
/**
|
|
5556
|
+
*
|
|
5557
|
+
* @type {string}
|
|
5558
|
+
* @memberof DoctorItemSimpleModel
|
|
5559
|
+
*/
|
|
5560
|
+
'hospitalName'?: string | null;
|
|
5561
|
+
/**
|
|
5562
|
+
*
|
|
5563
|
+
* @type {string}
|
|
5564
|
+
* @memberof DoctorItemSimpleModel
|
|
5565
|
+
*/
|
|
5566
|
+
'overview'?: string | null;
|
|
5567
|
+
/**
|
|
5568
|
+
*
|
|
5569
|
+
* @type {boolean}
|
|
5570
|
+
* @memberof DoctorItemSimpleModel
|
|
5571
|
+
*/
|
|
5572
|
+
'confirmed'?: boolean;
|
|
5573
|
+
}
|
|
5404
5574
|
/**
|
|
5405
5575
|
*
|
|
5406
5576
|
* @export
|
|
@@ -5780,6 +5950,25 @@ export interface DoctorsModel {
|
|
|
5780
5950
|
*/
|
|
5781
5951
|
'metaData'?: PagedListMetaData;
|
|
5782
5952
|
}
|
|
5953
|
+
/**
|
|
5954
|
+
*
|
|
5955
|
+
* @export
|
|
5956
|
+
* @interface DoctorsSimpleModel
|
|
5957
|
+
*/
|
|
5958
|
+
export interface DoctorsSimpleModel {
|
|
5959
|
+
/**
|
|
5960
|
+
*
|
|
5961
|
+
* @type {Array<DoctorItemSimpleModel>}
|
|
5962
|
+
* @memberof DoctorsSimpleModel
|
|
5963
|
+
*/
|
|
5964
|
+
'items'?: Array<DoctorItemSimpleModel> | null;
|
|
5965
|
+
/**
|
|
5966
|
+
*
|
|
5967
|
+
* @type {PagedListMetaData}
|
|
5968
|
+
* @memberof DoctorsSimpleModel
|
|
5969
|
+
*/
|
|
5970
|
+
'metaData'?: PagedListMetaData;
|
|
5971
|
+
}
|
|
5783
5972
|
/**
|
|
5784
5973
|
*
|
|
5785
5974
|
* @export
|
|
@@ -7225,6 +7414,12 @@ export interface HospitalSpecialtiesModel {
|
|
|
7225
7414
|
* @interface HospitalSpecialtyItemModel
|
|
7226
7415
|
*/
|
|
7227
7416
|
export interface HospitalSpecialtyItemModel {
|
|
7417
|
+
/**
|
|
7418
|
+
*
|
|
7419
|
+
* @type {string}
|
|
7420
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7421
|
+
*/
|
|
7422
|
+
'id'?: string;
|
|
7228
7423
|
/**
|
|
7229
7424
|
*
|
|
7230
7425
|
* @type {string}
|
|
@@ -7273,12 +7468,54 @@ export interface HospitalSpecialtyItemModel {
|
|
|
7273
7468
|
* @memberof HospitalSpecialtyItemModel
|
|
7274
7469
|
*/
|
|
7275
7470
|
'marketingType'?: MarketingType;
|
|
7471
|
+
/**
|
|
7472
|
+
*
|
|
7473
|
+
* @type {string}
|
|
7474
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7475
|
+
*/
|
|
7476
|
+
'title'?: string | null;
|
|
7477
|
+
/**
|
|
7478
|
+
*
|
|
7479
|
+
* @type {string}
|
|
7480
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7481
|
+
*/
|
|
7482
|
+
'normalizedTitle'?: string | null;
|
|
7483
|
+
/**
|
|
7484
|
+
*
|
|
7485
|
+
* @type {string}
|
|
7486
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7487
|
+
*/
|
|
7488
|
+
'description'?: string | null;
|
|
7489
|
+
/**
|
|
7490
|
+
*
|
|
7491
|
+
* @type {string}
|
|
7492
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7493
|
+
*/
|
|
7494
|
+
'content'?: string | null;
|
|
7276
7495
|
/**
|
|
7277
7496
|
*
|
|
7278
7497
|
* @type {number}
|
|
7279
7498
|
* @memberof HospitalSpecialtyItemModel
|
|
7280
7499
|
*/
|
|
7281
7500
|
'order'?: number;
|
|
7501
|
+
/**
|
|
7502
|
+
*
|
|
7503
|
+
* @type {boolean}
|
|
7504
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7505
|
+
*/
|
|
7506
|
+
'confirmed'?: boolean;
|
|
7507
|
+
/**
|
|
7508
|
+
*
|
|
7509
|
+
* @type {Array<MediaModel>}
|
|
7510
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7511
|
+
*/
|
|
7512
|
+
'medias'?: Array<MediaModel> | null;
|
|
7513
|
+
/**
|
|
7514
|
+
*
|
|
7515
|
+
* @type {AuditableEntity}
|
|
7516
|
+
* @memberof HospitalSpecialtyItemModel
|
|
7517
|
+
*/
|
|
7518
|
+
'auditableEntity'?: AuditableEntity;
|
|
7282
7519
|
}
|
|
7283
7520
|
/**
|
|
7284
7521
|
*
|
|
@@ -7286,6 +7523,12 @@ export interface HospitalSpecialtyItemModel {
|
|
|
7286
7523
|
* @interface HospitalSpecialtyModel
|
|
7287
7524
|
*/
|
|
7288
7525
|
export interface HospitalSpecialtyModel {
|
|
7526
|
+
/**
|
|
7527
|
+
*
|
|
7528
|
+
* @type {string}
|
|
7529
|
+
* @memberof HospitalSpecialtyModel
|
|
7530
|
+
*/
|
|
7531
|
+
'id'?: string;
|
|
7289
7532
|
/**
|
|
7290
7533
|
*
|
|
7291
7534
|
* @type {string}
|
|
@@ -7336,17 +7579,65 @@ export interface HospitalSpecialtyModel {
|
|
|
7336
7579
|
'marketingType'?: MarketingType;
|
|
7337
7580
|
/**
|
|
7338
7581
|
*
|
|
7339
|
-
* @type {
|
|
7582
|
+
* @type {string}
|
|
7340
7583
|
* @memberof HospitalSpecialtyModel
|
|
7341
7584
|
*/
|
|
7342
|
-
'
|
|
7343
|
-
|
|
7344
|
-
|
|
7345
|
-
|
|
7346
|
-
|
|
7347
|
-
|
|
7348
|
-
|
|
7349
|
-
|
|
7585
|
+
'title'?: string | null;
|
|
7586
|
+
/**
|
|
7587
|
+
*
|
|
7588
|
+
* @type {string}
|
|
7589
|
+
* @memberof HospitalSpecialtyModel
|
|
7590
|
+
*/
|
|
7591
|
+
'normalizedTitle'?: string | null;
|
|
7592
|
+
/**
|
|
7593
|
+
*
|
|
7594
|
+
* @type {string}
|
|
7595
|
+
* @memberof HospitalSpecialtyModel
|
|
7596
|
+
*/
|
|
7597
|
+
'description'?: string | null;
|
|
7598
|
+
/**
|
|
7599
|
+
*
|
|
7600
|
+
* @type {string}
|
|
7601
|
+
* @memberof HospitalSpecialtyModel
|
|
7602
|
+
*/
|
|
7603
|
+
'content'?: string | null;
|
|
7604
|
+
/**
|
|
7605
|
+
*
|
|
7606
|
+
* @type {number}
|
|
7607
|
+
* @memberof HospitalSpecialtyModel
|
|
7608
|
+
*/
|
|
7609
|
+
'order'?: number;
|
|
7610
|
+
/**
|
|
7611
|
+
*
|
|
7612
|
+
* @type {boolean}
|
|
7613
|
+
* @memberof HospitalSpecialtyModel
|
|
7614
|
+
*/
|
|
7615
|
+
'confirmed'?: boolean;
|
|
7616
|
+
/**
|
|
7617
|
+
*
|
|
7618
|
+
* @type {Array<MediaModel>}
|
|
7619
|
+
* @memberof HospitalSpecialtyModel
|
|
7620
|
+
*/
|
|
7621
|
+
'medias'?: Array<MediaModel> | null;
|
|
7622
|
+
/**
|
|
7623
|
+
*
|
|
7624
|
+
* @type {AuditableEntity}
|
|
7625
|
+
* @memberof HospitalSpecialtyModel
|
|
7626
|
+
*/
|
|
7627
|
+
'auditableEntity'?: AuditableEntity;
|
|
7628
|
+
/**
|
|
7629
|
+
*
|
|
7630
|
+
* @type {string}
|
|
7631
|
+
* @memberof HospitalSpecialtyModel
|
|
7632
|
+
*/
|
|
7633
|
+
'languageCode'?: string | null;
|
|
7634
|
+
}
|
|
7635
|
+
/**
|
|
7636
|
+
*
|
|
7637
|
+
* @export
|
|
7638
|
+
* @interface HospitalsModel
|
|
7639
|
+
*/
|
|
7640
|
+
export interface HospitalsModel {
|
|
7350
7641
|
/**
|
|
7351
7642
|
*
|
|
7352
7643
|
* @type {Array<HospitalItemModel>}
|
|
@@ -10514,6 +10805,25 @@ export interface UpdateDealServiceCommand {
|
|
|
10514
10805
|
*/
|
|
10515
10806
|
'order'?: number;
|
|
10516
10807
|
}
|
|
10808
|
+
/**
|
|
10809
|
+
*
|
|
10810
|
+
* @export
|
|
10811
|
+
* @interface UpdateDealsSearchIndexCommand
|
|
10812
|
+
*/
|
|
10813
|
+
export interface UpdateDealsSearchIndexCommand {
|
|
10814
|
+
/**
|
|
10815
|
+
*
|
|
10816
|
+
* @type {number}
|
|
10817
|
+
* @memberof UpdateDealsSearchIndexCommand
|
|
10818
|
+
*/
|
|
10819
|
+
'batchSize'?: number | null;
|
|
10820
|
+
/**
|
|
10821
|
+
*
|
|
10822
|
+
* @type {boolean}
|
|
10823
|
+
* @memberof UpdateDealsSearchIndexCommand
|
|
10824
|
+
*/
|
|
10825
|
+
'reCreate'?: boolean | null;
|
|
10826
|
+
}
|
|
10517
10827
|
/**
|
|
10518
10828
|
*
|
|
10519
10829
|
* @export
|
|
@@ -10729,6 +11039,25 @@ export interface UpdateDoctorSpecialtyCommand {
|
|
|
10729
11039
|
*/
|
|
10730
11040
|
'order'?: number;
|
|
10731
11041
|
}
|
|
11042
|
+
/**
|
|
11043
|
+
*
|
|
11044
|
+
* @export
|
|
11045
|
+
* @interface UpdateDoctorsSearchIndexCommand
|
|
11046
|
+
*/
|
|
11047
|
+
export interface UpdateDoctorsSearchIndexCommand {
|
|
11048
|
+
/**
|
|
11049
|
+
*
|
|
11050
|
+
* @type {number}
|
|
11051
|
+
* @memberof UpdateDoctorsSearchIndexCommand
|
|
11052
|
+
*/
|
|
11053
|
+
'batchSize'?: number | null;
|
|
11054
|
+
/**
|
|
11055
|
+
*
|
|
11056
|
+
* @type {boolean}
|
|
11057
|
+
* @memberof UpdateDoctorsSearchIndexCommand
|
|
11058
|
+
*/
|
|
11059
|
+
'reCreate'?: boolean | null;
|
|
11060
|
+
}
|
|
10732
11061
|
/**
|
|
10733
11062
|
*
|
|
10734
11063
|
* @export
|
|
@@ -11058,12 +11387,67 @@ export interface UpdateHospitalServiceCommand {
|
|
|
11058
11387
|
* @interface UpdateHospitalSpecialtyCommand
|
|
11059
11388
|
*/
|
|
11060
11389
|
export interface UpdateHospitalSpecialtyCommand {
|
|
11390
|
+
/**
|
|
11391
|
+
*
|
|
11392
|
+
* @type {string}
|
|
11393
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11394
|
+
*/
|
|
11395
|
+
'title'?: string | null;
|
|
11396
|
+
/**
|
|
11397
|
+
*
|
|
11398
|
+
* @type {string}
|
|
11399
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11400
|
+
*/
|
|
11401
|
+
'description'?: string | null;
|
|
11402
|
+
/**
|
|
11403
|
+
*
|
|
11404
|
+
* @type {string}
|
|
11405
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11406
|
+
*/
|
|
11407
|
+
'content'?: string | null;
|
|
11061
11408
|
/**
|
|
11062
11409
|
*
|
|
11063
11410
|
* @type {number}
|
|
11064
11411
|
* @memberof UpdateHospitalSpecialtyCommand
|
|
11065
11412
|
*/
|
|
11066
11413
|
'order'?: number;
|
|
11414
|
+
/**
|
|
11415
|
+
*
|
|
11416
|
+
* @type {string}
|
|
11417
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11418
|
+
*/
|
|
11419
|
+
'languageCode'?: string | null;
|
|
11420
|
+
/**
|
|
11421
|
+
*
|
|
11422
|
+
* @type {boolean}
|
|
11423
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11424
|
+
*/
|
|
11425
|
+
'confirmed'?: boolean;
|
|
11426
|
+
/**
|
|
11427
|
+
*
|
|
11428
|
+
* @type {Array<MediaModel>}
|
|
11429
|
+
* @memberof UpdateHospitalSpecialtyCommand
|
|
11430
|
+
*/
|
|
11431
|
+
'medias'?: Array<MediaModel> | null;
|
|
11432
|
+
}
|
|
11433
|
+
/**
|
|
11434
|
+
*
|
|
11435
|
+
* @export
|
|
11436
|
+
* @interface UpdateHospitalsSearchIndexCommand
|
|
11437
|
+
*/
|
|
11438
|
+
export interface UpdateHospitalsSearchIndexCommand {
|
|
11439
|
+
/**
|
|
11440
|
+
*
|
|
11441
|
+
* @type {number}
|
|
11442
|
+
* @memberof UpdateHospitalsSearchIndexCommand
|
|
11443
|
+
*/
|
|
11444
|
+
'batchSize'?: number | null;
|
|
11445
|
+
/**
|
|
11446
|
+
*
|
|
11447
|
+
* @type {boolean}
|
|
11448
|
+
* @memberof UpdateHospitalsSearchIndexCommand
|
|
11449
|
+
*/
|
|
11450
|
+
'reCreate'?: boolean | null;
|
|
11067
11451
|
}
|
|
11068
11452
|
/**
|
|
11069
11453
|
*
|
|
@@ -11446,6 +11830,25 @@ export interface UpdateServiceReviewCommand {
|
|
|
11446
11830
|
*/
|
|
11447
11831
|
'rate'?: number | null;
|
|
11448
11832
|
}
|
|
11833
|
+
/**
|
|
11834
|
+
*
|
|
11835
|
+
* @export
|
|
11836
|
+
* @interface UpdateSpecialtiesSearchIndexCommand
|
|
11837
|
+
*/
|
|
11838
|
+
export interface UpdateSpecialtiesSearchIndexCommand {
|
|
11839
|
+
/**
|
|
11840
|
+
*
|
|
11841
|
+
* @type {number}
|
|
11842
|
+
* @memberof UpdateSpecialtiesSearchIndexCommand
|
|
11843
|
+
*/
|
|
11844
|
+
'batchSize'?: number | null;
|
|
11845
|
+
/**
|
|
11846
|
+
*
|
|
11847
|
+
* @type {boolean}
|
|
11848
|
+
* @memberof UpdateSpecialtiesSearchIndexCommand
|
|
11849
|
+
*/
|
|
11850
|
+
'reCreate'?: boolean | null;
|
|
11851
|
+
}
|
|
11449
11852
|
/**
|
|
11450
11853
|
*
|
|
11451
11854
|
* @export
|
|
@@ -11568,6 +11971,25 @@ export interface UpdateSpecialtyTypeCommand {
|
|
|
11568
11971
|
*/
|
|
11569
11972
|
'languageCode'?: string | null;
|
|
11570
11973
|
}
|
|
11974
|
+
/**
|
|
11975
|
+
*
|
|
11976
|
+
* @export
|
|
11977
|
+
* @interface UpdateSpecialtyTypesSearchIndexCommand
|
|
11978
|
+
*/
|
|
11979
|
+
export interface UpdateSpecialtyTypesSearchIndexCommand {
|
|
11980
|
+
/**
|
|
11981
|
+
*
|
|
11982
|
+
* @type {number}
|
|
11983
|
+
* @memberof UpdateSpecialtyTypesSearchIndexCommand
|
|
11984
|
+
*/
|
|
11985
|
+
'batchSize'?: number | null;
|
|
11986
|
+
/**
|
|
11987
|
+
*
|
|
11988
|
+
* @type {boolean}
|
|
11989
|
+
* @memberof UpdateSpecialtyTypesSearchIndexCommand
|
|
11990
|
+
*/
|
|
11991
|
+
'reCreate'?: boolean | null;
|
|
11992
|
+
}
|
|
11571
11993
|
/**
|
|
11572
11994
|
*
|
|
11573
11995
|
* @export
|
|
@@ -15627,6 +16049,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
15627
16049
|
* @param {string} [hospitalName]
|
|
15628
16050
|
* @param {string} [specialtyId]
|
|
15629
16051
|
* @param {string} [specialtyTypeId]
|
|
16052
|
+
* @param {string} [serviceId]
|
|
15630
16053
|
* @param {string} [exceptHospitalId]
|
|
15631
16054
|
* @param {string} [exceptDealId]
|
|
15632
16055
|
* @param {Array<string>} [ids]
|
|
@@ -15639,7 +16062,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
15639
16062
|
* @param {*} [options] Override http request option.
|
|
15640
16063
|
* @throws {RequiredError}
|
|
15641
16064
|
*/
|
|
15642
|
-
apiV1DealsGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16065
|
+
apiV1DealsGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15643
16066
|
/**
|
|
15644
16067
|
*
|
|
15645
16068
|
* @summary Create a deal.
|
|
@@ -15804,6 +16227,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
15804
16227
|
* @param {string} [hospitalName]
|
|
15805
16228
|
* @param {string} [specialtyId]
|
|
15806
16229
|
* @param {string} [specialtyTypeId]
|
|
16230
|
+
* @param {string} [serviceId]
|
|
15807
16231
|
* @param {string} [exceptHospitalId]
|
|
15808
16232
|
* @param {string} [exceptDealId]
|
|
15809
16233
|
* @param {Array<string>} [ids]
|
|
@@ -15816,7 +16240,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
15816
16240
|
* @param {*} [options] Override http request option.
|
|
15817
16241
|
* @throws {RequiredError}
|
|
15818
16242
|
*/
|
|
15819
|
-
apiV1DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
|
|
16243
|
+
apiV1DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
|
|
15820
16244
|
/**
|
|
15821
16245
|
*
|
|
15822
16246
|
* @summary Create a deal.
|
|
@@ -15981,6 +16405,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
15981
16405
|
* @param {string} [hospitalName]
|
|
15982
16406
|
* @param {string} [specialtyId]
|
|
15983
16407
|
* @param {string} [specialtyTypeId]
|
|
16408
|
+
* @param {string} [serviceId]
|
|
15984
16409
|
* @param {string} [exceptHospitalId]
|
|
15985
16410
|
* @param {string} [exceptDealId]
|
|
15986
16411
|
* @param {Array<string>} [ids]
|
|
@@ -15993,7 +16418,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
15993
16418
|
* @param {*} [options] Override http request option.
|
|
15994
16419
|
* @throws {RequiredError}
|
|
15995
16420
|
*/
|
|
15996
|
-
apiV1DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
|
|
16421
|
+
apiV1DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
|
|
15997
16422
|
/**
|
|
15998
16423
|
*
|
|
15999
16424
|
* @summary Create a deal.
|
|
@@ -16173,6 +16598,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
16173
16598
|
* @param {string} [hospitalName]
|
|
16174
16599
|
* @param {string} [specialtyId]
|
|
16175
16600
|
* @param {string} [specialtyTypeId]
|
|
16601
|
+
* @param {string} [serviceId]
|
|
16176
16602
|
* @param {string} [exceptHospitalId]
|
|
16177
16603
|
* @param {string} [exceptDealId]
|
|
16178
16604
|
* @param {Array<string>} [ids]
|
|
@@ -16186,7 +16612,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
16186
16612
|
* @throws {RequiredError}
|
|
16187
16613
|
* @memberof DealsApi
|
|
16188
16614
|
*/
|
|
16189
|
-
apiV1DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
|
|
16615
|
+
apiV1DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, serviceId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
|
|
16190
16616
|
/**
|
|
16191
16617
|
*
|
|
16192
16618
|
* @summary Create a deal.
|
|
@@ -16541,6 +16967,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16541
16967
|
* @param {string} [hospitalId]
|
|
16542
16968
|
* @param {string} [languageCode]
|
|
16543
16969
|
* @param {boolean} [returnDefaultValue]
|
|
16970
|
+
* @param {Array<string>} [ids]
|
|
16544
16971
|
* @param {string} [id]
|
|
16545
16972
|
* @param {string} [fullname]
|
|
16546
16973
|
* @param {string} [email]
|
|
@@ -16554,7 +16981,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16554
16981
|
* @param {*} [options] Override http request option.
|
|
16555
16982
|
* @throws {RequiredError}
|
|
16556
16983
|
*/
|
|
16557
|
-
apiV1DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16984
|
+
apiV1DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: 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>;
|
|
16558
16985
|
/**
|
|
16559
16986
|
*
|
|
16560
16987
|
* @summary Create a Doctor.
|
|
@@ -16563,6 +16990,27 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16563
16990
|
* @throws {RequiredError}
|
|
16564
16991
|
*/
|
|
16565
16992
|
apiV1DoctorsPost: (createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16993
|
+
/**
|
|
16994
|
+
*
|
|
16995
|
+
* @summary Get all Doctors.
|
|
16996
|
+
* @param {string} [hospitalId]
|
|
16997
|
+
* @param {string} [languageCode]
|
|
16998
|
+
* @param {boolean} [returnDefaultValue]
|
|
16999
|
+
* @param {Array<string>} [ids]
|
|
17000
|
+
* @param {string} [id]
|
|
17001
|
+
* @param {string} [fullname]
|
|
17002
|
+
* @param {string} [email]
|
|
17003
|
+
* @param {Gender} [gender]
|
|
17004
|
+
* @param {Date} [dateOfBirth]
|
|
17005
|
+
* @param {Date} [created]
|
|
17006
|
+
* @param {boolean} [showHidden]
|
|
17007
|
+
* @param {number} [page]
|
|
17008
|
+
* @param {number} [limit]
|
|
17009
|
+
* @param {Date} [lastRetrieved]
|
|
17010
|
+
* @param {*} [options] Override http request option.
|
|
17011
|
+
* @throws {RequiredError}
|
|
17012
|
+
*/
|
|
17013
|
+
apiV1DoctorsSimpleGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: 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>;
|
|
16566
17014
|
/**
|
|
16567
17015
|
*
|
|
16568
17016
|
* @param {string} slug
|
|
@@ -16906,6 +17354,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16906
17354
|
* @param {string} [hospitalId]
|
|
16907
17355
|
* @param {string} [languageCode]
|
|
16908
17356
|
* @param {boolean} [returnDefaultValue]
|
|
17357
|
+
* @param {Array<string>} [ids]
|
|
16909
17358
|
* @param {string} [id]
|
|
16910
17359
|
* @param {string} [fullname]
|
|
16911
17360
|
* @param {string} [email]
|
|
@@ -16919,7 +17368,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16919
17368
|
* @param {*} [options] Override http request option.
|
|
16920
17369
|
* @throws {RequiredError}
|
|
16921
17370
|
*/
|
|
16922
|
-
apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
|
|
17371
|
+
apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: 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>>;
|
|
16923
17372
|
/**
|
|
16924
17373
|
*
|
|
16925
17374
|
* @summary Create a Doctor.
|
|
@@ -16928,6 +17377,27 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16928
17377
|
* @throws {RequiredError}
|
|
16929
17378
|
*/
|
|
16930
17379
|
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
17380
|
+
/**
|
|
17381
|
+
*
|
|
17382
|
+
* @summary Get all Doctors.
|
|
17383
|
+
* @param {string} [hospitalId]
|
|
17384
|
+
* @param {string} [languageCode]
|
|
17385
|
+
* @param {boolean} [returnDefaultValue]
|
|
17386
|
+
* @param {Array<string>} [ids]
|
|
17387
|
+
* @param {string} [id]
|
|
17388
|
+
* @param {string} [fullname]
|
|
17389
|
+
* @param {string} [email]
|
|
17390
|
+
* @param {Gender} [gender]
|
|
17391
|
+
* @param {Date} [dateOfBirth]
|
|
17392
|
+
* @param {Date} [created]
|
|
17393
|
+
* @param {boolean} [showHidden]
|
|
17394
|
+
* @param {number} [page]
|
|
17395
|
+
* @param {number} [limit]
|
|
17396
|
+
* @param {Date} [lastRetrieved]
|
|
17397
|
+
* @param {*} [options] Override http request option.
|
|
17398
|
+
* @throws {RequiredError}
|
|
17399
|
+
*/
|
|
17400
|
+
apiV1DoctorsSimpleGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: 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<DoctorsSimpleModel>>;
|
|
16931
17401
|
/**
|
|
16932
17402
|
*
|
|
16933
17403
|
* @param {string} slug
|
|
@@ -17271,6 +17741,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17271
17741
|
* @param {string} [hospitalId]
|
|
17272
17742
|
* @param {string} [languageCode]
|
|
17273
17743
|
* @param {boolean} [returnDefaultValue]
|
|
17744
|
+
* @param {Array<string>} [ids]
|
|
17274
17745
|
* @param {string} [id]
|
|
17275
17746
|
* @param {string} [fullname]
|
|
17276
17747
|
* @param {string} [email]
|
|
@@ -17284,7 +17755,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17284
17755
|
* @param {*} [options] Override http request option.
|
|
17285
17756
|
* @throws {RequiredError}
|
|
17286
17757
|
*/
|
|
17287
|
-
apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
|
|
17758
|
+
apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: 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>;
|
|
17288
17759
|
/**
|
|
17289
17760
|
*
|
|
17290
17761
|
* @summary Create a Doctor.
|
|
@@ -17293,6 +17764,27 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17293
17764
|
* @throws {RequiredError}
|
|
17294
17765
|
*/
|
|
17295
17766
|
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
17767
|
+
/**
|
|
17768
|
+
*
|
|
17769
|
+
* @summary Get all Doctors.
|
|
17770
|
+
* @param {string} [hospitalId]
|
|
17771
|
+
* @param {string} [languageCode]
|
|
17772
|
+
* @param {boolean} [returnDefaultValue]
|
|
17773
|
+
* @param {Array<string>} [ids]
|
|
17774
|
+
* @param {string} [id]
|
|
17775
|
+
* @param {string} [fullname]
|
|
17776
|
+
* @param {string} [email]
|
|
17777
|
+
* @param {Gender} [gender]
|
|
17778
|
+
* @param {Date} [dateOfBirth]
|
|
17779
|
+
* @param {Date} [created]
|
|
17780
|
+
* @param {boolean} [showHidden]
|
|
17781
|
+
* @param {number} [page]
|
|
17782
|
+
* @param {number} [limit]
|
|
17783
|
+
* @param {Date} [lastRetrieved]
|
|
17784
|
+
* @param {*} [options] Override http request option.
|
|
17785
|
+
* @throws {RequiredError}
|
|
17786
|
+
*/
|
|
17787
|
+
apiV1DoctorsSimpleGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: 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<DoctorsSimpleModel>;
|
|
17296
17788
|
/**
|
|
17297
17789
|
*
|
|
17298
17790
|
* @param {string} slug
|
|
@@ -17670,6 +18162,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17670
18162
|
* @param {string} [hospitalId]
|
|
17671
18163
|
* @param {string} [languageCode]
|
|
17672
18164
|
* @param {boolean} [returnDefaultValue]
|
|
18165
|
+
* @param {Array<string>} [ids]
|
|
17673
18166
|
* @param {string} [id]
|
|
17674
18167
|
* @param {string} [fullname]
|
|
17675
18168
|
* @param {string} [email]
|
|
@@ -17684,7 +18177,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17684
18177
|
* @throws {RequiredError}
|
|
17685
18178
|
* @memberof DoctorsApi
|
|
17686
18179
|
*/
|
|
17687
|
-
apiV1DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
|
|
18180
|
+
apiV1DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<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>>;
|
|
17688
18181
|
/**
|
|
17689
18182
|
*
|
|
17690
18183
|
* @summary Create a Doctor.
|
|
@@ -17694,6 +18187,28 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17694
18187
|
* @memberof DoctorsApi
|
|
17695
18188
|
*/
|
|
17696
18189
|
apiV1DoctorsPost(createDoctorCommand?: CreateDoctorCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
18190
|
+
/**
|
|
18191
|
+
*
|
|
18192
|
+
* @summary Get all Doctors.
|
|
18193
|
+
* @param {string} [hospitalId]
|
|
18194
|
+
* @param {string} [languageCode]
|
|
18195
|
+
* @param {boolean} [returnDefaultValue]
|
|
18196
|
+
* @param {Array<string>} [ids]
|
|
18197
|
+
* @param {string} [id]
|
|
18198
|
+
* @param {string} [fullname]
|
|
18199
|
+
* @param {string} [email]
|
|
18200
|
+
* @param {Gender} [gender]
|
|
18201
|
+
* @param {Date} [dateOfBirth]
|
|
18202
|
+
* @param {Date} [created]
|
|
18203
|
+
* @param {boolean} [showHidden]
|
|
18204
|
+
* @param {number} [page]
|
|
18205
|
+
* @param {number} [limit]
|
|
18206
|
+
* @param {Date} [lastRetrieved]
|
|
18207
|
+
* @param {*} [options] Override http request option.
|
|
18208
|
+
* @throws {RequiredError}
|
|
18209
|
+
* @memberof DoctorsApi
|
|
18210
|
+
*/
|
|
18211
|
+
apiV1DoctorsSimpleGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<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<DoctorsSimpleModel>>;
|
|
17697
18212
|
/**
|
|
17698
18213
|
*
|
|
17699
18214
|
* @param {string} slug
|
|
@@ -18741,7 +19256,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18741
19256
|
* @summary Get all Hospitals.
|
|
18742
19257
|
* @param {string} [hospitalId]
|
|
18743
19258
|
* @param {string} [name]
|
|
18744
|
-
* @param {string} [description]
|
|
18745
19259
|
* @param {string} [countryId]
|
|
18746
19260
|
* @param {Date} [created]
|
|
18747
19261
|
* @param {MarketingType} [marketingType]
|
|
@@ -18759,7 +19273,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18759
19273
|
* @param {*} [options] Override http request option.
|
|
18760
19274
|
* @throws {RequiredError}
|
|
18761
19275
|
*/
|
|
18762
|
-
apiV1HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined,
|
|
19276
|
+
apiV1HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18763
19277
|
/**
|
|
18764
19278
|
*
|
|
18765
19279
|
* @summary Delete HospitalAccreditation.
|
|
@@ -19047,15 +19561,18 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
19047
19561
|
* @param {string} [specialtyId]
|
|
19048
19562
|
* @param {string} [specialtyName]
|
|
19049
19563
|
* @param {string} [specialtyTypeId]
|
|
19564
|
+
* @param {string} [title]
|
|
19050
19565
|
* @param {MarketingType} [marketingType]
|
|
19051
|
-
* @param {
|
|
19566
|
+
* @param {string} [languageCode]
|
|
19567
|
+
* @param {boolean} [showHidden]
|
|
19568
|
+
* @param {boolean} [returnDefaultValue]
|
|
19052
19569
|
* @param {number} [page]
|
|
19053
19570
|
* @param {number} [limit]
|
|
19054
19571
|
* @param {Date} [lastRetrieved]
|
|
19055
19572
|
* @param {*} [options] Override http request option.
|
|
19056
19573
|
* @throws {RequiredError}
|
|
19057
19574
|
*/
|
|
19058
|
-
apiV1HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined,
|
|
19575
|
+
apiV1HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19059
19576
|
/**
|
|
19060
19577
|
*
|
|
19061
19578
|
* @summary Create HospitalSpecialty.
|
|
@@ -19079,10 +19596,12 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
19079
19596
|
* @summary Get HospitalSpecialty.
|
|
19080
19597
|
* @param {string} hospitalId
|
|
19081
19598
|
* @param {string} specialtyId
|
|
19599
|
+
* @param {string} [languageCode]
|
|
19600
|
+
* @param {boolean} [returnDefaultValue]
|
|
19082
19601
|
* @param {*} [options] Override http request option.
|
|
19083
19602
|
* @throws {RequiredError}
|
|
19084
19603
|
*/
|
|
19085
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19604
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19086
19605
|
/**
|
|
19087
19606
|
*
|
|
19088
19607
|
* @summary Update HospitalSpecialty.
|
|
@@ -19233,7 +19752,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
19233
19752
|
* @summary Get all Hospitals.
|
|
19234
19753
|
* @param {string} [hospitalId]
|
|
19235
19754
|
* @param {string} [name]
|
|
19236
|
-
* @param {string} [description]
|
|
19237
19755
|
* @param {string} [countryId]
|
|
19238
19756
|
* @param {Date} [created]
|
|
19239
19757
|
* @param {MarketingType} [marketingType]
|
|
@@ -19251,7 +19769,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
19251
19769
|
* @param {*} [options] Override http request option.
|
|
19252
19770
|
* @throws {RequiredError}
|
|
19253
19771
|
*/
|
|
19254
|
-
apiV1HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined,
|
|
19772
|
+
apiV1HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19255
19773
|
/**
|
|
19256
19774
|
*
|
|
19257
19775
|
* @param {string} slug
|
|
@@ -19272,7 +19790,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19272
19790
|
* @summary Get all Hospitals.
|
|
19273
19791
|
* @param {string} [hospitalId]
|
|
19274
19792
|
* @param {string} [name]
|
|
19275
|
-
* @param {string} [description]
|
|
19276
19793
|
* @param {string} [countryId]
|
|
19277
19794
|
* @param {Date} [created]
|
|
19278
19795
|
* @param {MarketingType} [marketingType]
|
|
@@ -19290,7 +19807,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19290
19807
|
* @param {*} [options] Override http request option.
|
|
19291
19808
|
* @throws {RequiredError}
|
|
19292
19809
|
*/
|
|
19293
|
-
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined,
|
|
19810
|
+
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
|
|
19294
19811
|
/**
|
|
19295
19812
|
*
|
|
19296
19813
|
* @summary Delete HospitalAccreditation.
|
|
@@ -19578,15 +20095,18 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19578
20095
|
* @param {string} [specialtyId]
|
|
19579
20096
|
* @param {string} [specialtyName]
|
|
19580
20097
|
* @param {string} [specialtyTypeId]
|
|
20098
|
+
* @param {string} [title]
|
|
19581
20099
|
* @param {MarketingType} [marketingType]
|
|
19582
|
-
* @param {
|
|
20100
|
+
* @param {string} [languageCode]
|
|
20101
|
+
* @param {boolean} [showHidden]
|
|
20102
|
+
* @param {boolean} [returnDefaultValue]
|
|
19583
20103
|
* @param {number} [page]
|
|
19584
20104
|
* @param {number} [limit]
|
|
19585
20105
|
* @param {Date} [lastRetrieved]
|
|
19586
20106
|
* @param {*} [options] Override http request option.
|
|
19587
20107
|
* @throws {RequiredError}
|
|
19588
20108
|
*/
|
|
19589
|
-
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined,
|
|
20109
|
+
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
|
|
19590
20110
|
/**
|
|
19591
20111
|
*
|
|
19592
20112
|
* @summary Create HospitalSpecialty.
|
|
@@ -19610,10 +20130,12 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19610
20130
|
* @summary Get HospitalSpecialty.
|
|
19611
20131
|
* @param {string} hospitalId
|
|
19612
20132
|
* @param {string} specialtyId
|
|
20133
|
+
* @param {string} [languageCode]
|
|
20134
|
+
* @param {boolean} [returnDefaultValue]
|
|
19613
20135
|
* @param {*} [options] Override http request option.
|
|
19614
20136
|
* @throws {RequiredError}
|
|
19615
20137
|
*/
|
|
19616
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
20138
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
19617
20139
|
/**
|
|
19618
20140
|
*
|
|
19619
20141
|
* @summary Update HospitalSpecialty.
|
|
@@ -19764,7 +20286,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19764
20286
|
* @summary Get all Hospitals.
|
|
19765
20287
|
* @param {string} [hospitalId]
|
|
19766
20288
|
* @param {string} [name]
|
|
19767
|
-
* @param {string} [description]
|
|
19768
20289
|
* @param {string} [countryId]
|
|
19769
20290
|
* @param {Date} [created]
|
|
19770
20291
|
* @param {MarketingType} [marketingType]
|
|
@@ -19782,7 +20303,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19782
20303
|
* @param {*} [options] Override http request option.
|
|
19783
20304
|
* @throws {RequiredError}
|
|
19784
20305
|
*/
|
|
19785
|
-
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined,
|
|
20306
|
+
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsSimpleModel>>;
|
|
19786
20307
|
/**
|
|
19787
20308
|
*
|
|
19788
20309
|
* @param {string} slug
|
|
@@ -19803,7 +20324,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19803
20324
|
* @summary Get all Hospitals.
|
|
19804
20325
|
* @param {string} [hospitalId]
|
|
19805
20326
|
* @param {string} [name]
|
|
19806
|
-
* @param {string} [description]
|
|
19807
20327
|
* @param {string} [countryId]
|
|
19808
20328
|
* @param {Date} [created]
|
|
19809
20329
|
* @param {MarketingType} [marketingType]
|
|
@@ -19821,7 +20341,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19821
20341
|
* @param {*} [options] Override http request option.
|
|
19822
20342
|
* @throws {RequiredError}
|
|
19823
20343
|
*/
|
|
19824
|
-
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined,
|
|
20344
|
+
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsModel>;
|
|
19825
20345
|
/**
|
|
19826
20346
|
*
|
|
19827
20347
|
* @summary Delete HospitalAccreditation.
|
|
@@ -20109,15 +20629,18 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
20109
20629
|
* @param {string} [specialtyId]
|
|
20110
20630
|
* @param {string} [specialtyName]
|
|
20111
20631
|
* @param {string} [specialtyTypeId]
|
|
20632
|
+
* @param {string} [title]
|
|
20112
20633
|
* @param {MarketingType} [marketingType]
|
|
20113
|
-
* @param {
|
|
20634
|
+
* @param {string} [languageCode]
|
|
20635
|
+
* @param {boolean} [showHidden]
|
|
20636
|
+
* @param {boolean} [returnDefaultValue]
|
|
20114
20637
|
* @param {number} [page]
|
|
20115
20638
|
* @param {number} [limit]
|
|
20116
20639
|
* @param {Date} [lastRetrieved]
|
|
20117
20640
|
* @param {*} [options] Override http request option.
|
|
20118
20641
|
* @throws {RequiredError}
|
|
20119
20642
|
*/
|
|
20120
|
-
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, marketingType?: MarketingType | undefined,
|
|
20643
|
+
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
|
|
20121
20644
|
/**
|
|
20122
20645
|
*
|
|
20123
20646
|
* @summary Create HospitalSpecialty.
|
|
@@ -20141,10 +20664,12 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
20141
20664
|
* @summary Get HospitalSpecialty.
|
|
20142
20665
|
* @param {string} hospitalId
|
|
20143
20666
|
* @param {string} specialtyId
|
|
20667
|
+
* @param {string} [languageCode]
|
|
20668
|
+
* @param {boolean} [returnDefaultValue]
|
|
20144
20669
|
* @param {*} [options] Override http request option.
|
|
20145
20670
|
* @throws {RequiredError}
|
|
20146
20671
|
*/
|
|
20147
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
20672
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
20148
20673
|
/**
|
|
20149
20674
|
*
|
|
20150
20675
|
* @summary Update HospitalSpecialty.
|
|
@@ -20295,7 +20820,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
20295
20820
|
* @summary Get all Hospitals.
|
|
20296
20821
|
* @param {string} [hospitalId]
|
|
20297
20822
|
* @param {string} [name]
|
|
20298
|
-
* @param {string} [description]
|
|
20299
20823
|
* @param {string} [countryId]
|
|
20300
20824
|
* @param {Date} [created]
|
|
20301
20825
|
* @param {MarketingType} [marketingType]
|
|
@@ -20313,7 +20837,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
20313
20837
|
* @param {*} [options] Override http request option.
|
|
20314
20838
|
* @throws {RequiredError}
|
|
20315
20839
|
*/
|
|
20316
|
-
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined,
|
|
20840
|
+
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsSimpleModel>;
|
|
20317
20841
|
/**
|
|
20318
20842
|
*
|
|
20319
20843
|
* @param {string} slug
|
|
@@ -20336,7 +20860,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20336
20860
|
* @summary Get all Hospitals.
|
|
20337
20861
|
* @param {string} [hospitalId]
|
|
20338
20862
|
* @param {string} [name]
|
|
20339
|
-
* @param {string} [description]
|
|
20340
20863
|
* @param {string} [countryId]
|
|
20341
20864
|
* @param {Date} [created]
|
|
20342
20865
|
* @param {MarketingType} [marketingType]
|
|
@@ -20355,7 +20878,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20355
20878
|
* @throws {RequiredError}
|
|
20356
20879
|
* @memberof HospitalsApi
|
|
20357
20880
|
*/
|
|
20358
|
-
apiV1HospitalsGet(hospitalId?: string, name?: string,
|
|
20881
|
+
apiV1HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel>>;
|
|
20359
20882
|
/**
|
|
20360
20883
|
*
|
|
20361
20884
|
* @summary Delete HospitalAccreditation.
|
|
@@ -20670,8 +21193,11 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20670
21193
|
* @param {string} [specialtyId]
|
|
20671
21194
|
* @param {string} [specialtyName]
|
|
20672
21195
|
* @param {string} [specialtyTypeId]
|
|
21196
|
+
* @param {string} [title]
|
|
20673
21197
|
* @param {MarketingType} [marketingType]
|
|
20674
|
-
* @param {
|
|
21198
|
+
* @param {string} [languageCode]
|
|
21199
|
+
* @param {boolean} [showHidden]
|
|
21200
|
+
* @param {boolean} [returnDefaultValue]
|
|
20675
21201
|
* @param {number} [page]
|
|
20676
21202
|
* @param {number} [limit]
|
|
20677
21203
|
* @param {Date} [lastRetrieved]
|
|
@@ -20679,7 +21205,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20679
21205
|
* @throws {RequiredError}
|
|
20680
21206
|
* @memberof HospitalsApi
|
|
20681
21207
|
*/
|
|
20682
|
-
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, marketingType?: MarketingType,
|
|
21208
|
+
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel>>;
|
|
20683
21209
|
/**
|
|
20684
21210
|
*
|
|
20685
21211
|
* @summary Create HospitalSpecialty.
|
|
@@ -20705,11 +21231,13 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20705
21231
|
* @summary Get HospitalSpecialty.
|
|
20706
21232
|
* @param {string} hospitalId
|
|
20707
21233
|
* @param {string} specialtyId
|
|
21234
|
+
* @param {string} [languageCode]
|
|
21235
|
+
* @param {boolean} [returnDefaultValue]
|
|
20708
21236
|
* @param {*} [options] Override http request option.
|
|
20709
21237
|
* @throws {RequiredError}
|
|
20710
21238
|
* @memberof HospitalsApi
|
|
20711
21239
|
*/
|
|
20712
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
21240
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
20713
21241
|
/**
|
|
20714
21242
|
*
|
|
20715
21243
|
* @summary Update HospitalSpecialty.
|
|
@@ -20872,7 +21400,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20872
21400
|
* @summary Get all Hospitals.
|
|
20873
21401
|
* @param {string} [hospitalId]
|
|
20874
21402
|
* @param {string} [name]
|
|
20875
|
-
* @param {string} [description]
|
|
20876
21403
|
* @param {string} [countryId]
|
|
20877
21404
|
* @param {Date} [created]
|
|
20878
21405
|
* @param {MarketingType} [marketingType]
|
|
@@ -20891,7 +21418,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20891
21418
|
* @throws {RequiredError}
|
|
20892
21419
|
* @memberof HospitalsApi
|
|
20893
21420
|
*/
|
|
20894
|
-
apiV1HospitalsSimpleGet(hospitalId?: string, name?: string,
|
|
21421
|
+
apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsSimpleModel>>;
|
|
20895
21422
|
/**
|
|
20896
21423
|
*
|
|
20897
21424
|
* @param {string} slug
|
|
@@ -22706,6 +23233,587 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
22706
23233
|
*/
|
|
22707
23234
|
apiV1ProfilesPut(updateProfileCommand?: UpdateProfileCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel>>;
|
|
22708
23235
|
}
|
|
23236
|
+
/**
|
|
23237
|
+
* SearchApi - axios parameter creator
|
|
23238
|
+
* @export
|
|
23239
|
+
*/
|
|
23240
|
+
export declare const SearchApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
23241
|
+
/**
|
|
23242
|
+
*
|
|
23243
|
+
* @summary Search deals using Azure Search Service
|
|
23244
|
+
* @param {string} [searchTerm]
|
|
23245
|
+
* @param {boolean} [countOnly]
|
|
23246
|
+
* @param {string} [countryId]
|
|
23247
|
+
* @param {string} [hospitalId]
|
|
23248
|
+
* @param {MarketingType} [marketingType]
|
|
23249
|
+
* @param {string} [languageCode]
|
|
23250
|
+
* @param {number} [page]
|
|
23251
|
+
* @param {number} [limit]
|
|
23252
|
+
* @param {Date} [lastRetrieved]
|
|
23253
|
+
* @param {*} [options] Override http request option.
|
|
23254
|
+
* @throws {RequiredError}
|
|
23255
|
+
*/
|
|
23256
|
+
apiV1SearchDealsGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23257
|
+
/**
|
|
23258
|
+
*
|
|
23259
|
+
* @summary Update or Re-create deals Azure Search Services Index
|
|
23260
|
+
* @param {UpdateDealsSearchIndexCommand} [updateDealsSearchIndexCommand]
|
|
23261
|
+
* @param {*} [options] Override http request option.
|
|
23262
|
+
* @throws {RequiredError}
|
|
23263
|
+
*/
|
|
23264
|
+
apiV1SearchDealsPost: (updateDealsSearchIndexCommand?: UpdateDealsSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23265
|
+
/**
|
|
23266
|
+
*
|
|
23267
|
+
* @summary Search doctors using Azure Search Services
|
|
23268
|
+
* @param {string} [searchTerm]
|
|
23269
|
+
* @param {boolean} [countOnly]
|
|
23270
|
+
* @param {string} [countryId]
|
|
23271
|
+
* @param {string} [hospitalId]
|
|
23272
|
+
* @param {MarketingType} [marketingType]
|
|
23273
|
+
* @param {string} [languageCode]
|
|
23274
|
+
* @param {number} [page]
|
|
23275
|
+
* @param {number} [limit]
|
|
23276
|
+
* @param {Date} [lastRetrieved]
|
|
23277
|
+
* @param {*} [options] Override http request option.
|
|
23278
|
+
* @throws {RequiredError}
|
|
23279
|
+
*/
|
|
23280
|
+
apiV1SearchDoctorsGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23281
|
+
/**
|
|
23282
|
+
*
|
|
23283
|
+
* @summary Update or Re-create doctors Azure Search Services Index
|
|
23284
|
+
* @param {UpdateDoctorsSearchIndexCommand} [updateDoctorsSearchIndexCommand]
|
|
23285
|
+
* @param {*} [options] Override http request option.
|
|
23286
|
+
* @throws {RequiredError}
|
|
23287
|
+
*/
|
|
23288
|
+
apiV1SearchDoctorsPost: (updateDoctorsSearchIndexCommand?: UpdateDoctorsSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23289
|
+
/**
|
|
23290
|
+
*
|
|
23291
|
+
* @summary Get the number of items in each search index
|
|
23292
|
+
* @param {string} [searchTerm]
|
|
23293
|
+
* @param {boolean} [countOnly]
|
|
23294
|
+
* @param {string} [countryId]
|
|
23295
|
+
* @param {string} [hospitalId]
|
|
23296
|
+
* @param {MarketingType} [marketingType]
|
|
23297
|
+
* @param {string} [languageCode]
|
|
23298
|
+
* @param {number} [page]
|
|
23299
|
+
* @param {number} [limit]
|
|
23300
|
+
* @param {Date} [lastRetrieved]
|
|
23301
|
+
* @param {*} [options] Override http request option.
|
|
23302
|
+
* @throws {RequiredError}
|
|
23303
|
+
*/
|
|
23304
|
+
apiV1SearchGetcountGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23305
|
+
/**
|
|
23306
|
+
*
|
|
23307
|
+
* @summary Search hospitals using Azure Search Services
|
|
23308
|
+
* @param {string} [searchTerm]
|
|
23309
|
+
* @param {boolean} [countOnly]
|
|
23310
|
+
* @param {string} [countryId]
|
|
23311
|
+
* @param {string} [hospitalId]
|
|
23312
|
+
* @param {MarketingType} [marketingType]
|
|
23313
|
+
* @param {string} [languageCode]
|
|
23314
|
+
* @param {number} [page]
|
|
23315
|
+
* @param {number} [limit]
|
|
23316
|
+
* @param {Date} [lastRetrieved]
|
|
23317
|
+
* @param {*} [options] Override http request option.
|
|
23318
|
+
* @throws {RequiredError}
|
|
23319
|
+
*/
|
|
23320
|
+
apiV1SearchHospitalsGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23321
|
+
/**
|
|
23322
|
+
*
|
|
23323
|
+
* @summary Update or Re-create hospitals Azure Search Services Index
|
|
23324
|
+
* @param {UpdateHospitalsSearchIndexCommand} [updateHospitalsSearchIndexCommand]
|
|
23325
|
+
* @param {*} [options] Override http request option.
|
|
23326
|
+
* @throws {RequiredError}
|
|
23327
|
+
*/
|
|
23328
|
+
apiV1SearchHospitalsPost: (updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23329
|
+
/**
|
|
23330
|
+
*
|
|
23331
|
+
* @summary Search specialties using Azure Search Service
|
|
23332
|
+
* @param {string} [searchTerm]
|
|
23333
|
+
* @param {boolean} [countOnly]
|
|
23334
|
+
* @param {string} [countryId]
|
|
23335
|
+
* @param {string} [hospitalId]
|
|
23336
|
+
* @param {MarketingType} [marketingType]
|
|
23337
|
+
* @param {string} [languageCode]
|
|
23338
|
+
* @param {number} [page]
|
|
23339
|
+
* @param {number} [limit]
|
|
23340
|
+
* @param {Date} [lastRetrieved]
|
|
23341
|
+
* @param {*} [options] Override http request option.
|
|
23342
|
+
* @throws {RequiredError}
|
|
23343
|
+
*/
|
|
23344
|
+
apiV1SearchSpecialtiesGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23345
|
+
/**
|
|
23346
|
+
*
|
|
23347
|
+
* @summary Update or Re-create specialties Azure Search Services Index
|
|
23348
|
+
* @param {UpdateSpecialtiesSearchIndexCommand} [updateSpecialtiesSearchIndexCommand]
|
|
23349
|
+
* @param {*} [options] Override http request option.
|
|
23350
|
+
* @throws {RequiredError}
|
|
23351
|
+
*/
|
|
23352
|
+
apiV1SearchSpecialtiesPost: (updateSpecialtiesSearchIndexCommand?: UpdateSpecialtiesSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23353
|
+
/**
|
|
23354
|
+
*
|
|
23355
|
+
* @summary Search specialtyTypes using Azure Search Services
|
|
23356
|
+
* @param {string} [searchTerm]
|
|
23357
|
+
* @param {boolean} [countOnly]
|
|
23358
|
+
* @param {string} [countryId]
|
|
23359
|
+
* @param {string} [hospitalId]
|
|
23360
|
+
* @param {MarketingType} [marketingType]
|
|
23361
|
+
* @param {string} [languageCode]
|
|
23362
|
+
* @param {number} [page]
|
|
23363
|
+
* @param {number} [limit]
|
|
23364
|
+
* @param {Date} [lastRetrieved]
|
|
23365
|
+
* @param {*} [options] Override http request option.
|
|
23366
|
+
* @throws {RequiredError}
|
|
23367
|
+
*/
|
|
23368
|
+
apiV1SearchSpecialtytypesGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23369
|
+
/**
|
|
23370
|
+
*
|
|
23371
|
+
* @summary Update or Re-create specialtyTypes Azure Search Services Index
|
|
23372
|
+
* @param {UpdateSpecialtyTypesSearchIndexCommand} [updateSpecialtyTypesSearchIndexCommand]
|
|
23373
|
+
* @param {*} [options] Override http request option.
|
|
23374
|
+
* @throws {RequiredError}
|
|
23375
|
+
*/
|
|
23376
|
+
apiV1SearchSpecialtytypesPost: (updateSpecialtyTypesSearchIndexCommand?: UpdateSpecialtyTypesSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23377
|
+
};
|
|
23378
|
+
/**
|
|
23379
|
+
* SearchApi - functional programming interface
|
|
23380
|
+
* @export
|
|
23381
|
+
*/
|
|
23382
|
+
export declare const SearchApiFp: (configuration?: Configuration | undefined) => {
|
|
23383
|
+
/**
|
|
23384
|
+
*
|
|
23385
|
+
* @summary Search deals using Azure Search Service
|
|
23386
|
+
* @param {string} [searchTerm]
|
|
23387
|
+
* @param {boolean} [countOnly]
|
|
23388
|
+
* @param {string} [countryId]
|
|
23389
|
+
* @param {string} [hospitalId]
|
|
23390
|
+
* @param {MarketingType} [marketingType]
|
|
23391
|
+
* @param {string} [languageCode]
|
|
23392
|
+
* @param {number} [page]
|
|
23393
|
+
* @param {number} [limit]
|
|
23394
|
+
* @param {Date} [lastRetrieved]
|
|
23395
|
+
* @param {*} [options] Override http request option.
|
|
23396
|
+
* @throws {RequiredError}
|
|
23397
|
+
*/
|
|
23398
|
+
apiV1SearchDealsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
|
|
23399
|
+
/**
|
|
23400
|
+
*
|
|
23401
|
+
* @summary Update or Re-create deals Azure Search Services Index
|
|
23402
|
+
* @param {UpdateDealsSearchIndexCommand} [updateDealsSearchIndexCommand]
|
|
23403
|
+
* @param {*} [options] Override http request option.
|
|
23404
|
+
* @throws {RequiredError}
|
|
23405
|
+
*/
|
|
23406
|
+
apiV1SearchDealsPost(updateDealsSearchIndexCommand?: UpdateDealsSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
23407
|
+
/**
|
|
23408
|
+
*
|
|
23409
|
+
* @summary Search doctors using Azure Search Services
|
|
23410
|
+
* @param {string} [searchTerm]
|
|
23411
|
+
* @param {boolean} [countOnly]
|
|
23412
|
+
* @param {string} [countryId]
|
|
23413
|
+
* @param {string} [hospitalId]
|
|
23414
|
+
* @param {MarketingType} [marketingType]
|
|
23415
|
+
* @param {string} [languageCode]
|
|
23416
|
+
* @param {number} [page]
|
|
23417
|
+
* @param {number} [limit]
|
|
23418
|
+
* @param {Date} [lastRetrieved]
|
|
23419
|
+
* @param {*} [options] Override http request option.
|
|
23420
|
+
* @throws {RequiredError}
|
|
23421
|
+
*/
|
|
23422
|
+
apiV1SearchDoctorsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
|
|
23423
|
+
/**
|
|
23424
|
+
*
|
|
23425
|
+
* @summary Update or Re-create doctors Azure Search Services Index
|
|
23426
|
+
* @param {UpdateDoctorsSearchIndexCommand} [updateDoctorsSearchIndexCommand]
|
|
23427
|
+
* @param {*} [options] Override http request option.
|
|
23428
|
+
* @throws {RequiredError}
|
|
23429
|
+
*/
|
|
23430
|
+
apiV1SearchDoctorsPost(updateDoctorsSearchIndexCommand?: UpdateDoctorsSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
23431
|
+
/**
|
|
23432
|
+
*
|
|
23433
|
+
* @summary Get the number of items in each search index
|
|
23434
|
+
* @param {string} [searchTerm]
|
|
23435
|
+
* @param {boolean} [countOnly]
|
|
23436
|
+
* @param {string} [countryId]
|
|
23437
|
+
* @param {string} [hospitalId]
|
|
23438
|
+
* @param {MarketingType} [marketingType]
|
|
23439
|
+
* @param {string} [languageCode]
|
|
23440
|
+
* @param {number} [page]
|
|
23441
|
+
* @param {number} [limit]
|
|
23442
|
+
* @param {Date} [lastRetrieved]
|
|
23443
|
+
* @param {*} [options] Override http request option.
|
|
23444
|
+
* @throws {RequiredError}
|
|
23445
|
+
*/
|
|
23446
|
+
apiV1SearchGetcountGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AzureSearchModel>>;
|
|
23447
|
+
/**
|
|
23448
|
+
*
|
|
23449
|
+
* @summary Search hospitals using Azure Search Services
|
|
23450
|
+
* @param {string} [searchTerm]
|
|
23451
|
+
* @param {boolean} [countOnly]
|
|
23452
|
+
* @param {string} [countryId]
|
|
23453
|
+
* @param {string} [hospitalId]
|
|
23454
|
+
* @param {MarketingType} [marketingType]
|
|
23455
|
+
* @param {string} [languageCode]
|
|
23456
|
+
* @param {number} [page]
|
|
23457
|
+
* @param {number} [limit]
|
|
23458
|
+
* @param {Date} [lastRetrieved]
|
|
23459
|
+
* @param {*} [options] Override http request option.
|
|
23460
|
+
* @throws {RequiredError}
|
|
23461
|
+
*/
|
|
23462
|
+
apiV1SearchHospitalsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
|
|
23463
|
+
/**
|
|
23464
|
+
*
|
|
23465
|
+
* @summary Update or Re-create hospitals Azure Search Services Index
|
|
23466
|
+
* @param {UpdateHospitalsSearchIndexCommand} [updateHospitalsSearchIndexCommand]
|
|
23467
|
+
* @param {*} [options] Override http request option.
|
|
23468
|
+
* @throws {RequiredError}
|
|
23469
|
+
*/
|
|
23470
|
+
apiV1SearchHospitalsPost(updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
23471
|
+
/**
|
|
23472
|
+
*
|
|
23473
|
+
* @summary Search specialties using Azure Search Service
|
|
23474
|
+
* @param {string} [searchTerm]
|
|
23475
|
+
* @param {boolean} [countOnly]
|
|
23476
|
+
* @param {string} [countryId]
|
|
23477
|
+
* @param {string} [hospitalId]
|
|
23478
|
+
* @param {MarketingType} [marketingType]
|
|
23479
|
+
* @param {string} [languageCode]
|
|
23480
|
+
* @param {number} [page]
|
|
23481
|
+
* @param {number} [limit]
|
|
23482
|
+
* @param {Date} [lastRetrieved]
|
|
23483
|
+
* @param {*} [options] Override http request option.
|
|
23484
|
+
* @throws {RequiredError}
|
|
23485
|
+
*/
|
|
23486
|
+
apiV1SearchSpecialtiesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesModel>>;
|
|
23487
|
+
/**
|
|
23488
|
+
*
|
|
23489
|
+
* @summary Update or Re-create specialties Azure Search Services Index
|
|
23490
|
+
* @param {UpdateSpecialtiesSearchIndexCommand} [updateSpecialtiesSearchIndexCommand]
|
|
23491
|
+
* @param {*} [options] Override http request option.
|
|
23492
|
+
* @throws {RequiredError}
|
|
23493
|
+
*/
|
|
23494
|
+
apiV1SearchSpecialtiesPost(updateSpecialtiesSearchIndexCommand?: UpdateSpecialtiesSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
23495
|
+
/**
|
|
23496
|
+
*
|
|
23497
|
+
* @summary Search specialtyTypes using Azure Search Services
|
|
23498
|
+
* @param {string} [searchTerm]
|
|
23499
|
+
* @param {boolean} [countOnly]
|
|
23500
|
+
* @param {string} [countryId]
|
|
23501
|
+
* @param {string} [hospitalId]
|
|
23502
|
+
* @param {MarketingType} [marketingType]
|
|
23503
|
+
* @param {string} [languageCode]
|
|
23504
|
+
* @param {number} [page]
|
|
23505
|
+
* @param {number} [limit]
|
|
23506
|
+
* @param {Date} [lastRetrieved]
|
|
23507
|
+
* @param {*} [options] Override http request option.
|
|
23508
|
+
* @throws {RequiredError}
|
|
23509
|
+
*/
|
|
23510
|
+
apiV1SearchSpecialtytypesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypesModel>>;
|
|
23511
|
+
/**
|
|
23512
|
+
*
|
|
23513
|
+
* @summary Update or Re-create specialtyTypes Azure Search Services Index
|
|
23514
|
+
* @param {UpdateSpecialtyTypesSearchIndexCommand} [updateSpecialtyTypesSearchIndexCommand]
|
|
23515
|
+
* @param {*} [options] Override http request option.
|
|
23516
|
+
* @throws {RequiredError}
|
|
23517
|
+
*/
|
|
23518
|
+
apiV1SearchSpecialtytypesPost(updateSpecialtyTypesSearchIndexCommand?: UpdateSpecialtyTypesSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
23519
|
+
};
|
|
23520
|
+
/**
|
|
23521
|
+
* SearchApi - factory interface
|
|
23522
|
+
* @export
|
|
23523
|
+
*/
|
|
23524
|
+
export declare const SearchApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
23525
|
+
/**
|
|
23526
|
+
*
|
|
23527
|
+
* @summary Search deals using Azure Search Service
|
|
23528
|
+
* @param {string} [searchTerm]
|
|
23529
|
+
* @param {boolean} [countOnly]
|
|
23530
|
+
* @param {string} [countryId]
|
|
23531
|
+
* @param {string} [hospitalId]
|
|
23532
|
+
* @param {MarketingType} [marketingType]
|
|
23533
|
+
* @param {string} [languageCode]
|
|
23534
|
+
* @param {number} [page]
|
|
23535
|
+
* @param {number} [limit]
|
|
23536
|
+
* @param {Date} [lastRetrieved]
|
|
23537
|
+
* @param {*} [options] Override http request option.
|
|
23538
|
+
* @throws {RequiredError}
|
|
23539
|
+
*/
|
|
23540
|
+
apiV1SearchDealsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
|
|
23541
|
+
/**
|
|
23542
|
+
*
|
|
23543
|
+
* @summary Update or Re-create deals Azure Search Services Index
|
|
23544
|
+
* @param {UpdateDealsSearchIndexCommand} [updateDealsSearchIndexCommand]
|
|
23545
|
+
* @param {*} [options] Override http request option.
|
|
23546
|
+
* @throws {RequiredError}
|
|
23547
|
+
*/
|
|
23548
|
+
apiV1SearchDealsPost(updateDealsSearchIndexCommand?: UpdateDealsSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
23549
|
+
/**
|
|
23550
|
+
*
|
|
23551
|
+
* @summary Search doctors using Azure Search Services
|
|
23552
|
+
* @param {string} [searchTerm]
|
|
23553
|
+
* @param {boolean} [countOnly]
|
|
23554
|
+
* @param {string} [countryId]
|
|
23555
|
+
* @param {string} [hospitalId]
|
|
23556
|
+
* @param {MarketingType} [marketingType]
|
|
23557
|
+
* @param {string} [languageCode]
|
|
23558
|
+
* @param {number} [page]
|
|
23559
|
+
* @param {number} [limit]
|
|
23560
|
+
* @param {Date} [lastRetrieved]
|
|
23561
|
+
* @param {*} [options] Override http request option.
|
|
23562
|
+
* @throws {RequiredError}
|
|
23563
|
+
*/
|
|
23564
|
+
apiV1SearchDoctorsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
|
|
23565
|
+
/**
|
|
23566
|
+
*
|
|
23567
|
+
* @summary Update or Re-create doctors Azure Search Services Index
|
|
23568
|
+
* @param {UpdateDoctorsSearchIndexCommand} [updateDoctorsSearchIndexCommand]
|
|
23569
|
+
* @param {*} [options] Override http request option.
|
|
23570
|
+
* @throws {RequiredError}
|
|
23571
|
+
*/
|
|
23572
|
+
apiV1SearchDoctorsPost(updateDoctorsSearchIndexCommand?: UpdateDoctorsSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
23573
|
+
/**
|
|
23574
|
+
*
|
|
23575
|
+
* @summary Get the number of items in each search index
|
|
23576
|
+
* @param {string} [searchTerm]
|
|
23577
|
+
* @param {boolean} [countOnly]
|
|
23578
|
+
* @param {string} [countryId]
|
|
23579
|
+
* @param {string} [hospitalId]
|
|
23580
|
+
* @param {MarketingType} [marketingType]
|
|
23581
|
+
* @param {string} [languageCode]
|
|
23582
|
+
* @param {number} [page]
|
|
23583
|
+
* @param {number} [limit]
|
|
23584
|
+
* @param {Date} [lastRetrieved]
|
|
23585
|
+
* @param {*} [options] Override http request option.
|
|
23586
|
+
* @throws {RequiredError}
|
|
23587
|
+
*/
|
|
23588
|
+
apiV1SearchGetcountGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<AzureSearchModel>;
|
|
23589
|
+
/**
|
|
23590
|
+
*
|
|
23591
|
+
* @summary Search hospitals using Azure Search Services
|
|
23592
|
+
* @param {string} [searchTerm]
|
|
23593
|
+
* @param {boolean} [countOnly]
|
|
23594
|
+
* @param {string} [countryId]
|
|
23595
|
+
* @param {string} [hospitalId]
|
|
23596
|
+
* @param {MarketingType} [marketingType]
|
|
23597
|
+
* @param {string} [languageCode]
|
|
23598
|
+
* @param {number} [page]
|
|
23599
|
+
* @param {number} [limit]
|
|
23600
|
+
* @param {Date} [lastRetrieved]
|
|
23601
|
+
* @param {*} [options] Override http request option.
|
|
23602
|
+
* @throws {RequiredError}
|
|
23603
|
+
*/
|
|
23604
|
+
apiV1SearchHospitalsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsModel>;
|
|
23605
|
+
/**
|
|
23606
|
+
*
|
|
23607
|
+
* @summary Update or Re-create hospitals Azure Search Services Index
|
|
23608
|
+
* @param {UpdateHospitalsSearchIndexCommand} [updateHospitalsSearchIndexCommand]
|
|
23609
|
+
* @param {*} [options] Override http request option.
|
|
23610
|
+
* @throws {RequiredError}
|
|
23611
|
+
*/
|
|
23612
|
+
apiV1SearchHospitalsPost(updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
23613
|
+
/**
|
|
23614
|
+
*
|
|
23615
|
+
* @summary Search specialties using Azure Search Service
|
|
23616
|
+
* @param {string} [searchTerm]
|
|
23617
|
+
* @param {boolean} [countOnly]
|
|
23618
|
+
* @param {string} [countryId]
|
|
23619
|
+
* @param {string} [hospitalId]
|
|
23620
|
+
* @param {MarketingType} [marketingType]
|
|
23621
|
+
* @param {string} [languageCode]
|
|
23622
|
+
* @param {number} [page]
|
|
23623
|
+
* @param {number} [limit]
|
|
23624
|
+
* @param {Date} [lastRetrieved]
|
|
23625
|
+
* @param {*} [options] Override http request option.
|
|
23626
|
+
* @throws {RequiredError}
|
|
23627
|
+
*/
|
|
23628
|
+
apiV1SearchSpecialtiesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtiesModel>;
|
|
23629
|
+
/**
|
|
23630
|
+
*
|
|
23631
|
+
* @summary Update or Re-create specialties Azure Search Services Index
|
|
23632
|
+
* @param {UpdateSpecialtiesSearchIndexCommand} [updateSpecialtiesSearchIndexCommand]
|
|
23633
|
+
* @param {*} [options] Override http request option.
|
|
23634
|
+
* @throws {RequiredError}
|
|
23635
|
+
*/
|
|
23636
|
+
apiV1SearchSpecialtiesPost(updateSpecialtiesSearchIndexCommand?: UpdateSpecialtiesSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
23637
|
+
/**
|
|
23638
|
+
*
|
|
23639
|
+
* @summary Search specialtyTypes using Azure Search Services
|
|
23640
|
+
* @param {string} [searchTerm]
|
|
23641
|
+
* @param {boolean} [countOnly]
|
|
23642
|
+
* @param {string} [countryId]
|
|
23643
|
+
* @param {string} [hospitalId]
|
|
23644
|
+
* @param {MarketingType} [marketingType]
|
|
23645
|
+
* @param {string} [languageCode]
|
|
23646
|
+
* @param {number} [page]
|
|
23647
|
+
* @param {number} [limit]
|
|
23648
|
+
* @param {Date} [lastRetrieved]
|
|
23649
|
+
* @param {*} [options] Override http request option.
|
|
23650
|
+
* @throws {RequiredError}
|
|
23651
|
+
*/
|
|
23652
|
+
apiV1SearchSpecialtytypesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtyTypesModel>;
|
|
23653
|
+
/**
|
|
23654
|
+
*
|
|
23655
|
+
* @summary Update or Re-create specialtyTypes Azure Search Services Index
|
|
23656
|
+
* @param {UpdateSpecialtyTypesSearchIndexCommand} [updateSpecialtyTypesSearchIndexCommand]
|
|
23657
|
+
* @param {*} [options] Override http request option.
|
|
23658
|
+
* @throws {RequiredError}
|
|
23659
|
+
*/
|
|
23660
|
+
apiV1SearchSpecialtytypesPost(updateSpecialtyTypesSearchIndexCommand?: UpdateSpecialtyTypesSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
23661
|
+
};
|
|
23662
|
+
/**
|
|
23663
|
+
* SearchApi - object-oriented interface
|
|
23664
|
+
* @export
|
|
23665
|
+
* @class SearchApi
|
|
23666
|
+
* @extends {BaseAPI}
|
|
23667
|
+
*/
|
|
23668
|
+
export declare class SearchApi extends BaseAPI {
|
|
23669
|
+
/**
|
|
23670
|
+
*
|
|
23671
|
+
* @summary Search deals using Azure Search Service
|
|
23672
|
+
* @param {string} [searchTerm]
|
|
23673
|
+
* @param {boolean} [countOnly]
|
|
23674
|
+
* @param {string} [countryId]
|
|
23675
|
+
* @param {string} [hospitalId]
|
|
23676
|
+
* @param {MarketingType} [marketingType]
|
|
23677
|
+
* @param {string} [languageCode]
|
|
23678
|
+
* @param {number} [page]
|
|
23679
|
+
* @param {number} [limit]
|
|
23680
|
+
* @param {Date} [lastRetrieved]
|
|
23681
|
+
* @param {*} [options] Override http request option.
|
|
23682
|
+
* @throws {RequiredError}
|
|
23683
|
+
* @memberof SearchApi
|
|
23684
|
+
*/
|
|
23685
|
+
apiV1SearchDealsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
|
|
23686
|
+
/**
|
|
23687
|
+
*
|
|
23688
|
+
* @summary Update or Re-create deals Azure Search Services Index
|
|
23689
|
+
* @param {UpdateDealsSearchIndexCommand} [updateDealsSearchIndexCommand]
|
|
23690
|
+
* @param {*} [options] Override http request option.
|
|
23691
|
+
* @throws {RequiredError}
|
|
23692
|
+
* @memberof SearchApi
|
|
23693
|
+
*/
|
|
23694
|
+
apiV1SearchDealsPost(updateDealsSearchIndexCommand?: UpdateDealsSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
23695
|
+
/**
|
|
23696
|
+
*
|
|
23697
|
+
* @summary Search doctors using Azure Search Services
|
|
23698
|
+
* @param {string} [searchTerm]
|
|
23699
|
+
* @param {boolean} [countOnly]
|
|
23700
|
+
* @param {string} [countryId]
|
|
23701
|
+
* @param {string} [hospitalId]
|
|
23702
|
+
* @param {MarketingType} [marketingType]
|
|
23703
|
+
* @param {string} [languageCode]
|
|
23704
|
+
* @param {number} [page]
|
|
23705
|
+
* @param {number} [limit]
|
|
23706
|
+
* @param {Date} [lastRetrieved]
|
|
23707
|
+
* @param {*} [options] Override http request option.
|
|
23708
|
+
* @throws {RequiredError}
|
|
23709
|
+
* @memberof SearchApi
|
|
23710
|
+
*/
|
|
23711
|
+
apiV1SearchDoctorsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
|
|
23712
|
+
/**
|
|
23713
|
+
*
|
|
23714
|
+
* @summary Update or Re-create doctors Azure Search Services Index
|
|
23715
|
+
* @param {UpdateDoctorsSearchIndexCommand} [updateDoctorsSearchIndexCommand]
|
|
23716
|
+
* @param {*} [options] Override http request option.
|
|
23717
|
+
* @throws {RequiredError}
|
|
23718
|
+
* @memberof SearchApi
|
|
23719
|
+
*/
|
|
23720
|
+
apiV1SearchDoctorsPost(updateDoctorsSearchIndexCommand?: UpdateDoctorsSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
23721
|
+
/**
|
|
23722
|
+
*
|
|
23723
|
+
* @summary Get the number of items in each search index
|
|
23724
|
+
* @param {string} [searchTerm]
|
|
23725
|
+
* @param {boolean} [countOnly]
|
|
23726
|
+
* @param {string} [countryId]
|
|
23727
|
+
* @param {string} [hospitalId]
|
|
23728
|
+
* @param {MarketingType} [marketingType]
|
|
23729
|
+
* @param {string} [languageCode]
|
|
23730
|
+
* @param {number} [page]
|
|
23731
|
+
* @param {number} [limit]
|
|
23732
|
+
* @param {Date} [lastRetrieved]
|
|
23733
|
+
* @param {*} [options] Override http request option.
|
|
23734
|
+
* @throws {RequiredError}
|
|
23735
|
+
* @memberof SearchApi
|
|
23736
|
+
*/
|
|
23737
|
+
apiV1SearchGetcountGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AzureSearchModel>>;
|
|
23738
|
+
/**
|
|
23739
|
+
*
|
|
23740
|
+
* @summary Search hospitals using Azure Search Services
|
|
23741
|
+
* @param {string} [searchTerm]
|
|
23742
|
+
* @param {boolean} [countOnly]
|
|
23743
|
+
* @param {string} [countryId]
|
|
23744
|
+
* @param {string} [hospitalId]
|
|
23745
|
+
* @param {MarketingType} [marketingType]
|
|
23746
|
+
* @param {string} [languageCode]
|
|
23747
|
+
* @param {number} [page]
|
|
23748
|
+
* @param {number} [limit]
|
|
23749
|
+
* @param {Date} [lastRetrieved]
|
|
23750
|
+
* @param {*} [options] Override http request option.
|
|
23751
|
+
* @throws {RequiredError}
|
|
23752
|
+
* @memberof SearchApi
|
|
23753
|
+
*/
|
|
23754
|
+
apiV1SearchHospitalsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel>>;
|
|
23755
|
+
/**
|
|
23756
|
+
*
|
|
23757
|
+
* @summary Update or Re-create hospitals Azure Search Services Index
|
|
23758
|
+
* @param {UpdateHospitalsSearchIndexCommand} [updateHospitalsSearchIndexCommand]
|
|
23759
|
+
* @param {*} [options] Override http request option.
|
|
23760
|
+
* @throws {RequiredError}
|
|
23761
|
+
* @memberof SearchApi
|
|
23762
|
+
*/
|
|
23763
|
+
apiV1SearchHospitalsPost(updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
23764
|
+
/**
|
|
23765
|
+
*
|
|
23766
|
+
* @summary Search specialties using Azure Search Service
|
|
23767
|
+
* @param {string} [searchTerm]
|
|
23768
|
+
* @param {boolean} [countOnly]
|
|
23769
|
+
* @param {string} [countryId]
|
|
23770
|
+
* @param {string} [hospitalId]
|
|
23771
|
+
* @param {MarketingType} [marketingType]
|
|
23772
|
+
* @param {string} [languageCode]
|
|
23773
|
+
* @param {number} [page]
|
|
23774
|
+
* @param {number} [limit]
|
|
23775
|
+
* @param {Date} [lastRetrieved]
|
|
23776
|
+
* @param {*} [options] Override http request option.
|
|
23777
|
+
* @throws {RequiredError}
|
|
23778
|
+
* @memberof SearchApi
|
|
23779
|
+
*/
|
|
23780
|
+
apiV1SearchSpecialtiesGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesModel>>;
|
|
23781
|
+
/**
|
|
23782
|
+
*
|
|
23783
|
+
* @summary Update or Re-create specialties Azure Search Services Index
|
|
23784
|
+
* @param {UpdateSpecialtiesSearchIndexCommand} [updateSpecialtiesSearchIndexCommand]
|
|
23785
|
+
* @param {*} [options] Override http request option.
|
|
23786
|
+
* @throws {RequiredError}
|
|
23787
|
+
* @memberof SearchApi
|
|
23788
|
+
*/
|
|
23789
|
+
apiV1SearchSpecialtiesPost(updateSpecialtiesSearchIndexCommand?: UpdateSpecialtiesSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
23790
|
+
/**
|
|
23791
|
+
*
|
|
23792
|
+
* @summary Search specialtyTypes using Azure Search Services
|
|
23793
|
+
* @param {string} [searchTerm]
|
|
23794
|
+
* @param {boolean} [countOnly]
|
|
23795
|
+
* @param {string} [countryId]
|
|
23796
|
+
* @param {string} [hospitalId]
|
|
23797
|
+
* @param {MarketingType} [marketingType]
|
|
23798
|
+
* @param {string} [languageCode]
|
|
23799
|
+
* @param {number} [page]
|
|
23800
|
+
* @param {number} [limit]
|
|
23801
|
+
* @param {Date} [lastRetrieved]
|
|
23802
|
+
* @param {*} [options] Override http request option.
|
|
23803
|
+
* @throws {RequiredError}
|
|
23804
|
+
* @memberof SearchApi
|
|
23805
|
+
*/
|
|
23806
|
+
apiV1SearchSpecialtytypesGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypesModel>>;
|
|
23807
|
+
/**
|
|
23808
|
+
*
|
|
23809
|
+
* @summary Update or Re-create specialtyTypes Azure Search Services Index
|
|
23810
|
+
* @param {UpdateSpecialtyTypesSearchIndexCommand} [updateSpecialtyTypesSearchIndexCommand]
|
|
23811
|
+
* @param {*} [options] Override http request option.
|
|
23812
|
+
* @throws {RequiredError}
|
|
23813
|
+
* @memberof SearchApi
|
|
23814
|
+
*/
|
|
23815
|
+
apiV1SearchSpecialtytypesPost(updateSpecialtyTypesSearchIndexCommand?: UpdateSpecialtyTypesSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
23816
|
+
}
|
|
22709
23817
|
/**
|
|
22710
23818
|
* ServiceReviewsApi - axios parameter creator
|
|
22711
23819
|
* @export
|
|
@@ -22718,6 +23826,7 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
22718
23826
|
* @param {string} [serviceName]
|
|
22719
23827
|
* @param {string} [patientId]
|
|
22720
23828
|
* @param {string} [patientName]
|
|
23829
|
+
* @param {Gender} [gender]
|
|
22721
23830
|
* @param {boolean} [recommended]
|
|
22722
23831
|
* @param {number} [rate]
|
|
22723
23832
|
* @param {ReviewType} [reviewType]
|
|
@@ -22727,7 +23836,7 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
|
|
|
22727
23836
|
* @param {*} [options] Override http request option.
|
|
22728
23837
|
* @throws {RequiredError}
|
|
22729
23838
|
*/
|
|
22730
|
-
apiV1ServicereviewsGet: (serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23839
|
+
apiV1ServicereviewsGet: (serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22731
23840
|
/**
|
|
22732
23841
|
*
|
|
22733
23842
|
* @summary Create a ServiceReview.
|
|
@@ -22823,6 +23932,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
22823
23932
|
* @param {string} [serviceName]
|
|
22824
23933
|
* @param {string} [patientId]
|
|
22825
23934
|
* @param {string} [patientName]
|
|
23935
|
+
* @param {Gender} [gender]
|
|
22826
23936
|
* @param {boolean} [recommended]
|
|
22827
23937
|
* @param {number} [rate]
|
|
22828
23938
|
* @param {ReviewType} [reviewType]
|
|
@@ -22832,7 +23942,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
22832
23942
|
* @param {*} [options] Override http request option.
|
|
22833
23943
|
* @throws {RequiredError}
|
|
22834
23944
|
*/
|
|
22835
|
-
apiV1ServicereviewsGet(serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
23945
|
+
apiV1ServicereviewsGet(serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
22836
23946
|
/**
|
|
22837
23947
|
*
|
|
22838
23948
|
* @summary Create a ServiceReview.
|
|
@@ -22928,6 +24038,7 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
22928
24038
|
* @param {string} [serviceName]
|
|
22929
24039
|
* @param {string} [patientId]
|
|
22930
24040
|
* @param {string} [patientName]
|
|
24041
|
+
* @param {Gender} [gender]
|
|
22931
24042
|
* @param {boolean} [recommended]
|
|
22932
24043
|
* @param {number} [rate]
|
|
22933
24044
|
* @param {ReviewType} [reviewType]
|
|
@@ -22937,7 +24048,7 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
|
|
|
22937
24048
|
* @param {*} [options] Override http request option.
|
|
22938
24049
|
* @throws {RequiredError}
|
|
22939
24050
|
*/
|
|
22940
|
-
apiV1ServicereviewsGet(serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
|
|
24051
|
+
apiV1ServicereviewsGet(serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
|
|
22941
24052
|
/**
|
|
22942
24053
|
*
|
|
22943
24054
|
* @summary Create a ServiceReview.
|
|
@@ -23035,6 +24146,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
23035
24146
|
* @param {string} [serviceName]
|
|
23036
24147
|
* @param {string} [patientId]
|
|
23037
24148
|
* @param {string} [patientName]
|
|
24149
|
+
* @param {Gender} [gender]
|
|
23038
24150
|
* @param {boolean} [recommended]
|
|
23039
24151
|
* @param {number} [rate]
|
|
23040
24152
|
* @param {ReviewType} [reviewType]
|
|
@@ -23045,7 +24157,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
23045
24157
|
* @throws {RequiredError}
|
|
23046
24158
|
* @memberof ServiceReviewsApi
|
|
23047
24159
|
*/
|
|
23048
|
-
apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, recommended?: boolean, rate?: number, reviewType?: ReviewType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel>>;
|
|
24160
|
+
apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel>>;
|
|
23049
24161
|
/**
|
|
23050
24162
|
*
|
|
23051
24163
|
* @summary Create a ServiceReview.
|
|
@@ -23353,14 +24465,13 @@ export declare const ServicesCategoriesApiAxiosParamCreator: (configuration?: Co
|
|
|
23353
24465
|
* @summary Get all ServiceCategories.
|
|
23354
24466
|
* @param {string} [id]
|
|
23355
24467
|
* @param {string} [name]
|
|
23356
|
-
* @param {string} [description]
|
|
23357
24468
|
* @param {number} [page]
|
|
23358
24469
|
* @param {number} [limit]
|
|
23359
24470
|
* @param {Date} [lastRetrieved]
|
|
23360
24471
|
* @param {*} [options] Override http request option.
|
|
23361
24472
|
* @throws {RequiredError}
|
|
23362
24473
|
*/
|
|
23363
|
-
apiV1ServicescategoriesGet: (id?: string | undefined, name?: string | undefined,
|
|
24474
|
+
apiV1ServicescategoriesGet: (id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23364
24475
|
/**
|
|
23365
24476
|
*
|
|
23366
24477
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -23404,14 +24515,13 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
|
|
|
23404
24515
|
* @summary Get all ServiceCategories.
|
|
23405
24516
|
* @param {string} [id]
|
|
23406
24517
|
* @param {string} [name]
|
|
23407
|
-
* @param {string} [description]
|
|
23408
24518
|
* @param {number} [page]
|
|
23409
24519
|
* @param {number} [limit]
|
|
23410
24520
|
* @param {Date} [lastRetrieved]
|
|
23411
24521
|
* @param {*} [options] Override http request option.
|
|
23412
24522
|
* @throws {RequiredError}
|
|
23413
24523
|
*/
|
|
23414
|
-
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined,
|
|
24524
|
+
apiV1ServicescategoriesGet(id?: 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<ServiceCategoriesModel>>;
|
|
23415
24525
|
/**
|
|
23416
24526
|
*
|
|
23417
24527
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -23455,14 +24565,13 @@ export declare const ServicesCategoriesApiFactory: (configuration?: Configuratio
|
|
|
23455
24565
|
* @summary Get all ServiceCategories.
|
|
23456
24566
|
* @param {string} [id]
|
|
23457
24567
|
* @param {string} [name]
|
|
23458
|
-
* @param {string} [description]
|
|
23459
24568
|
* @param {number} [page]
|
|
23460
24569
|
* @param {number} [limit]
|
|
23461
24570
|
* @param {Date} [lastRetrieved]
|
|
23462
24571
|
* @param {*} [options] Override http request option.
|
|
23463
24572
|
* @throws {RequiredError}
|
|
23464
24573
|
*/
|
|
23465
|
-
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined,
|
|
24574
|
+
apiV1ServicescategoriesGet(id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceCategoriesModel>;
|
|
23466
24575
|
/**
|
|
23467
24576
|
*
|
|
23468
24577
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|
|
@@ -23508,7 +24617,6 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
23508
24617
|
* @summary Get all ServiceCategories.
|
|
23509
24618
|
* @param {string} [id]
|
|
23510
24619
|
* @param {string} [name]
|
|
23511
|
-
* @param {string} [description]
|
|
23512
24620
|
* @param {number} [page]
|
|
23513
24621
|
* @param {number} [limit]
|
|
23514
24622
|
* @param {Date} [lastRetrieved]
|
|
@@ -23516,7 +24624,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
23516
24624
|
* @throws {RequiredError}
|
|
23517
24625
|
* @memberof ServicesCategoriesApi
|
|
23518
24626
|
*/
|
|
23519
|
-
apiV1ServicescategoriesGet(id?: string, name?: string,
|
|
24627
|
+
apiV1ServicescategoriesGet(id?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoriesModel>>;
|
|
23520
24628
|
/**
|
|
23521
24629
|
*
|
|
23522
24630
|
* @param {CreateServiceCategoryCommand} [createServiceCategoryCommand]
|