ch-admin-api-client-typescript 3.3.0 → 3.3.3
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 +118 -1035
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +83 -955
- package/package.json +1 -1
- package/src/api.ts +130 -1493
package/lib/api.d.ts
CHANGED
|
@@ -977,74 +977,6 @@ export interface AuditableEntity {
|
|
|
977
977
|
*/
|
|
978
978
|
'isDeleted'?: boolean;
|
|
979
979
|
}
|
|
980
|
-
/**
|
|
981
|
-
*
|
|
982
|
-
* @export
|
|
983
|
-
* @interface AwardModel
|
|
984
|
-
*/
|
|
985
|
-
export interface AwardModel {
|
|
986
|
-
/**
|
|
987
|
-
*
|
|
988
|
-
* @type {string}
|
|
989
|
-
* @memberof AwardModel
|
|
990
|
-
*/
|
|
991
|
-
'id'?: string;
|
|
992
|
-
/**
|
|
993
|
-
*
|
|
994
|
-
* @type {string}
|
|
995
|
-
* @memberof AwardModel
|
|
996
|
-
*/
|
|
997
|
-
'name'?: string | null;
|
|
998
|
-
/**
|
|
999
|
-
*
|
|
1000
|
-
* @type {string}
|
|
1001
|
-
* @memberof AwardModel
|
|
1002
|
-
*/
|
|
1003
|
-
'image'?: string | null;
|
|
1004
|
-
/**
|
|
1005
|
-
*
|
|
1006
|
-
* @type {Date}
|
|
1007
|
-
* @memberof AwardModel
|
|
1008
|
-
*/
|
|
1009
|
-
'date'?: Date;
|
|
1010
|
-
}
|
|
1011
|
-
/**
|
|
1012
|
-
*
|
|
1013
|
-
* @export
|
|
1014
|
-
* @interface AzureSearchModel
|
|
1015
|
-
*/
|
|
1016
|
-
export interface AzureSearchModel {
|
|
1017
|
-
/**
|
|
1018
|
-
*
|
|
1019
|
-
* @type {number}
|
|
1020
|
-
* @memberof AzureSearchModel
|
|
1021
|
-
*/
|
|
1022
|
-
'hospitals'?: number;
|
|
1023
|
-
/**
|
|
1024
|
-
*
|
|
1025
|
-
* @type {number}
|
|
1026
|
-
* @memberof AzureSearchModel
|
|
1027
|
-
*/
|
|
1028
|
-
'doctors'?: number;
|
|
1029
|
-
/**
|
|
1030
|
-
*
|
|
1031
|
-
* @type {number}
|
|
1032
|
-
* @memberof AzureSearchModel
|
|
1033
|
-
*/
|
|
1034
|
-
'deals'?: number;
|
|
1035
|
-
/**
|
|
1036
|
-
*
|
|
1037
|
-
* @type {number}
|
|
1038
|
-
* @memberof AzureSearchModel
|
|
1039
|
-
*/
|
|
1040
|
-
'specialties'?: number;
|
|
1041
|
-
/**
|
|
1042
|
-
*
|
|
1043
|
-
* @type {number}
|
|
1044
|
-
* @memberof AzureSearchModel
|
|
1045
|
-
*/
|
|
1046
|
-
'specialtyTypes'?: number;
|
|
1047
|
-
}
|
|
1048
980
|
/**
|
|
1049
981
|
*
|
|
1050
982
|
* @export
|
|
@@ -4562,7 +4494,7 @@ export interface CreateHospitalServiceCommand {
|
|
|
4562
4494
|
* @type {number}
|
|
4563
4495
|
* @memberof CreateHospitalServiceCommand
|
|
4564
4496
|
*/
|
|
4565
|
-
'order'?: number;
|
|
4497
|
+
'order'?: number | null;
|
|
4566
4498
|
/**
|
|
4567
4499
|
*
|
|
4568
4500
|
* @type {string}
|
|
@@ -6240,43 +6172,31 @@ export interface DoctorItemModel {
|
|
|
6240
6172
|
* @type {string}
|
|
6241
6173
|
* @memberof DoctorItemModel
|
|
6242
6174
|
*/
|
|
6243
|
-
'
|
|
6244
|
-
/**
|
|
6245
|
-
*
|
|
6246
|
-
* @type {string}
|
|
6247
|
-
* @memberof DoctorItemModel
|
|
6248
|
-
*/
|
|
6249
|
-
'firstName'?: string | null;
|
|
6250
|
-
/**
|
|
6251
|
-
*
|
|
6252
|
-
* @type {string}
|
|
6253
|
-
* @memberof DoctorItemModel
|
|
6254
|
-
*/
|
|
6255
|
-
'middleName'?: string | null;
|
|
6175
|
+
'name'?: string | null;
|
|
6256
6176
|
/**
|
|
6257
6177
|
*
|
|
6258
6178
|
* @type {string}
|
|
6259
6179
|
* @memberof DoctorItemModel
|
|
6260
6180
|
*/
|
|
6261
|
-
'
|
|
6181
|
+
'slug'?: string | null;
|
|
6262
6182
|
/**
|
|
6263
6183
|
*
|
|
6264
|
-
* @type {
|
|
6184
|
+
* @type {boolean}
|
|
6265
6185
|
* @memberof DoctorItemModel
|
|
6266
6186
|
*/
|
|
6267
|
-
'
|
|
6187
|
+
'consultationEnabled'?: boolean | null;
|
|
6268
6188
|
/**
|
|
6269
6189
|
*
|
|
6270
|
-
* @type {
|
|
6190
|
+
* @type {number}
|
|
6271
6191
|
* @memberof DoctorItemModel
|
|
6272
6192
|
*/
|
|
6273
|
-
'
|
|
6193
|
+
'consultationFee'?: number | null;
|
|
6274
6194
|
/**
|
|
6275
6195
|
*
|
|
6276
|
-
* @type {
|
|
6196
|
+
* @type {boolean}
|
|
6277
6197
|
* @memberof DoctorItemModel
|
|
6278
6198
|
*/
|
|
6279
|
-
'
|
|
6199
|
+
'confirmed'?: boolean;
|
|
6280
6200
|
/**
|
|
6281
6201
|
*
|
|
6282
6202
|
* @type {string}
|
|
@@ -6295,84 +6215,24 @@ export interface DoctorItemModel {
|
|
|
6295
6215
|
* @memberof DoctorItemModel
|
|
6296
6216
|
*/
|
|
6297
6217
|
'photoThumbnail'?: string | null;
|
|
6298
|
-
/**
|
|
6299
|
-
*
|
|
6300
|
-
* @type {Gender}
|
|
6301
|
-
* @memberof DoctorItemModel
|
|
6302
|
-
*/
|
|
6303
|
-
'gender'?: Gender;
|
|
6304
|
-
/**
|
|
6305
|
-
*
|
|
6306
|
-
* @type {Date}
|
|
6307
|
-
* @memberof DoctorItemModel
|
|
6308
|
-
*/
|
|
6309
|
-
'dateOfBirth'?: Date | null;
|
|
6310
6218
|
/**
|
|
6311
6219
|
*
|
|
6312
6220
|
* @type {string}
|
|
6313
6221
|
* @memberof DoctorItemModel
|
|
6314
6222
|
*/
|
|
6315
|
-
'
|
|
6223
|
+
'hospitalSlug'?: string | null;
|
|
6316
6224
|
/**
|
|
6317
6225
|
*
|
|
6318
|
-
* @type {
|
|
6226
|
+
* @type {Array<DoctorAffiliationItemModel>}
|
|
6319
6227
|
* @memberof DoctorItemModel
|
|
6320
6228
|
*/
|
|
6321
|
-
'
|
|
6229
|
+
'doctorAffiliations'?: Array<DoctorAffiliationItemModel> | null;
|
|
6322
6230
|
/**
|
|
6323
6231
|
*
|
|
6324
6232
|
* @type {AuditableEntity}
|
|
6325
6233
|
* @memberof DoctorItemModel
|
|
6326
6234
|
*/
|
|
6327
6235
|
'auditableEntity'?: AuditableEntity;
|
|
6328
|
-
/**
|
|
6329
|
-
*
|
|
6330
|
-
* @type {string}
|
|
6331
|
-
* @memberof DoctorItemModel
|
|
6332
|
-
*/
|
|
6333
|
-
'hospitalId'?: string | null;
|
|
6334
|
-
/**
|
|
6335
|
-
*
|
|
6336
|
-
* @type {string}
|
|
6337
|
-
* @memberof DoctorItemModel
|
|
6338
|
-
*/
|
|
6339
|
-
'hospitalName'?: string | null;
|
|
6340
|
-
/**
|
|
6341
|
-
*
|
|
6342
|
-
* @type {string}
|
|
6343
|
-
* @memberof DoctorItemModel
|
|
6344
|
-
*/
|
|
6345
|
-
'hospitalSlug'?: string | null;
|
|
6346
|
-
/**
|
|
6347
|
-
*
|
|
6348
|
-
* @type {Date}
|
|
6349
|
-
* @memberof DoctorItemModel
|
|
6350
|
-
*/
|
|
6351
|
-
'startPracticeDate'?: Date | null;
|
|
6352
|
-
/**
|
|
6353
|
-
*
|
|
6354
|
-
* @type {string}
|
|
6355
|
-
* @memberof DoctorItemModel
|
|
6356
|
-
*/
|
|
6357
|
-
'overview'?: string | null;
|
|
6358
|
-
/**
|
|
6359
|
-
*
|
|
6360
|
-
* @type {boolean}
|
|
6361
|
-
* @memberof DoctorItemModel
|
|
6362
|
-
*/
|
|
6363
|
-
'consultationEnabled'?: boolean | null;
|
|
6364
|
-
/**
|
|
6365
|
-
*
|
|
6366
|
-
* @type {number}
|
|
6367
|
-
* @memberof DoctorItemModel
|
|
6368
|
-
*/
|
|
6369
|
-
'consultationFee'?: number | null;
|
|
6370
|
-
/**
|
|
6371
|
-
*
|
|
6372
|
-
* @type {boolean}
|
|
6373
|
-
* @memberof DoctorItemModel
|
|
6374
|
-
*/
|
|
6375
|
-
'confirmed'?: boolean;
|
|
6376
6236
|
}
|
|
6377
6237
|
/**
|
|
6378
6238
|
*
|
|
@@ -6569,30 +6429,6 @@ export interface DoctorModel {
|
|
|
6569
6429
|
* @memberof DoctorModel
|
|
6570
6430
|
*/
|
|
6571
6431
|
'languageCode'?: string | null;
|
|
6572
|
-
/**
|
|
6573
|
-
*
|
|
6574
|
-
* @type {string}
|
|
6575
|
-
* @memberof DoctorModel
|
|
6576
|
-
*/
|
|
6577
|
-
'hospitalId'?: string | null;
|
|
6578
|
-
/**
|
|
6579
|
-
*
|
|
6580
|
-
* @type {string}
|
|
6581
|
-
* @memberof DoctorModel
|
|
6582
|
-
*/
|
|
6583
|
-
'hospitalName'?: string | null;
|
|
6584
|
-
/**
|
|
6585
|
-
*
|
|
6586
|
-
* @type {string}
|
|
6587
|
-
* @memberof DoctorModel
|
|
6588
|
-
*/
|
|
6589
|
-
'hospitalSlug'?: string | null;
|
|
6590
|
-
/**
|
|
6591
|
-
*
|
|
6592
|
-
* @type {Date}
|
|
6593
|
-
* @memberof DoctorModel
|
|
6594
|
-
*/
|
|
6595
|
-
'startPracticeDate'?: Date | null;
|
|
6596
6432
|
/**
|
|
6597
6433
|
*
|
|
6598
6434
|
* @type {string}
|
|
@@ -6631,10 +6467,16 @@ export interface DoctorModel {
|
|
|
6631
6467
|
'confirmed'?: boolean;
|
|
6632
6468
|
/**
|
|
6633
6469
|
*
|
|
6634
|
-
* @type {
|
|
6470
|
+
* @type {Date}
|
|
6635
6471
|
* @memberof DoctorModel
|
|
6636
6472
|
*/
|
|
6637
|
-
'
|
|
6473
|
+
'startPracticeDate'?: Date | null;
|
|
6474
|
+
/**
|
|
6475
|
+
*
|
|
6476
|
+
* @type {Array<DoctorAffiliationItemModel>}
|
|
6477
|
+
* @memberof DoctorModel
|
|
6478
|
+
*/
|
|
6479
|
+
'doctorAffiliations'?: Array<DoctorAffiliationItemModel> | null;
|
|
6638
6480
|
}
|
|
6639
6481
|
/**
|
|
6640
6482
|
*
|
|
@@ -7760,224 +7602,152 @@ export interface HospitalItemModel {
|
|
|
7760
7602
|
* @type {string}
|
|
7761
7603
|
* @memberof HospitalItemModel
|
|
7762
7604
|
*/
|
|
7763
|
-
'
|
|
7605
|
+
'logo'?: string | null;
|
|
7764
7606
|
/**
|
|
7765
7607
|
*
|
|
7766
7608
|
* @type {string}
|
|
7767
7609
|
* @memberof HospitalItemModel
|
|
7768
7610
|
*/
|
|
7769
|
-
'
|
|
7611
|
+
'countryId'?: string;
|
|
7770
7612
|
/**
|
|
7771
7613
|
*
|
|
7772
7614
|
* @type {string}
|
|
7773
7615
|
* @memberof HospitalItemModel
|
|
7774
7616
|
*/
|
|
7775
|
-
'
|
|
7617
|
+
'countryName'?: string | null;
|
|
7776
7618
|
/**
|
|
7777
7619
|
*
|
|
7778
|
-
* @type {
|
|
7620
|
+
* @type {MarketingType}
|
|
7779
7621
|
* @memberof HospitalItemModel
|
|
7780
7622
|
*/
|
|
7781
|
-
'
|
|
7623
|
+
'marketingType'?: MarketingType;
|
|
7782
7624
|
/**
|
|
7783
7625
|
*
|
|
7784
|
-
* @type {
|
|
7626
|
+
* @type {string}
|
|
7785
7627
|
* @memberof HospitalItemModel
|
|
7786
7628
|
*/
|
|
7787
|
-
'
|
|
7629
|
+
'timeZone'?: string | null;
|
|
7788
7630
|
/**
|
|
7789
7631
|
*
|
|
7790
|
-
* @type {
|
|
7632
|
+
* @type {string}
|
|
7791
7633
|
* @memberof HospitalItemModel
|
|
7792
7634
|
*/
|
|
7793
|
-
'
|
|
7635
|
+
'websiteUrl'?: string | null;
|
|
7794
7636
|
/**
|
|
7795
7637
|
*
|
|
7796
|
-
* @type {
|
|
7638
|
+
* @type {boolean}
|
|
7797
7639
|
* @memberof HospitalItemModel
|
|
7798
7640
|
*/
|
|
7799
|
-
'
|
|
7641
|
+
'paymentEnabled'?: boolean;
|
|
7800
7642
|
/**
|
|
7801
7643
|
*
|
|
7802
|
-
* @type {
|
|
7644
|
+
* @type {boolean}
|
|
7803
7645
|
* @memberof HospitalItemModel
|
|
7804
7646
|
*/
|
|
7805
|
-
'
|
|
7647
|
+
'confirmed'?: boolean;
|
|
7806
7648
|
/**
|
|
7807
7649
|
*
|
|
7808
|
-
* @type {
|
|
7650
|
+
* @type {LocationModel}
|
|
7809
7651
|
* @memberof HospitalItemModel
|
|
7810
7652
|
*/
|
|
7811
|
-
'
|
|
7653
|
+
'location'?: LocationModel;
|
|
7812
7654
|
/**
|
|
7813
7655
|
*
|
|
7814
|
-
* @type {
|
|
7656
|
+
* @type {AuditableEntity}
|
|
7815
7657
|
* @memberof HospitalItemModel
|
|
7816
7658
|
*/
|
|
7817
|
-
'
|
|
7659
|
+
'auditableEntity'?: AuditableEntity;
|
|
7660
|
+
}
|
|
7661
|
+
/**
|
|
7662
|
+
*
|
|
7663
|
+
* @export
|
|
7664
|
+
* @interface HospitalModel
|
|
7665
|
+
*/
|
|
7666
|
+
export interface HospitalModel {
|
|
7818
7667
|
/**
|
|
7819
7668
|
*
|
|
7820
|
-
* @type {
|
|
7821
|
-
* @memberof
|
|
7669
|
+
* @type {string}
|
|
7670
|
+
* @memberof HospitalModel
|
|
7822
7671
|
*/
|
|
7823
|
-
'
|
|
7672
|
+
'id'?: string;
|
|
7824
7673
|
/**
|
|
7825
7674
|
*
|
|
7826
|
-
* @type {
|
|
7827
|
-
* @memberof
|
|
7675
|
+
* @type {string}
|
|
7676
|
+
* @memberof HospitalModel
|
|
7828
7677
|
*/
|
|
7829
|
-
'
|
|
7678
|
+
'name'?: string | null;
|
|
7830
7679
|
/**
|
|
7831
7680
|
*
|
|
7832
|
-
* @type {
|
|
7833
|
-
* @memberof
|
|
7681
|
+
* @type {string}
|
|
7682
|
+
* @memberof HospitalModel
|
|
7834
7683
|
*/
|
|
7835
|
-
'
|
|
7684
|
+
'slug'?: string | null;
|
|
7836
7685
|
/**
|
|
7837
7686
|
*
|
|
7838
7687
|
* @type {string}
|
|
7839
|
-
* @memberof
|
|
7688
|
+
* @memberof HospitalModel
|
|
7840
7689
|
*/
|
|
7841
|
-
'
|
|
7690
|
+
'logo'?: string | null;
|
|
7842
7691
|
/**
|
|
7843
7692
|
*
|
|
7844
7693
|
* @type {string}
|
|
7845
|
-
* @memberof
|
|
7694
|
+
* @memberof HospitalModel
|
|
7846
7695
|
*/
|
|
7847
|
-
'
|
|
7696
|
+
'countryId'?: string;
|
|
7848
7697
|
/**
|
|
7849
7698
|
*
|
|
7850
|
-
* @type {
|
|
7851
|
-
* @memberof
|
|
7699
|
+
* @type {string}
|
|
7700
|
+
* @memberof HospitalModel
|
|
7852
7701
|
*/
|
|
7853
|
-
'
|
|
7702
|
+
'countryName'?: string | null;
|
|
7854
7703
|
/**
|
|
7855
7704
|
*
|
|
7856
|
-
* @type {
|
|
7857
|
-
* @memberof
|
|
7705
|
+
* @type {MarketingType}
|
|
7706
|
+
* @memberof HospitalModel
|
|
7858
7707
|
*/
|
|
7859
|
-
'
|
|
7708
|
+
'marketingType'?: MarketingType;
|
|
7860
7709
|
/**
|
|
7861
7710
|
*
|
|
7862
|
-
* @type {
|
|
7863
|
-
* @memberof
|
|
7864
|
-
*/
|
|
7865
|
-
'equipmentsCount'?: number;
|
|
7866
|
-
/**
|
|
7867
|
-
*
|
|
7868
|
-
* @type {number}
|
|
7869
|
-
* @memberof HospitalItemModel
|
|
7870
|
-
*/
|
|
7871
|
-
'reviewsCount'?: number;
|
|
7872
|
-
/**
|
|
7873
|
-
*
|
|
7874
|
-
* @type {number}
|
|
7875
|
-
* @memberof HospitalItemModel
|
|
7876
|
-
*/
|
|
7877
|
-
'departmentsCount'?: number;
|
|
7878
|
-
/**
|
|
7879
|
-
*
|
|
7880
|
-
* @type {number}
|
|
7881
|
-
* @memberof HospitalItemModel
|
|
7882
|
-
*/
|
|
7883
|
-
'specialtiesCount'?: number;
|
|
7884
|
-
/**
|
|
7885
|
-
*
|
|
7886
|
-
* @type {number}
|
|
7887
|
-
* @memberof HospitalItemModel
|
|
7888
|
-
*/
|
|
7889
|
-
'accreditationsCount'?: number;
|
|
7890
|
-
/**
|
|
7891
|
-
*
|
|
7892
|
-
* @type {number}
|
|
7893
|
-
* @memberof HospitalItemModel
|
|
7894
|
-
*/
|
|
7895
|
-
'doctorAffiliationsCount'?: number;
|
|
7896
|
-
/**
|
|
7897
|
-
*
|
|
7898
|
-
* @type {number}
|
|
7899
|
-
* @memberof HospitalItemModel
|
|
7711
|
+
* @type {string}
|
|
7712
|
+
* @memberof HospitalModel
|
|
7900
7713
|
*/
|
|
7901
|
-
'
|
|
7714
|
+
'timeZone'?: string | null;
|
|
7902
7715
|
/**
|
|
7903
7716
|
*
|
|
7904
7717
|
* @type {string}
|
|
7905
|
-
* @memberof
|
|
7718
|
+
* @memberof HospitalModel
|
|
7906
7719
|
*/
|
|
7907
|
-
'
|
|
7720
|
+
'websiteUrl'?: string | null;
|
|
7908
7721
|
/**
|
|
7909
7722
|
*
|
|
7910
7723
|
* @type {boolean}
|
|
7911
|
-
* @memberof
|
|
7724
|
+
* @memberof HospitalModel
|
|
7912
7725
|
*/
|
|
7913
7726
|
'paymentEnabled'?: boolean;
|
|
7914
7727
|
/**
|
|
7915
7728
|
*
|
|
7916
7729
|
* @type {boolean}
|
|
7917
|
-
* @memberof
|
|
7730
|
+
* @memberof HospitalModel
|
|
7918
7731
|
*/
|
|
7919
7732
|
'confirmed'?: boolean;
|
|
7920
|
-
/**
|
|
7921
|
-
*
|
|
7922
|
-
* @type {Array<AwardModel>}
|
|
7923
|
-
* @memberof HospitalItemModel
|
|
7924
|
-
*/
|
|
7925
|
-
'awards'?: Array<AwardModel> | null;
|
|
7926
|
-
/**
|
|
7927
|
-
*
|
|
7928
|
-
* @type {Array<MediaModel>}
|
|
7929
|
-
* @memberof HospitalItemModel
|
|
7930
|
-
*/
|
|
7931
|
-
'medias'?: Array<MediaModel> | null;
|
|
7932
|
-
/**
|
|
7933
|
-
*
|
|
7934
|
-
* @type {Array<AccreditationModel>}
|
|
7935
|
-
* @memberof HospitalItemModel
|
|
7936
|
-
*/
|
|
7937
|
-
'accreditations'?: Array<AccreditationModel> | null;
|
|
7938
|
-
/**
|
|
7939
|
-
*
|
|
7940
|
-
* @type {Array<HospitalEvaluationModel>}
|
|
7941
|
-
* @memberof HospitalItemModel
|
|
7942
|
-
*/
|
|
7943
|
-
'evaluations'?: Array<HospitalEvaluationModel> | null;
|
|
7944
7733
|
/**
|
|
7945
7734
|
*
|
|
7946
7735
|
* @type {LocationModel}
|
|
7947
|
-
* @memberof
|
|
7736
|
+
* @memberof HospitalModel
|
|
7948
7737
|
*/
|
|
7949
7738
|
'location'?: LocationModel;
|
|
7950
7739
|
/**
|
|
7951
7740
|
*
|
|
7952
7741
|
* @type {AuditableEntity}
|
|
7953
|
-
* @memberof HospitalItemModel
|
|
7954
|
-
*/
|
|
7955
|
-
'auditableEntity'?: AuditableEntity;
|
|
7956
|
-
}
|
|
7957
|
-
/**
|
|
7958
|
-
*
|
|
7959
|
-
* @export
|
|
7960
|
-
* @interface HospitalModel
|
|
7961
|
-
*/
|
|
7962
|
-
export interface HospitalModel {
|
|
7963
|
-
/**
|
|
7964
|
-
*
|
|
7965
|
-
* @type {string}
|
|
7966
|
-
* @memberof HospitalModel
|
|
7967
|
-
*/
|
|
7968
|
-
'id'?: string;
|
|
7969
|
-
/**
|
|
7970
|
-
*
|
|
7971
|
-
* @type {string}
|
|
7972
7742
|
* @memberof HospitalModel
|
|
7973
7743
|
*/
|
|
7974
|
-
'
|
|
7744
|
+
'auditableEntity'?: AuditableEntity;
|
|
7975
7745
|
/**
|
|
7976
7746
|
*
|
|
7977
7747
|
* @type {string}
|
|
7978
7748
|
* @memberof HospitalModel
|
|
7979
7749
|
*/
|
|
7980
|
-
'
|
|
7750
|
+
'languageCode'?: string | null;
|
|
7981
7751
|
/**
|
|
7982
7752
|
*
|
|
7983
7753
|
* @type {string}
|
|
@@ -7989,13 +7759,13 @@ export interface HospitalModel {
|
|
|
7989
7759
|
* @type {string}
|
|
7990
7760
|
* @memberof HospitalModel
|
|
7991
7761
|
*/
|
|
7992
|
-
'
|
|
7762
|
+
'overview'?: string | null;
|
|
7993
7763
|
/**
|
|
7994
7764
|
*
|
|
7995
7765
|
* @type {string}
|
|
7996
7766
|
* @memberof HospitalModel
|
|
7997
7767
|
*/
|
|
7998
|
-
'
|
|
7768
|
+
'content'?: string | null;
|
|
7999
7769
|
/**
|
|
8000
7770
|
*
|
|
8001
7771
|
* @type {number}
|
|
@@ -8026,24 +7796,6 @@ export interface HospitalModel {
|
|
|
8026
7796
|
* @memberof HospitalModel
|
|
8027
7797
|
*/
|
|
8028
7798
|
'doctorCount'?: number | null;
|
|
8029
|
-
/**
|
|
8030
|
-
*
|
|
8031
|
-
* @type {string}
|
|
8032
|
-
* @memberof HospitalModel
|
|
8033
|
-
*/
|
|
8034
|
-
'countryId'?: string;
|
|
8035
|
-
/**
|
|
8036
|
-
*
|
|
8037
|
-
* @type {string}
|
|
8038
|
-
* @memberof HospitalModel
|
|
8039
|
-
*/
|
|
8040
|
-
'countryName'?: string | null;
|
|
8041
|
-
/**
|
|
8042
|
-
*
|
|
8043
|
-
* @type {MarketingType}
|
|
8044
|
-
* @memberof HospitalModel
|
|
8045
|
-
*/
|
|
8046
|
-
'marketingType'?: MarketingType;
|
|
8047
7799
|
/**
|
|
8048
7800
|
*
|
|
8049
7801
|
* @type {boolean}
|
|
@@ -8056,138 +7808,6 @@ export interface HospitalModel {
|
|
|
8056
7808
|
* @memberof HospitalModel
|
|
8057
7809
|
*/
|
|
8058
7810
|
'consultationFee'?: number | null;
|
|
8059
|
-
/**
|
|
8060
|
-
*
|
|
8061
|
-
* @type {string}
|
|
8062
|
-
* @memberof HospitalModel
|
|
8063
|
-
*/
|
|
8064
|
-
'timeZone'?: string | null;
|
|
8065
|
-
/**
|
|
8066
|
-
*
|
|
8067
|
-
* @type {string}
|
|
8068
|
-
* @memberof HospitalModel
|
|
8069
|
-
*/
|
|
8070
|
-
'websiteUrl'?: string | null;
|
|
8071
|
-
/**
|
|
8072
|
-
*
|
|
8073
|
-
* @type {number}
|
|
8074
|
-
* @memberof HospitalModel
|
|
8075
|
-
*/
|
|
8076
|
-
'articlesCount'?: number;
|
|
8077
|
-
/**
|
|
8078
|
-
*
|
|
8079
|
-
* @type {number}
|
|
8080
|
-
* @memberof HospitalModel
|
|
8081
|
-
*/
|
|
8082
|
-
'packagesCount'?: number;
|
|
8083
|
-
/**
|
|
8084
|
-
*
|
|
8085
|
-
* @type {number}
|
|
8086
|
-
* @memberof HospitalModel
|
|
8087
|
-
*/
|
|
8088
|
-
'equipmentsCount'?: number;
|
|
8089
|
-
/**
|
|
8090
|
-
*
|
|
8091
|
-
* @type {number}
|
|
8092
|
-
* @memberof HospitalModel
|
|
8093
|
-
*/
|
|
8094
|
-
'reviewsCount'?: number;
|
|
8095
|
-
/**
|
|
8096
|
-
*
|
|
8097
|
-
* @type {number}
|
|
8098
|
-
* @memberof HospitalModel
|
|
8099
|
-
*/
|
|
8100
|
-
'departmentsCount'?: number;
|
|
8101
|
-
/**
|
|
8102
|
-
*
|
|
8103
|
-
* @type {number}
|
|
8104
|
-
* @memberof HospitalModel
|
|
8105
|
-
*/
|
|
8106
|
-
'specialtiesCount'?: number;
|
|
8107
|
-
/**
|
|
8108
|
-
*
|
|
8109
|
-
* @type {number}
|
|
8110
|
-
* @memberof HospitalModel
|
|
8111
|
-
*/
|
|
8112
|
-
'accreditationsCount'?: number;
|
|
8113
|
-
/**
|
|
8114
|
-
*
|
|
8115
|
-
* @type {number}
|
|
8116
|
-
* @memberof HospitalModel
|
|
8117
|
-
*/
|
|
8118
|
-
'doctorAffiliationsCount'?: number;
|
|
8119
|
-
/**
|
|
8120
|
-
*
|
|
8121
|
-
* @type {number}
|
|
8122
|
-
* @memberof HospitalModel
|
|
8123
|
-
*/
|
|
8124
|
-
'managerAffiliationsCount'?: number;
|
|
8125
|
-
/**
|
|
8126
|
-
*
|
|
8127
|
-
* @type {string}
|
|
8128
|
-
* @memberof HospitalModel
|
|
8129
|
-
*/
|
|
8130
|
-
'specialtiesSummerized'?: string | null;
|
|
8131
|
-
/**
|
|
8132
|
-
*
|
|
8133
|
-
* @type {boolean}
|
|
8134
|
-
* @memberof HospitalModel
|
|
8135
|
-
*/
|
|
8136
|
-
'paymentEnabled'?: boolean;
|
|
8137
|
-
/**
|
|
8138
|
-
*
|
|
8139
|
-
* @type {boolean}
|
|
8140
|
-
* @memberof HospitalModel
|
|
8141
|
-
*/
|
|
8142
|
-
'confirmed'?: boolean;
|
|
8143
|
-
/**
|
|
8144
|
-
*
|
|
8145
|
-
* @type {Array<AwardModel>}
|
|
8146
|
-
* @memberof HospitalModel
|
|
8147
|
-
*/
|
|
8148
|
-
'awards'?: Array<AwardModel> | null;
|
|
8149
|
-
/**
|
|
8150
|
-
*
|
|
8151
|
-
* @type {Array<MediaModel>}
|
|
8152
|
-
* @memberof HospitalModel
|
|
8153
|
-
*/
|
|
8154
|
-
'medias'?: Array<MediaModel> | null;
|
|
8155
|
-
/**
|
|
8156
|
-
*
|
|
8157
|
-
* @type {Array<AccreditationModel>}
|
|
8158
|
-
* @memberof HospitalModel
|
|
8159
|
-
*/
|
|
8160
|
-
'accreditations'?: Array<AccreditationModel> | null;
|
|
8161
|
-
/**
|
|
8162
|
-
*
|
|
8163
|
-
* @type {Array<HospitalEvaluationModel>}
|
|
8164
|
-
* @memberof HospitalModel
|
|
8165
|
-
*/
|
|
8166
|
-
'evaluations'?: Array<HospitalEvaluationModel> | null;
|
|
8167
|
-
/**
|
|
8168
|
-
*
|
|
8169
|
-
* @type {LocationModel}
|
|
8170
|
-
* @memberof HospitalModel
|
|
8171
|
-
*/
|
|
8172
|
-
'location'?: LocationModel;
|
|
8173
|
-
/**
|
|
8174
|
-
*
|
|
8175
|
-
* @type {AuditableEntity}
|
|
8176
|
-
* @memberof HospitalModel
|
|
8177
|
-
*/
|
|
8178
|
-
'auditableEntity'?: AuditableEntity;
|
|
8179
|
-
/**
|
|
8180
|
-
*
|
|
8181
|
-
* @type {string}
|
|
8182
|
-
* @memberof HospitalModel
|
|
8183
|
-
*/
|
|
8184
|
-
'languageCode'?: string | null;
|
|
8185
|
-
/**
|
|
8186
|
-
*
|
|
8187
|
-
* @type {string}
|
|
8188
|
-
* @memberof HospitalModel
|
|
8189
|
-
*/
|
|
8190
|
-
'content'?: string | null;
|
|
8191
7811
|
/**
|
|
8192
7812
|
*
|
|
8193
7813
|
* @type {string}
|
|
@@ -8208,22 +7828,10 @@ export interface HospitalModel {
|
|
|
8208
7828
|
'customStyle'?: string | null;
|
|
8209
7829
|
/**
|
|
8210
7830
|
*
|
|
8211
|
-
* @type {Array<
|
|
8212
|
-
* @memberof HospitalModel
|
|
8213
|
-
*/
|
|
8214
|
-
'hospitalWorkingDays'?: Array<WorkingDay> | null;
|
|
8215
|
-
/**
|
|
8216
|
-
*
|
|
8217
|
-
* @type {Array<SnsHandle>}
|
|
8218
|
-
* @memberof HospitalModel
|
|
8219
|
-
*/
|
|
8220
|
-
'hospitalSnsHandles'?: Array<SnsHandle> | null;
|
|
8221
|
-
/**
|
|
8222
|
-
*
|
|
8223
|
-
* @type {Array<LocalizedUrlModel>}
|
|
7831
|
+
* @type {Array<MediaModel>}
|
|
8224
7832
|
* @memberof HospitalModel
|
|
8225
7833
|
*/
|
|
8226
|
-
'
|
|
7834
|
+
'medias'?: Array<MediaModel> | null;
|
|
8227
7835
|
}
|
|
8228
7836
|
/**
|
|
8229
7837
|
*
|
|
@@ -8699,19 +8307,13 @@ export interface HospitalSpecialtyItemModel {
|
|
|
8699
8307
|
* @type {string}
|
|
8700
8308
|
* @memberof HospitalSpecialtyItemModel
|
|
8701
8309
|
*/
|
|
8702
|
-
'
|
|
8703
|
-
/**
|
|
8704
|
-
*
|
|
8705
|
-
* @type {string}
|
|
8706
|
-
* @memberof HospitalSpecialtyItemModel
|
|
8707
|
-
*/
|
|
8708
|
-
'hospitalName'?: string | null;
|
|
8310
|
+
'name'?: string | null;
|
|
8709
8311
|
/**
|
|
8710
8312
|
*
|
|
8711
8313
|
* @type {string}
|
|
8712
8314
|
* @memberof HospitalSpecialtyItemModel
|
|
8713
8315
|
*/
|
|
8714
|
-
'
|
|
8316
|
+
'slug'?: string | null;
|
|
8715
8317
|
/**
|
|
8716
8318
|
*
|
|
8717
8319
|
* @type {string}
|
|
@@ -8729,73 +8331,13 @@ export interface HospitalSpecialtyItemModel {
|
|
|
8729
8331
|
* @type {string}
|
|
8730
8332
|
* @memberof HospitalSpecialtyItemModel
|
|
8731
8333
|
*/
|
|
8732
|
-
'
|
|
8733
|
-
/**
|
|
8734
|
-
*
|
|
8735
|
-
* @type {string}
|
|
8736
|
-
* @memberof HospitalSpecialtyItemModel
|
|
8737
|
-
*/
|
|
8738
|
-
'specialtyTypeName'?: string | null;
|
|
8334
|
+
'specialtySlug'?: string | null;
|
|
8739
8335
|
/**
|
|
8740
8336
|
*
|
|
8741
8337
|
* @type {MarketingType}
|
|
8742
8338
|
* @memberof HospitalSpecialtyItemModel
|
|
8743
8339
|
*/
|
|
8744
8340
|
'marketingType'?: MarketingType;
|
|
8745
|
-
/**
|
|
8746
|
-
*
|
|
8747
|
-
* @type {string}
|
|
8748
|
-
* @memberof HospitalSpecialtyItemModel
|
|
8749
|
-
*/
|
|
8750
|
-
'name'?: string | null;
|
|
8751
|
-
/**
|
|
8752
|
-
*
|
|
8753
|
-
* @type {string}
|
|
8754
|
-
* @memberof HospitalSpecialtyItemModel
|
|
8755
|
-
*/
|
|
8756
|
-
'slug'?: string | null;
|
|
8757
|
-
/**
|
|
8758
|
-
*
|
|
8759
|
-
* @type {string}
|
|
8760
|
-
* @memberof HospitalSpecialtyItemModel
|
|
8761
|
-
*/
|
|
8762
|
-
'description'?: string | null;
|
|
8763
|
-
/**
|
|
8764
|
-
*
|
|
8765
|
-
* @type {number}
|
|
8766
|
-
* @memberof HospitalSpecialtyItemModel
|
|
8767
|
-
*/
|
|
8768
|
-
'serviceCount'?: number;
|
|
8769
|
-
/**
|
|
8770
|
-
*
|
|
8771
|
-
* @type {Array<HospitalServiceItemModel>}
|
|
8772
|
-
* @memberof HospitalSpecialtyItemModel
|
|
8773
|
-
*/
|
|
8774
|
-
'serviceList'?: Array<HospitalServiceItemModel> | null;
|
|
8775
|
-
/**
|
|
8776
|
-
*
|
|
8777
|
-
* @type {string}
|
|
8778
|
-
* @memberof HospitalSpecialtyItemModel
|
|
8779
|
-
*/
|
|
8780
|
-
'photo'?: string | null;
|
|
8781
|
-
/**
|
|
8782
|
-
*
|
|
8783
|
-
* @type {string}
|
|
8784
|
-
* @memberof HospitalSpecialtyItemModel
|
|
8785
|
-
*/
|
|
8786
|
-
'photoThumbnail'?: string | null;
|
|
8787
|
-
/**
|
|
8788
|
-
*
|
|
8789
|
-
* @type {string}
|
|
8790
|
-
* @memberof HospitalSpecialtyItemModel
|
|
8791
|
-
*/
|
|
8792
|
-
'background'?: string | null;
|
|
8793
|
-
/**
|
|
8794
|
-
*
|
|
8795
|
-
* @type {string}
|
|
8796
|
-
* @memberof HospitalSpecialtyItemModel
|
|
8797
|
-
*/
|
|
8798
|
-
'backgroundThumbnail'?: string | null;
|
|
8799
8341
|
/**
|
|
8800
8342
|
*
|
|
8801
8343
|
* @type {number}
|
|
@@ -8808,12 +8350,6 @@ export interface HospitalSpecialtyItemModel {
|
|
|
8808
8350
|
* @memberof HospitalSpecialtyItemModel
|
|
8809
8351
|
*/
|
|
8810
8352
|
'confirmed'?: boolean;
|
|
8811
|
-
/**
|
|
8812
|
-
*
|
|
8813
|
-
* @type {Array<MediaModel>}
|
|
8814
|
-
* @memberof HospitalSpecialtyItemModel
|
|
8815
|
-
*/
|
|
8816
|
-
'medias'?: Array<MediaModel> | null;
|
|
8817
8353
|
/**
|
|
8818
8354
|
*
|
|
8819
8355
|
* @type {AuditableEntity}
|
|
@@ -8838,19 +8374,13 @@ export interface HospitalSpecialtyModel {
|
|
|
8838
8374
|
* @type {string}
|
|
8839
8375
|
* @memberof HospitalSpecialtyModel
|
|
8840
8376
|
*/
|
|
8841
|
-
'
|
|
8842
|
-
/**
|
|
8843
|
-
*
|
|
8844
|
-
* @type {string}
|
|
8845
|
-
* @memberof HospitalSpecialtyModel
|
|
8846
|
-
*/
|
|
8847
|
-
'hospitalName'?: string | null;
|
|
8377
|
+
'name'?: string | null;
|
|
8848
8378
|
/**
|
|
8849
8379
|
*
|
|
8850
8380
|
* @type {string}
|
|
8851
8381
|
* @memberof HospitalSpecialtyModel
|
|
8852
8382
|
*/
|
|
8853
|
-
'
|
|
8383
|
+
'slug'?: string | null;
|
|
8854
8384
|
/**
|
|
8855
8385
|
*
|
|
8856
8386
|
* @type {string}
|
|
@@ -8868,13 +8398,7 @@ export interface HospitalSpecialtyModel {
|
|
|
8868
8398
|
* @type {string}
|
|
8869
8399
|
* @memberof HospitalSpecialtyModel
|
|
8870
8400
|
*/
|
|
8871
|
-
'
|
|
8872
|
-
/**
|
|
8873
|
-
*
|
|
8874
|
-
* @type {string}
|
|
8875
|
-
* @memberof HospitalSpecialtyModel
|
|
8876
|
-
*/
|
|
8877
|
-
'specialtyTypeName'?: string | null;
|
|
8401
|
+
'specialtySlug'?: string | null;
|
|
8878
8402
|
/**
|
|
8879
8403
|
*
|
|
8880
8404
|
* @type {MarketingType}
|
|
@@ -8883,106 +8407,106 @@ export interface HospitalSpecialtyModel {
|
|
|
8883
8407
|
'marketingType'?: MarketingType;
|
|
8884
8408
|
/**
|
|
8885
8409
|
*
|
|
8886
|
-
* @type {
|
|
8410
|
+
* @type {number}
|
|
8887
8411
|
* @memberof HospitalSpecialtyModel
|
|
8888
8412
|
*/
|
|
8889
|
-
'
|
|
8413
|
+
'order'?: number;
|
|
8890
8414
|
/**
|
|
8891
8415
|
*
|
|
8892
|
-
* @type {
|
|
8416
|
+
* @type {boolean}
|
|
8893
8417
|
* @memberof HospitalSpecialtyModel
|
|
8894
8418
|
*/
|
|
8895
|
-
'
|
|
8419
|
+
'confirmed'?: boolean;
|
|
8896
8420
|
/**
|
|
8897
8421
|
*
|
|
8898
|
-
* @type {
|
|
8422
|
+
* @type {AuditableEntity}
|
|
8899
8423
|
* @memberof HospitalSpecialtyModel
|
|
8900
8424
|
*/
|
|
8901
|
-
'
|
|
8425
|
+
'auditableEntity'?: AuditableEntity;
|
|
8902
8426
|
/**
|
|
8903
8427
|
*
|
|
8904
|
-
* @type {
|
|
8428
|
+
* @type {string}
|
|
8905
8429
|
* @memberof HospitalSpecialtyModel
|
|
8906
8430
|
*/
|
|
8907
|
-
'
|
|
8431
|
+
'languageCode'?: string | null;
|
|
8908
8432
|
/**
|
|
8909
8433
|
*
|
|
8910
|
-
* @type {
|
|
8434
|
+
* @type {string}
|
|
8911
8435
|
* @memberof HospitalSpecialtyModel
|
|
8912
8436
|
*/
|
|
8913
|
-
'
|
|
8437
|
+
'description'?: string | null;
|
|
8914
8438
|
/**
|
|
8915
8439
|
*
|
|
8916
8440
|
* @type {string}
|
|
8917
8441
|
* @memberof HospitalSpecialtyModel
|
|
8918
8442
|
*/
|
|
8919
|
-
'
|
|
8443
|
+
'content'?: string | null;
|
|
8920
8444
|
/**
|
|
8921
8445
|
*
|
|
8922
8446
|
* @type {string}
|
|
8923
8447
|
* @memberof HospitalSpecialtyModel
|
|
8924
8448
|
*/
|
|
8925
|
-
'
|
|
8449
|
+
'hospitalId'?: string;
|
|
8926
8450
|
/**
|
|
8927
8451
|
*
|
|
8928
8452
|
* @type {string}
|
|
8929
8453
|
* @memberof HospitalSpecialtyModel
|
|
8930
8454
|
*/
|
|
8931
|
-
'
|
|
8455
|
+
'hospitalName'?: string | null;
|
|
8932
8456
|
/**
|
|
8933
8457
|
*
|
|
8934
8458
|
* @type {string}
|
|
8935
8459
|
* @memberof HospitalSpecialtyModel
|
|
8936
8460
|
*/
|
|
8937
|
-
'
|
|
8461
|
+
'hospitalSlug'?: string | null;
|
|
8938
8462
|
/**
|
|
8939
8463
|
*
|
|
8940
|
-
* @type {
|
|
8464
|
+
* @type {string}
|
|
8941
8465
|
* @memberof HospitalSpecialtyModel
|
|
8942
8466
|
*/
|
|
8943
|
-
'
|
|
8467
|
+
'specialtyTypeId'?: string;
|
|
8944
8468
|
/**
|
|
8945
8469
|
*
|
|
8946
|
-
* @type {
|
|
8470
|
+
* @type {string}
|
|
8947
8471
|
* @memberof HospitalSpecialtyModel
|
|
8948
8472
|
*/
|
|
8949
|
-
'
|
|
8473
|
+
'specialtyTypeName'?: string | null;
|
|
8950
8474
|
/**
|
|
8951
8475
|
*
|
|
8952
|
-
* @type {
|
|
8476
|
+
* @type {string}
|
|
8953
8477
|
* @memberof HospitalSpecialtyModel
|
|
8954
8478
|
*/
|
|
8955
|
-
'
|
|
8479
|
+
'photo'?: string | null;
|
|
8956
8480
|
/**
|
|
8957
8481
|
*
|
|
8958
|
-
* @type {
|
|
8482
|
+
* @type {string}
|
|
8959
8483
|
* @memberof HospitalSpecialtyModel
|
|
8960
8484
|
*/
|
|
8961
|
-
'
|
|
8485
|
+
'photoThumbnail'?: string | null;
|
|
8962
8486
|
/**
|
|
8963
8487
|
*
|
|
8964
8488
|
* @type {string}
|
|
8965
8489
|
* @memberof HospitalSpecialtyModel
|
|
8966
8490
|
*/
|
|
8967
|
-
'
|
|
8491
|
+
'background'?: string | null;
|
|
8968
8492
|
/**
|
|
8969
8493
|
*
|
|
8970
8494
|
* @type {string}
|
|
8971
8495
|
* @memberof HospitalSpecialtyModel
|
|
8972
8496
|
*/
|
|
8973
|
-
'
|
|
8497
|
+
'backgroundThumbnail'?: string | null;
|
|
8974
8498
|
/**
|
|
8975
8499
|
*
|
|
8976
8500
|
* @type {string}
|
|
8977
8501
|
* @memberof HospitalSpecialtyModel
|
|
8978
8502
|
*/
|
|
8979
|
-
'
|
|
8503
|
+
'customStyle'?: string | null;
|
|
8980
8504
|
/**
|
|
8981
8505
|
*
|
|
8982
|
-
* @type {Array<
|
|
8506
|
+
* @type {Array<MediaModel>}
|
|
8983
8507
|
* @memberof HospitalSpecialtyModel
|
|
8984
8508
|
*/
|
|
8985
|
-
'
|
|
8509
|
+
'medias'?: Array<MediaModel> | null;
|
|
8986
8510
|
}
|
|
8987
8511
|
/**
|
|
8988
8512
|
*
|
|
@@ -9008,12 +8532,6 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
9008
8532
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
9009
8533
|
*/
|
|
9010
8534
|
'slug'?: string | null;
|
|
9011
|
-
/**
|
|
9012
|
-
*
|
|
9013
|
-
* @type {string}
|
|
9014
|
-
* @memberof HospitalSpecialtySimpleItemModel
|
|
9015
|
-
*/
|
|
9016
|
-
'description'?: string | null;
|
|
9017
8535
|
/**
|
|
9018
8536
|
*
|
|
9019
8537
|
* @type {string}
|
|
@@ -14204,43 +13722,6 @@ export interface UserModel {
|
|
|
14204
13722
|
*/
|
|
14205
13723
|
'locations'?: Array<UserLocationModel> | null;
|
|
14206
13724
|
}
|
|
14207
|
-
/**
|
|
14208
|
-
*
|
|
14209
|
-
* @export
|
|
14210
|
-
* @interface WorkingDay
|
|
14211
|
-
*/
|
|
14212
|
-
export interface WorkingDay {
|
|
14213
|
-
/**
|
|
14214
|
-
*
|
|
14215
|
-
* @type {string}
|
|
14216
|
-
* @memberof WorkingDay
|
|
14217
|
-
*/
|
|
14218
|
-
'id'?: string;
|
|
14219
|
-
/**
|
|
14220
|
-
*
|
|
14221
|
-
* @type {string}
|
|
14222
|
-
* @memberof WorkingDay
|
|
14223
|
-
*/
|
|
14224
|
-
'dayOfWeek'?: string | null;
|
|
14225
|
-
/**
|
|
14226
|
-
*
|
|
14227
|
-
* @type {Date}
|
|
14228
|
-
* @memberof WorkingDay
|
|
14229
|
-
*/
|
|
14230
|
-
'timeFrom'?: Date;
|
|
14231
|
-
/**
|
|
14232
|
-
*
|
|
14233
|
-
* @type {Date}
|
|
14234
|
-
* @memberof WorkingDay
|
|
14235
|
-
*/
|
|
14236
|
-
'timeTo'?: Date;
|
|
14237
|
-
/**
|
|
14238
|
-
*
|
|
14239
|
-
* @type {boolean}
|
|
14240
|
-
* @memberof WorkingDay
|
|
14241
|
-
*/
|
|
14242
|
-
'checkHoliday'?: boolean;
|
|
14243
|
-
}
|
|
14244
13725
|
/**
|
|
14245
13726
|
*
|
|
14246
13727
|
* @export
|
|
@@ -22350,7 +21831,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
22350
21831
|
* @param {MarketingType} [marketingType]
|
|
22351
21832
|
* @param {string} [specialtyTypeId]
|
|
22352
21833
|
* @param {string} [specialtyId]
|
|
22353
|
-
* @param {string} [serviceId]
|
|
22354
21834
|
* @param {string} [exceptHospitalId]
|
|
22355
21835
|
* @param {boolean} [showHidden]
|
|
22356
21836
|
* @param {string} [languageCode]
|
|
@@ -22363,7 +21843,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
22363
21843
|
* @param {*} [options] Override http request option.
|
|
22364
21844
|
* @throws {RequiredError}
|
|
22365
21845
|
*/
|
|
22366
|
-
apiV1HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined,
|
|
21846
|
+
apiV1HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22367
21847
|
/**
|
|
22368
21848
|
*
|
|
22369
21849
|
* @summary Delete HospitalAccreditation.
|
|
@@ -23039,7 +22519,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
23039
22519
|
* @param {MarketingType} [marketingType]
|
|
23040
22520
|
* @param {string} [specialtyTypeId]
|
|
23041
22521
|
* @param {string} [specialtyId]
|
|
23042
|
-
* @param {string} [serviceId]
|
|
23043
22522
|
* @param {string} [exceptHospitalId]
|
|
23044
22523
|
* @param {boolean} [showHidden]
|
|
23045
22524
|
* @param {string} [languageCode]
|
|
@@ -23052,7 +22531,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
23052
22531
|
* @param {*} [options] Override http request option.
|
|
23053
22532
|
* @throws {RequiredError}
|
|
23054
22533
|
*/
|
|
23055
|
-
apiV1HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined,
|
|
22534
|
+
apiV1HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23056
22535
|
/**
|
|
23057
22536
|
*
|
|
23058
22537
|
* @param {string} slug
|
|
@@ -23078,7 +22557,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
23078
22557
|
* @param {MarketingType} [marketingType]
|
|
23079
22558
|
* @param {string} [specialtyTypeId]
|
|
23080
22559
|
* @param {string} [specialtyId]
|
|
23081
|
-
* @param {string} [serviceId]
|
|
23082
22560
|
* @param {string} [exceptHospitalId]
|
|
23083
22561
|
* @param {boolean} [showHidden]
|
|
23084
22562
|
* @param {string} [languageCode]
|
|
@@ -23091,7 +22569,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
23091
22569
|
* @param {*} [options] Override http request option.
|
|
23092
22570
|
* @throws {RequiredError}
|
|
23093
22571
|
*/
|
|
23094
|
-
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined,
|
|
22572
|
+
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
|
|
23095
22573
|
/**
|
|
23096
22574
|
*
|
|
23097
22575
|
* @summary Delete HospitalAccreditation.
|
|
@@ -23767,7 +23245,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
23767
23245
|
* @param {MarketingType} [marketingType]
|
|
23768
23246
|
* @param {string} [specialtyTypeId]
|
|
23769
23247
|
* @param {string} [specialtyId]
|
|
23770
|
-
* @param {string} [serviceId]
|
|
23771
23248
|
* @param {string} [exceptHospitalId]
|
|
23772
23249
|
* @param {boolean} [showHidden]
|
|
23773
23250
|
* @param {string} [languageCode]
|
|
@@ -23780,7 +23257,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
23780
23257
|
* @param {*} [options] Override http request option.
|
|
23781
23258
|
* @throws {RequiredError}
|
|
23782
23259
|
*/
|
|
23783
|
-
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined,
|
|
23260
|
+
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsSimpleModel>>;
|
|
23784
23261
|
/**
|
|
23785
23262
|
*
|
|
23786
23263
|
* @param {string} slug
|
|
@@ -23806,7 +23283,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23806
23283
|
* @param {MarketingType} [marketingType]
|
|
23807
23284
|
* @param {string} [specialtyTypeId]
|
|
23808
23285
|
* @param {string} [specialtyId]
|
|
23809
|
-
* @param {string} [serviceId]
|
|
23810
23286
|
* @param {string} [exceptHospitalId]
|
|
23811
23287
|
* @param {boolean} [showHidden]
|
|
23812
23288
|
* @param {string} [languageCode]
|
|
@@ -23819,7 +23295,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23819
23295
|
* @param {*} [options] Override http request option.
|
|
23820
23296
|
* @throws {RequiredError}
|
|
23821
23297
|
*/
|
|
23822
|
-
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined,
|
|
23298
|
+
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsModel>;
|
|
23823
23299
|
/**
|
|
23824
23300
|
*
|
|
23825
23301
|
* @summary Delete HospitalAccreditation.
|
|
@@ -24495,7 +23971,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
24495
23971
|
* @param {MarketingType} [marketingType]
|
|
24496
23972
|
* @param {string} [specialtyTypeId]
|
|
24497
23973
|
* @param {string} [specialtyId]
|
|
24498
|
-
* @param {string} [serviceId]
|
|
24499
23974
|
* @param {string} [exceptHospitalId]
|
|
24500
23975
|
* @param {boolean} [showHidden]
|
|
24501
23976
|
* @param {string} [languageCode]
|
|
@@ -24508,7 +23983,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
24508
23983
|
* @param {*} [options] Override http request option.
|
|
24509
23984
|
* @throws {RequiredError}
|
|
24510
23985
|
*/
|
|
24511
|
-
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined,
|
|
23986
|
+
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsSimpleModel>;
|
|
24512
23987
|
/**
|
|
24513
23988
|
*
|
|
24514
23989
|
* @param {string} slug
|
|
@@ -24536,7 +24011,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
24536
24011
|
* @param {MarketingType} [marketingType]
|
|
24537
24012
|
* @param {string} [specialtyTypeId]
|
|
24538
24013
|
* @param {string} [specialtyId]
|
|
24539
|
-
* @param {string} [serviceId]
|
|
24540
24014
|
* @param {string} [exceptHospitalId]
|
|
24541
24015
|
* @param {boolean} [showHidden]
|
|
24542
24016
|
* @param {string} [languageCode]
|
|
@@ -24550,7 +24024,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
24550
24024
|
* @throws {RequiredError}
|
|
24551
24025
|
* @memberof HospitalsApi
|
|
24552
24026
|
*/
|
|
24553
|
-
apiV1HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string,
|
|
24027
|
+
apiV1HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel>>;
|
|
24554
24028
|
/**
|
|
24555
24029
|
*
|
|
24556
24030
|
* @summary Delete HospitalAccreditation.
|
|
@@ -25286,7 +24760,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
25286
24760
|
* @param {MarketingType} [marketingType]
|
|
25287
24761
|
* @param {string} [specialtyTypeId]
|
|
25288
24762
|
* @param {string} [specialtyId]
|
|
25289
|
-
* @param {string} [serviceId]
|
|
25290
24763
|
* @param {string} [exceptHospitalId]
|
|
25291
24764
|
* @param {boolean} [showHidden]
|
|
25292
24765
|
* @param {string} [languageCode]
|
|
@@ -25300,7 +24773,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
25300
24773
|
* @throws {RequiredError}
|
|
25301
24774
|
* @memberof HospitalsApi
|
|
25302
24775
|
*/
|
|
25303
|
-
apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string,
|
|
24776
|
+
apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsSimpleModel>>;
|
|
25304
24777
|
/**
|
|
25305
24778
|
*
|
|
25306
24779
|
* @param {string} slug
|
|
@@ -27124,22 +26597,6 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
27124
26597
|
* @export
|
|
27125
26598
|
*/
|
|
27126
26599
|
export declare const SearchApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
27127
|
-
/**
|
|
27128
|
-
*
|
|
27129
|
-
* @summary Search deals using Azure Search Service
|
|
27130
|
-
* @param {string} [searchTerm]
|
|
27131
|
-
* @param {boolean} [countOnly]
|
|
27132
|
-
* @param {string} [countryId]
|
|
27133
|
-
* @param {string} [hospitalId]
|
|
27134
|
-
* @param {MarketingType} [marketingType]
|
|
27135
|
-
* @param {string} [languageCode]
|
|
27136
|
-
* @param {number} [page]
|
|
27137
|
-
* @param {number} [limit]
|
|
27138
|
-
* @param {Date} [lastRetrieved]
|
|
27139
|
-
* @param {*} [options] Override http request option.
|
|
27140
|
-
* @throws {RequiredError}
|
|
27141
|
-
*/
|
|
27142
|
-
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>;
|
|
27143
26600
|
/**
|
|
27144
26601
|
*
|
|
27145
26602
|
* @summary Update or Re-create deals Azure Search Services Index
|
|
@@ -27148,22 +26605,6 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration
|
|
|
27148
26605
|
* @throws {RequiredError}
|
|
27149
26606
|
*/
|
|
27150
26607
|
apiV1SearchDealsPost: (updateDealsSearchIndexCommand?: UpdateDealsSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27151
|
-
/**
|
|
27152
|
-
*
|
|
27153
|
-
* @summary Search doctors using Azure Search Services
|
|
27154
|
-
* @param {string} [searchTerm]
|
|
27155
|
-
* @param {boolean} [countOnly]
|
|
27156
|
-
* @param {string} [countryId]
|
|
27157
|
-
* @param {string} [hospitalId]
|
|
27158
|
-
* @param {MarketingType} [marketingType]
|
|
27159
|
-
* @param {string} [languageCode]
|
|
27160
|
-
* @param {number} [page]
|
|
27161
|
-
* @param {number} [limit]
|
|
27162
|
-
* @param {Date} [lastRetrieved]
|
|
27163
|
-
* @param {*} [options] Override http request option.
|
|
27164
|
-
* @throws {RequiredError}
|
|
27165
|
-
*/
|
|
27166
|
-
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>;
|
|
27167
26608
|
/**
|
|
27168
26609
|
*
|
|
27169
26610
|
* @summary Update or Re-create doctors Azure Search Services Index
|
|
@@ -27172,38 +26613,6 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration
|
|
|
27172
26613
|
* @throws {RequiredError}
|
|
27173
26614
|
*/
|
|
27174
26615
|
apiV1SearchDoctorsPost: (updateDoctorsSearchIndexCommand?: UpdateDoctorsSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27175
|
-
/**
|
|
27176
|
-
*
|
|
27177
|
-
* @summary Get the number of items in each search index
|
|
27178
|
-
* @param {string} [searchTerm]
|
|
27179
|
-
* @param {boolean} [countOnly]
|
|
27180
|
-
* @param {string} [countryId]
|
|
27181
|
-
* @param {string} [hospitalId]
|
|
27182
|
-
* @param {MarketingType} [marketingType]
|
|
27183
|
-
* @param {string} [languageCode]
|
|
27184
|
-
* @param {number} [page]
|
|
27185
|
-
* @param {number} [limit]
|
|
27186
|
-
* @param {Date} [lastRetrieved]
|
|
27187
|
-
* @param {*} [options] Override http request option.
|
|
27188
|
-
* @throws {RequiredError}
|
|
27189
|
-
*/
|
|
27190
|
-
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>;
|
|
27191
|
-
/**
|
|
27192
|
-
*
|
|
27193
|
-
* @summary Search hospitals using Azure Search Services
|
|
27194
|
-
* @param {string} [searchTerm]
|
|
27195
|
-
* @param {boolean} [countOnly]
|
|
27196
|
-
* @param {string} [countryId]
|
|
27197
|
-
* @param {string} [hospitalId]
|
|
27198
|
-
* @param {MarketingType} [marketingType]
|
|
27199
|
-
* @param {string} [languageCode]
|
|
27200
|
-
* @param {number} [page]
|
|
27201
|
-
* @param {number} [limit]
|
|
27202
|
-
* @param {Date} [lastRetrieved]
|
|
27203
|
-
* @param {*} [options] Override http request option.
|
|
27204
|
-
* @throws {RequiredError}
|
|
27205
|
-
*/
|
|
27206
|
-
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>;
|
|
27207
26616
|
/**
|
|
27208
26617
|
*
|
|
27209
26618
|
* @summary Update or Re-create hospitals Azure Search Services Index
|
|
@@ -27212,22 +26621,6 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration
|
|
|
27212
26621
|
* @throws {RequiredError}
|
|
27213
26622
|
*/
|
|
27214
26623
|
apiV1SearchHospitalsPost: (updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27215
|
-
/**
|
|
27216
|
-
*
|
|
27217
|
-
* @summary Search specialties using Azure Search Service
|
|
27218
|
-
* @param {string} [searchTerm]
|
|
27219
|
-
* @param {boolean} [countOnly]
|
|
27220
|
-
* @param {string} [countryId]
|
|
27221
|
-
* @param {string} [hospitalId]
|
|
27222
|
-
* @param {MarketingType} [marketingType]
|
|
27223
|
-
* @param {string} [languageCode]
|
|
27224
|
-
* @param {number} [page]
|
|
27225
|
-
* @param {number} [limit]
|
|
27226
|
-
* @param {Date} [lastRetrieved]
|
|
27227
|
-
* @param {*} [options] Override http request option.
|
|
27228
|
-
* @throws {RequiredError}
|
|
27229
|
-
*/
|
|
27230
|
-
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>;
|
|
27231
26624
|
/**
|
|
27232
26625
|
*
|
|
27233
26626
|
* @summary Update or Re-create specialties Azure Search Services Index
|
|
@@ -27236,22 +26629,6 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration
|
|
|
27236
26629
|
* @throws {RequiredError}
|
|
27237
26630
|
*/
|
|
27238
26631
|
apiV1SearchSpecialtiesPost: (updateSpecialtiesSearchIndexCommand?: UpdateSpecialtiesSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27239
|
-
/**
|
|
27240
|
-
*
|
|
27241
|
-
* @summary Search specialtyTypes using Azure Search Services
|
|
27242
|
-
* @param {string} [searchTerm]
|
|
27243
|
-
* @param {boolean} [countOnly]
|
|
27244
|
-
* @param {string} [countryId]
|
|
27245
|
-
* @param {string} [hospitalId]
|
|
27246
|
-
* @param {MarketingType} [marketingType]
|
|
27247
|
-
* @param {string} [languageCode]
|
|
27248
|
-
* @param {number} [page]
|
|
27249
|
-
* @param {number} [limit]
|
|
27250
|
-
* @param {Date} [lastRetrieved]
|
|
27251
|
-
* @param {*} [options] Override http request option.
|
|
27252
|
-
* @throws {RequiredError}
|
|
27253
|
-
*/
|
|
27254
|
-
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>;
|
|
27255
26632
|
/**
|
|
27256
26633
|
*
|
|
27257
26634
|
* @summary Update or Re-create specialtyTypes Azure Search Services Index
|
|
@@ -27266,22 +26643,6 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration
|
|
|
27266
26643
|
* @export
|
|
27267
26644
|
*/
|
|
27268
26645
|
export declare const SearchApiFp: (configuration?: Configuration | undefined) => {
|
|
27269
|
-
/**
|
|
27270
|
-
*
|
|
27271
|
-
* @summary Search deals using Azure Search Service
|
|
27272
|
-
* @param {string} [searchTerm]
|
|
27273
|
-
* @param {boolean} [countOnly]
|
|
27274
|
-
* @param {string} [countryId]
|
|
27275
|
-
* @param {string} [hospitalId]
|
|
27276
|
-
* @param {MarketingType} [marketingType]
|
|
27277
|
-
* @param {string} [languageCode]
|
|
27278
|
-
* @param {number} [page]
|
|
27279
|
-
* @param {number} [limit]
|
|
27280
|
-
* @param {Date} [lastRetrieved]
|
|
27281
|
-
* @param {*} [options] Override http request option.
|
|
27282
|
-
* @throws {RequiredError}
|
|
27283
|
-
*/
|
|
27284
|
-
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>>;
|
|
27285
26646
|
/**
|
|
27286
26647
|
*
|
|
27287
26648
|
* @summary Update or Re-create deals Azure Search Services Index
|
|
@@ -27290,22 +26651,6 @@ export declare const SearchApiFp: (configuration?: Configuration | undefined) =>
|
|
|
27290
26651
|
* @throws {RequiredError}
|
|
27291
26652
|
*/
|
|
27292
26653
|
apiV1SearchDealsPost(updateDealsSearchIndexCommand?: UpdateDealsSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
27293
|
-
/**
|
|
27294
|
-
*
|
|
27295
|
-
* @summary Search doctors using Azure Search Services
|
|
27296
|
-
* @param {string} [searchTerm]
|
|
27297
|
-
* @param {boolean} [countOnly]
|
|
27298
|
-
* @param {string} [countryId]
|
|
27299
|
-
* @param {string} [hospitalId]
|
|
27300
|
-
* @param {MarketingType} [marketingType]
|
|
27301
|
-
* @param {string} [languageCode]
|
|
27302
|
-
* @param {number} [page]
|
|
27303
|
-
* @param {number} [limit]
|
|
27304
|
-
* @param {Date} [lastRetrieved]
|
|
27305
|
-
* @param {*} [options] Override http request option.
|
|
27306
|
-
* @throws {RequiredError}
|
|
27307
|
-
*/
|
|
27308
|
-
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>>;
|
|
27309
26654
|
/**
|
|
27310
26655
|
*
|
|
27311
26656
|
* @summary Update or Re-create doctors Azure Search Services Index
|
|
@@ -27314,38 +26659,6 @@ export declare const SearchApiFp: (configuration?: Configuration | undefined) =>
|
|
|
27314
26659
|
* @throws {RequiredError}
|
|
27315
26660
|
*/
|
|
27316
26661
|
apiV1SearchDoctorsPost(updateDoctorsSearchIndexCommand?: UpdateDoctorsSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
27317
|
-
/**
|
|
27318
|
-
*
|
|
27319
|
-
* @summary Get the number of items in each search index
|
|
27320
|
-
* @param {string} [searchTerm]
|
|
27321
|
-
* @param {boolean} [countOnly]
|
|
27322
|
-
* @param {string} [countryId]
|
|
27323
|
-
* @param {string} [hospitalId]
|
|
27324
|
-
* @param {MarketingType} [marketingType]
|
|
27325
|
-
* @param {string} [languageCode]
|
|
27326
|
-
* @param {number} [page]
|
|
27327
|
-
* @param {number} [limit]
|
|
27328
|
-
* @param {Date} [lastRetrieved]
|
|
27329
|
-
* @param {*} [options] Override http request option.
|
|
27330
|
-
* @throws {RequiredError}
|
|
27331
|
-
*/
|
|
27332
|
-
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>>;
|
|
27333
|
-
/**
|
|
27334
|
-
*
|
|
27335
|
-
* @summary Search hospitals using Azure Search Services
|
|
27336
|
-
* @param {string} [searchTerm]
|
|
27337
|
-
* @param {boolean} [countOnly]
|
|
27338
|
-
* @param {string} [countryId]
|
|
27339
|
-
* @param {string} [hospitalId]
|
|
27340
|
-
* @param {MarketingType} [marketingType]
|
|
27341
|
-
* @param {string} [languageCode]
|
|
27342
|
-
* @param {number} [page]
|
|
27343
|
-
* @param {number} [limit]
|
|
27344
|
-
* @param {Date} [lastRetrieved]
|
|
27345
|
-
* @param {*} [options] Override http request option.
|
|
27346
|
-
* @throws {RequiredError}
|
|
27347
|
-
*/
|
|
27348
|
-
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>>;
|
|
27349
26662
|
/**
|
|
27350
26663
|
*
|
|
27351
26664
|
* @summary Update or Re-create hospitals Azure Search Services Index
|
|
@@ -27354,22 +26667,6 @@ export declare const SearchApiFp: (configuration?: Configuration | undefined) =>
|
|
|
27354
26667
|
* @throws {RequiredError}
|
|
27355
26668
|
*/
|
|
27356
26669
|
apiV1SearchHospitalsPost(updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
27357
|
-
/**
|
|
27358
|
-
*
|
|
27359
|
-
* @summary Search specialties using Azure Search Service
|
|
27360
|
-
* @param {string} [searchTerm]
|
|
27361
|
-
* @param {boolean} [countOnly]
|
|
27362
|
-
* @param {string} [countryId]
|
|
27363
|
-
* @param {string} [hospitalId]
|
|
27364
|
-
* @param {MarketingType} [marketingType]
|
|
27365
|
-
* @param {string} [languageCode]
|
|
27366
|
-
* @param {number} [page]
|
|
27367
|
-
* @param {number} [limit]
|
|
27368
|
-
* @param {Date} [lastRetrieved]
|
|
27369
|
-
* @param {*} [options] Override http request option.
|
|
27370
|
-
* @throws {RequiredError}
|
|
27371
|
-
*/
|
|
27372
|
-
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>>;
|
|
27373
26670
|
/**
|
|
27374
26671
|
*
|
|
27375
26672
|
* @summary Update or Re-create specialties Azure Search Services Index
|
|
@@ -27378,22 +26675,6 @@ export declare const SearchApiFp: (configuration?: Configuration | undefined) =>
|
|
|
27378
26675
|
* @throws {RequiredError}
|
|
27379
26676
|
*/
|
|
27380
26677
|
apiV1SearchSpecialtiesPost(updateSpecialtiesSearchIndexCommand?: UpdateSpecialtiesSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
27381
|
-
/**
|
|
27382
|
-
*
|
|
27383
|
-
* @summary Search specialtyTypes using Azure Search Services
|
|
27384
|
-
* @param {string} [searchTerm]
|
|
27385
|
-
* @param {boolean} [countOnly]
|
|
27386
|
-
* @param {string} [countryId]
|
|
27387
|
-
* @param {string} [hospitalId]
|
|
27388
|
-
* @param {MarketingType} [marketingType]
|
|
27389
|
-
* @param {string} [languageCode]
|
|
27390
|
-
* @param {number} [page]
|
|
27391
|
-
* @param {number} [limit]
|
|
27392
|
-
* @param {Date} [lastRetrieved]
|
|
27393
|
-
* @param {*} [options] Override http request option.
|
|
27394
|
-
* @throws {RequiredError}
|
|
27395
|
-
*/
|
|
27396
|
-
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>>;
|
|
27397
26678
|
/**
|
|
27398
26679
|
*
|
|
27399
26680
|
* @summary Update or Re-create specialtyTypes Azure Search Services Index
|
|
@@ -27408,22 +26689,6 @@ export declare const SearchApiFp: (configuration?: Configuration | undefined) =>
|
|
|
27408
26689
|
* @export
|
|
27409
26690
|
*/
|
|
27410
26691
|
export declare const SearchApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
27411
|
-
/**
|
|
27412
|
-
*
|
|
27413
|
-
* @summary Search deals using Azure Search Service
|
|
27414
|
-
* @param {string} [searchTerm]
|
|
27415
|
-
* @param {boolean} [countOnly]
|
|
27416
|
-
* @param {string} [countryId]
|
|
27417
|
-
* @param {string} [hospitalId]
|
|
27418
|
-
* @param {MarketingType} [marketingType]
|
|
27419
|
-
* @param {string} [languageCode]
|
|
27420
|
-
* @param {number} [page]
|
|
27421
|
-
* @param {number} [limit]
|
|
27422
|
-
* @param {Date} [lastRetrieved]
|
|
27423
|
-
* @param {*} [options] Override http request option.
|
|
27424
|
-
* @throws {RequiredError}
|
|
27425
|
-
*/
|
|
27426
|
-
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>;
|
|
27427
26692
|
/**
|
|
27428
26693
|
*
|
|
27429
26694
|
* @summary Update or Re-create deals Azure Search Services Index
|
|
@@ -27432,22 +26697,6 @@ export declare const SearchApiFactory: (configuration?: Configuration | undefine
|
|
|
27432
26697
|
* @throws {RequiredError}
|
|
27433
26698
|
*/
|
|
27434
26699
|
apiV1SearchDealsPost(updateDealsSearchIndexCommand?: UpdateDealsSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
27435
|
-
/**
|
|
27436
|
-
*
|
|
27437
|
-
* @summary Search doctors using Azure Search Services
|
|
27438
|
-
* @param {string} [searchTerm]
|
|
27439
|
-
* @param {boolean} [countOnly]
|
|
27440
|
-
* @param {string} [countryId]
|
|
27441
|
-
* @param {string} [hospitalId]
|
|
27442
|
-
* @param {MarketingType} [marketingType]
|
|
27443
|
-
* @param {string} [languageCode]
|
|
27444
|
-
* @param {number} [page]
|
|
27445
|
-
* @param {number} [limit]
|
|
27446
|
-
* @param {Date} [lastRetrieved]
|
|
27447
|
-
* @param {*} [options] Override http request option.
|
|
27448
|
-
* @throws {RequiredError}
|
|
27449
|
-
*/
|
|
27450
|
-
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>;
|
|
27451
26700
|
/**
|
|
27452
26701
|
*
|
|
27453
26702
|
* @summary Update or Re-create doctors Azure Search Services Index
|
|
@@ -27456,38 +26705,6 @@ export declare const SearchApiFactory: (configuration?: Configuration | undefine
|
|
|
27456
26705
|
* @throws {RequiredError}
|
|
27457
26706
|
*/
|
|
27458
26707
|
apiV1SearchDoctorsPost(updateDoctorsSearchIndexCommand?: UpdateDoctorsSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
27459
|
-
/**
|
|
27460
|
-
*
|
|
27461
|
-
* @summary Get the number of items in each search index
|
|
27462
|
-
* @param {string} [searchTerm]
|
|
27463
|
-
* @param {boolean} [countOnly]
|
|
27464
|
-
* @param {string} [countryId]
|
|
27465
|
-
* @param {string} [hospitalId]
|
|
27466
|
-
* @param {MarketingType} [marketingType]
|
|
27467
|
-
* @param {string} [languageCode]
|
|
27468
|
-
* @param {number} [page]
|
|
27469
|
-
* @param {number} [limit]
|
|
27470
|
-
* @param {Date} [lastRetrieved]
|
|
27471
|
-
* @param {*} [options] Override http request option.
|
|
27472
|
-
* @throws {RequiredError}
|
|
27473
|
-
*/
|
|
27474
|
-
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>;
|
|
27475
|
-
/**
|
|
27476
|
-
*
|
|
27477
|
-
* @summary Search hospitals using Azure Search Services
|
|
27478
|
-
* @param {string} [searchTerm]
|
|
27479
|
-
* @param {boolean} [countOnly]
|
|
27480
|
-
* @param {string} [countryId]
|
|
27481
|
-
* @param {string} [hospitalId]
|
|
27482
|
-
* @param {MarketingType} [marketingType]
|
|
27483
|
-
* @param {string} [languageCode]
|
|
27484
|
-
* @param {number} [page]
|
|
27485
|
-
* @param {number} [limit]
|
|
27486
|
-
* @param {Date} [lastRetrieved]
|
|
27487
|
-
* @param {*} [options] Override http request option.
|
|
27488
|
-
* @throws {RequiredError}
|
|
27489
|
-
*/
|
|
27490
|
-
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>;
|
|
27491
26708
|
/**
|
|
27492
26709
|
*
|
|
27493
26710
|
* @summary Update or Re-create hospitals Azure Search Services Index
|
|
@@ -27496,22 +26713,6 @@ export declare const SearchApiFactory: (configuration?: Configuration | undefine
|
|
|
27496
26713
|
* @throws {RequiredError}
|
|
27497
26714
|
*/
|
|
27498
26715
|
apiV1SearchHospitalsPost(updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
27499
|
-
/**
|
|
27500
|
-
*
|
|
27501
|
-
* @summary Search specialties using Azure Search Service
|
|
27502
|
-
* @param {string} [searchTerm]
|
|
27503
|
-
* @param {boolean} [countOnly]
|
|
27504
|
-
* @param {string} [countryId]
|
|
27505
|
-
* @param {string} [hospitalId]
|
|
27506
|
-
* @param {MarketingType} [marketingType]
|
|
27507
|
-
* @param {string} [languageCode]
|
|
27508
|
-
* @param {number} [page]
|
|
27509
|
-
* @param {number} [limit]
|
|
27510
|
-
* @param {Date} [lastRetrieved]
|
|
27511
|
-
* @param {*} [options] Override http request option.
|
|
27512
|
-
* @throws {RequiredError}
|
|
27513
|
-
*/
|
|
27514
|
-
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>;
|
|
27515
26716
|
/**
|
|
27516
26717
|
*
|
|
27517
26718
|
* @summary Update or Re-create specialties Azure Search Services Index
|
|
@@ -27520,22 +26721,6 @@ export declare const SearchApiFactory: (configuration?: Configuration | undefine
|
|
|
27520
26721
|
* @throws {RequiredError}
|
|
27521
26722
|
*/
|
|
27522
26723
|
apiV1SearchSpecialtiesPost(updateSpecialtiesSearchIndexCommand?: UpdateSpecialtiesSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
27523
|
-
/**
|
|
27524
|
-
*
|
|
27525
|
-
* @summary Search specialtyTypes using Azure Search Services
|
|
27526
|
-
* @param {string} [searchTerm]
|
|
27527
|
-
* @param {boolean} [countOnly]
|
|
27528
|
-
* @param {string} [countryId]
|
|
27529
|
-
* @param {string} [hospitalId]
|
|
27530
|
-
* @param {MarketingType} [marketingType]
|
|
27531
|
-
* @param {string} [languageCode]
|
|
27532
|
-
* @param {number} [page]
|
|
27533
|
-
* @param {number} [limit]
|
|
27534
|
-
* @param {Date} [lastRetrieved]
|
|
27535
|
-
* @param {*} [options] Override http request option.
|
|
27536
|
-
* @throws {RequiredError}
|
|
27537
|
-
*/
|
|
27538
|
-
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>;
|
|
27539
26724
|
/**
|
|
27540
26725
|
*
|
|
27541
26726
|
* @summary Update or Re-create specialtyTypes Azure Search Services Index
|
|
@@ -27552,23 +26737,6 @@ export declare const SearchApiFactory: (configuration?: Configuration | undefine
|
|
|
27552
26737
|
* @extends {BaseAPI}
|
|
27553
26738
|
*/
|
|
27554
26739
|
export declare class SearchApi extends BaseAPI {
|
|
27555
|
-
/**
|
|
27556
|
-
*
|
|
27557
|
-
* @summary Search deals using Azure Search Service
|
|
27558
|
-
* @param {string} [searchTerm]
|
|
27559
|
-
* @param {boolean} [countOnly]
|
|
27560
|
-
* @param {string} [countryId]
|
|
27561
|
-
* @param {string} [hospitalId]
|
|
27562
|
-
* @param {MarketingType} [marketingType]
|
|
27563
|
-
* @param {string} [languageCode]
|
|
27564
|
-
* @param {number} [page]
|
|
27565
|
-
* @param {number} [limit]
|
|
27566
|
-
* @param {Date} [lastRetrieved]
|
|
27567
|
-
* @param {*} [options] Override http request option.
|
|
27568
|
-
* @throws {RequiredError}
|
|
27569
|
-
* @memberof SearchApi
|
|
27570
|
-
*/
|
|
27571
|
-
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>>;
|
|
27572
26740
|
/**
|
|
27573
26741
|
*
|
|
27574
26742
|
* @summary Update or Re-create deals Azure Search Services Index
|
|
@@ -27578,23 +26746,6 @@ export declare class SearchApi extends BaseAPI {
|
|
|
27578
26746
|
* @memberof SearchApi
|
|
27579
26747
|
*/
|
|
27580
26748
|
apiV1SearchDealsPost(updateDealsSearchIndexCommand?: UpdateDealsSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
27581
|
-
/**
|
|
27582
|
-
*
|
|
27583
|
-
* @summary Search doctors using Azure Search Services
|
|
27584
|
-
* @param {string} [searchTerm]
|
|
27585
|
-
* @param {boolean} [countOnly]
|
|
27586
|
-
* @param {string} [countryId]
|
|
27587
|
-
* @param {string} [hospitalId]
|
|
27588
|
-
* @param {MarketingType} [marketingType]
|
|
27589
|
-
* @param {string} [languageCode]
|
|
27590
|
-
* @param {number} [page]
|
|
27591
|
-
* @param {number} [limit]
|
|
27592
|
-
* @param {Date} [lastRetrieved]
|
|
27593
|
-
* @param {*} [options] Override http request option.
|
|
27594
|
-
* @throws {RequiredError}
|
|
27595
|
-
* @memberof SearchApi
|
|
27596
|
-
*/
|
|
27597
|
-
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>>;
|
|
27598
26749
|
/**
|
|
27599
26750
|
*
|
|
27600
26751
|
* @summary Update or Re-create doctors Azure Search Services Index
|
|
@@ -27604,40 +26755,6 @@ export declare class SearchApi extends BaseAPI {
|
|
|
27604
26755
|
* @memberof SearchApi
|
|
27605
26756
|
*/
|
|
27606
26757
|
apiV1SearchDoctorsPost(updateDoctorsSearchIndexCommand?: UpdateDoctorsSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
27607
|
-
/**
|
|
27608
|
-
*
|
|
27609
|
-
* @summary Get the number of items in each search index
|
|
27610
|
-
* @param {string} [searchTerm]
|
|
27611
|
-
* @param {boolean} [countOnly]
|
|
27612
|
-
* @param {string} [countryId]
|
|
27613
|
-
* @param {string} [hospitalId]
|
|
27614
|
-
* @param {MarketingType} [marketingType]
|
|
27615
|
-
* @param {string} [languageCode]
|
|
27616
|
-
* @param {number} [page]
|
|
27617
|
-
* @param {number} [limit]
|
|
27618
|
-
* @param {Date} [lastRetrieved]
|
|
27619
|
-
* @param {*} [options] Override http request option.
|
|
27620
|
-
* @throws {RequiredError}
|
|
27621
|
-
* @memberof SearchApi
|
|
27622
|
-
*/
|
|
27623
|
-
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>>;
|
|
27624
|
-
/**
|
|
27625
|
-
*
|
|
27626
|
-
* @summary Search hospitals using Azure Search Services
|
|
27627
|
-
* @param {string} [searchTerm]
|
|
27628
|
-
* @param {boolean} [countOnly]
|
|
27629
|
-
* @param {string} [countryId]
|
|
27630
|
-
* @param {string} [hospitalId]
|
|
27631
|
-
* @param {MarketingType} [marketingType]
|
|
27632
|
-
* @param {string} [languageCode]
|
|
27633
|
-
* @param {number} [page]
|
|
27634
|
-
* @param {number} [limit]
|
|
27635
|
-
* @param {Date} [lastRetrieved]
|
|
27636
|
-
* @param {*} [options] Override http request option.
|
|
27637
|
-
* @throws {RequiredError}
|
|
27638
|
-
* @memberof SearchApi
|
|
27639
|
-
*/
|
|
27640
|
-
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>>;
|
|
27641
26758
|
/**
|
|
27642
26759
|
*
|
|
27643
26760
|
* @summary Update or Re-create hospitals Azure Search Services Index
|
|
@@ -27647,23 +26764,6 @@ export declare class SearchApi extends BaseAPI {
|
|
|
27647
26764
|
* @memberof SearchApi
|
|
27648
26765
|
*/
|
|
27649
26766
|
apiV1SearchHospitalsPost(updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
27650
|
-
/**
|
|
27651
|
-
*
|
|
27652
|
-
* @summary Search specialties using Azure Search Service
|
|
27653
|
-
* @param {string} [searchTerm]
|
|
27654
|
-
* @param {boolean} [countOnly]
|
|
27655
|
-
* @param {string} [countryId]
|
|
27656
|
-
* @param {string} [hospitalId]
|
|
27657
|
-
* @param {MarketingType} [marketingType]
|
|
27658
|
-
* @param {string} [languageCode]
|
|
27659
|
-
* @param {number} [page]
|
|
27660
|
-
* @param {number} [limit]
|
|
27661
|
-
* @param {Date} [lastRetrieved]
|
|
27662
|
-
* @param {*} [options] Override http request option.
|
|
27663
|
-
* @throws {RequiredError}
|
|
27664
|
-
* @memberof SearchApi
|
|
27665
|
-
*/
|
|
27666
|
-
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>>;
|
|
27667
26767
|
/**
|
|
27668
26768
|
*
|
|
27669
26769
|
* @summary Update or Re-create specialties Azure Search Services Index
|
|
@@ -27673,23 +26773,6 @@ export declare class SearchApi extends BaseAPI {
|
|
|
27673
26773
|
* @memberof SearchApi
|
|
27674
26774
|
*/
|
|
27675
26775
|
apiV1SearchSpecialtiesPost(updateSpecialtiesSearchIndexCommand?: UpdateSpecialtiesSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
27676
|
-
/**
|
|
27677
|
-
*
|
|
27678
|
-
* @summary Search specialtyTypes using Azure Search Services
|
|
27679
|
-
* @param {string} [searchTerm]
|
|
27680
|
-
* @param {boolean} [countOnly]
|
|
27681
|
-
* @param {string} [countryId]
|
|
27682
|
-
* @param {string} [hospitalId]
|
|
27683
|
-
* @param {MarketingType} [marketingType]
|
|
27684
|
-
* @param {string} [languageCode]
|
|
27685
|
-
* @param {number} [page]
|
|
27686
|
-
* @param {number} [limit]
|
|
27687
|
-
* @param {Date} [lastRetrieved]
|
|
27688
|
-
* @param {*} [options] Override http request option.
|
|
27689
|
-
* @throws {RequiredError}
|
|
27690
|
-
* @memberof SearchApi
|
|
27691
|
-
*/
|
|
27692
|
-
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>>;
|
|
27693
26776
|
/**
|
|
27694
26777
|
*
|
|
27695
26778
|
* @summary Update or Re-create specialtyTypes Azure Search Services Index
|