ch-admin-api-client-typescript 2.5.4 → 2.5.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 +593 -152
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +635 -217
- package/package.json +1 -1
- package/src/api.ts +918 -246
package/lib/api.d.ts
CHANGED
|
@@ -771,6 +771,37 @@ export interface AwardModel {
|
|
|
771
771
|
*/
|
|
772
772
|
'date'?: Date;
|
|
773
773
|
}
|
|
774
|
+
/**
|
|
775
|
+
*
|
|
776
|
+
* @export
|
|
777
|
+
* @interface BookingChangeLogModel
|
|
778
|
+
*/
|
|
779
|
+
export interface BookingChangeLogModel {
|
|
780
|
+
/**
|
|
781
|
+
*
|
|
782
|
+
* @type {BookingStatus}
|
|
783
|
+
* @memberof BookingChangeLogModel
|
|
784
|
+
*/
|
|
785
|
+
'status'?: BookingStatus;
|
|
786
|
+
/**
|
|
787
|
+
*
|
|
788
|
+
* @type {string}
|
|
789
|
+
* @memberof BookingChangeLogModel
|
|
790
|
+
*/
|
|
791
|
+
'actorId'?: string;
|
|
792
|
+
/**
|
|
793
|
+
*
|
|
794
|
+
* @type {Date}
|
|
795
|
+
* @memberof BookingChangeLogModel
|
|
796
|
+
*/
|
|
797
|
+
'createdDate'?: Date;
|
|
798
|
+
/**
|
|
799
|
+
*
|
|
800
|
+
* @type {string}
|
|
801
|
+
* @memberof BookingChangeLogModel
|
|
802
|
+
*/
|
|
803
|
+
'actorName'?: string | null;
|
|
804
|
+
}
|
|
774
805
|
/**
|
|
775
806
|
*
|
|
776
807
|
* @export
|
|
@@ -1168,6 +1199,12 @@ export interface BookingModel {
|
|
|
1168
1199
|
* @memberof BookingModel
|
|
1169
1200
|
*/
|
|
1170
1201
|
'completionRate'?: number;
|
|
1202
|
+
/**
|
|
1203
|
+
*
|
|
1204
|
+
* @type {Array<BookingChangeLogModel>}
|
|
1205
|
+
* @memberof BookingModel
|
|
1206
|
+
*/
|
|
1207
|
+
'statusChangeLogs'?: Array<BookingChangeLogModel> | null;
|
|
1171
1208
|
}
|
|
1172
1209
|
/**
|
|
1173
1210
|
*
|
|
@@ -1796,6 +1833,37 @@ export interface ConfirmEmailCommand {
|
|
|
1796
1833
|
*/
|
|
1797
1834
|
'code'?: string | null;
|
|
1798
1835
|
}
|
|
1836
|
+
/**
|
|
1837
|
+
*
|
|
1838
|
+
* @export
|
|
1839
|
+
* @interface ConsultationChangeLogModel
|
|
1840
|
+
*/
|
|
1841
|
+
export interface ConsultationChangeLogModel {
|
|
1842
|
+
/**
|
|
1843
|
+
*
|
|
1844
|
+
* @type {ConsultationStatus}
|
|
1845
|
+
* @memberof ConsultationChangeLogModel
|
|
1846
|
+
*/
|
|
1847
|
+
'status'?: ConsultationStatus;
|
|
1848
|
+
/**
|
|
1849
|
+
*
|
|
1850
|
+
* @type {string}
|
|
1851
|
+
* @memberof ConsultationChangeLogModel
|
|
1852
|
+
*/
|
|
1853
|
+
'actorId'?: string;
|
|
1854
|
+
/**
|
|
1855
|
+
*
|
|
1856
|
+
* @type {Date}
|
|
1857
|
+
* @memberof ConsultationChangeLogModel
|
|
1858
|
+
*/
|
|
1859
|
+
'createdDate'?: Date;
|
|
1860
|
+
/**
|
|
1861
|
+
*
|
|
1862
|
+
* @type {string}
|
|
1863
|
+
* @memberof ConsultationChangeLogModel
|
|
1864
|
+
*/
|
|
1865
|
+
'actorName'?: string | null;
|
|
1866
|
+
}
|
|
1799
1867
|
/**
|
|
1800
1868
|
*
|
|
1801
1869
|
* @export
|
|
@@ -2313,6 +2381,12 @@ export interface ConsultationModel {
|
|
|
2313
2381
|
* @memberof ConsultationModel
|
|
2314
2382
|
*/
|
|
2315
2383
|
'completionRate'?: number;
|
|
2384
|
+
/**
|
|
2385
|
+
*
|
|
2386
|
+
* @type {Array<ConsultationChangeLogModel>}
|
|
2387
|
+
* @memberof ConsultationModel
|
|
2388
|
+
*/
|
|
2389
|
+
'statusChangeLogs'?: Array<ConsultationChangeLogModel> | null;
|
|
2316
2390
|
}
|
|
2317
2391
|
/**
|
|
2318
2392
|
*
|
|
@@ -2441,10 +2515,16 @@ export interface ContributorItemModel {
|
|
|
2441
2515
|
'order'?: number;
|
|
2442
2516
|
/**
|
|
2443
2517
|
*
|
|
2444
|
-
* @type {Array<
|
|
2518
|
+
* @type {Array<LocalizedUrlModel>}
|
|
2445
2519
|
* @memberof ContributorItemModel
|
|
2446
2520
|
*/
|
|
2447
|
-
'
|
|
2521
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
2522
|
+
/**
|
|
2523
|
+
*
|
|
2524
|
+
* @type {boolean}
|
|
2525
|
+
* @memberof ContributorItemModel
|
|
2526
|
+
*/
|
|
2527
|
+
'confirmed'?: boolean;
|
|
2448
2528
|
}
|
|
2449
2529
|
/**
|
|
2450
2530
|
*
|
|
@@ -2520,10 +2600,22 @@ export interface ContributorModel {
|
|
|
2520
2600
|
'order'?: number;
|
|
2521
2601
|
/**
|
|
2522
2602
|
*
|
|
2523
|
-
* @type {Array<
|
|
2603
|
+
* @type {Array<LocalizedUrlModel>}
|
|
2604
|
+
* @memberof ContributorModel
|
|
2605
|
+
*/
|
|
2606
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
2607
|
+
/**
|
|
2608
|
+
*
|
|
2609
|
+
* @type {boolean}
|
|
2610
|
+
* @memberof ContributorModel
|
|
2611
|
+
*/
|
|
2612
|
+
'confirmed'?: boolean;
|
|
2613
|
+
/**
|
|
2614
|
+
*
|
|
2615
|
+
* @type {string}
|
|
2524
2616
|
* @memberof ContributorModel
|
|
2525
2617
|
*/
|
|
2526
|
-
'
|
|
2618
|
+
'languageCode'?: string | null;
|
|
2527
2619
|
}
|
|
2528
2620
|
/**
|
|
2529
2621
|
*
|
|
@@ -2666,6 +2758,12 @@ export interface CountryItemModel {
|
|
|
2666
2758
|
* @memberof CountryItemModel
|
|
2667
2759
|
*/
|
|
2668
2760
|
'auditableEntity'?: AuditableEntity;
|
|
2761
|
+
/**
|
|
2762
|
+
*
|
|
2763
|
+
* @type {Array<LocalizedUrlModel>}
|
|
2764
|
+
* @memberof CountryItemModel
|
|
2765
|
+
*/
|
|
2766
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
2669
2767
|
/**
|
|
2670
2768
|
*
|
|
2671
2769
|
* @type {boolean}
|
|
@@ -2757,12 +2855,24 @@ export interface CountryModel {
|
|
|
2757
2855
|
* @memberof CountryModel
|
|
2758
2856
|
*/
|
|
2759
2857
|
'auditableEntity'?: AuditableEntity;
|
|
2858
|
+
/**
|
|
2859
|
+
*
|
|
2860
|
+
* @type {Array<LocalizedUrlModel>}
|
|
2861
|
+
* @memberof CountryModel
|
|
2862
|
+
*/
|
|
2863
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
2760
2864
|
/**
|
|
2761
2865
|
*
|
|
2762
2866
|
* @type {boolean}
|
|
2763
2867
|
* @memberof CountryModel
|
|
2764
2868
|
*/
|
|
2765
2869
|
'confirmed'?: boolean;
|
|
2870
|
+
/**
|
|
2871
|
+
*
|
|
2872
|
+
* @type {string}
|
|
2873
|
+
* @memberof CountryModel
|
|
2874
|
+
*/
|
|
2875
|
+
'languageCode'?: string | null;
|
|
2766
2876
|
}
|
|
2767
2877
|
/**
|
|
2768
2878
|
*
|
|
@@ -3589,6 +3699,12 @@ export interface CreateFaqCommand {
|
|
|
3589
3699
|
* @memberof CreateFaqCommand
|
|
3590
3700
|
*/
|
|
3591
3701
|
'faqCategoryId'?: string | null;
|
|
3702
|
+
/**
|
|
3703
|
+
*
|
|
3704
|
+
* @type {string}
|
|
3705
|
+
* @memberof CreateFaqCommand
|
|
3706
|
+
*/
|
|
3707
|
+
'hospitalId'?: string;
|
|
3592
3708
|
}
|
|
3593
3709
|
/**
|
|
3594
3710
|
*
|
|
@@ -4327,6 +4443,18 @@ export interface DealItemModel {
|
|
|
4327
4443
|
* @memberof DealItemModel
|
|
4328
4444
|
*/
|
|
4329
4445
|
'auditableEntity'?: AuditableEntity;
|
|
4446
|
+
/**
|
|
4447
|
+
*
|
|
4448
|
+
* @type {Array<LocalizedUrlModel>}
|
|
4449
|
+
* @memberof DealItemModel
|
|
4450
|
+
*/
|
|
4451
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
4452
|
+
/**
|
|
4453
|
+
*
|
|
4454
|
+
* @type {boolean}
|
|
4455
|
+
* @memberof DealItemModel
|
|
4456
|
+
*/
|
|
4457
|
+
'confirmed'?: boolean;
|
|
4330
4458
|
}
|
|
4331
4459
|
/**
|
|
4332
4460
|
*
|
|
@@ -4418,6 +4546,24 @@ export interface DealModel {
|
|
|
4418
4546
|
* @memberof DealModel
|
|
4419
4547
|
*/
|
|
4420
4548
|
'auditableEntity'?: AuditableEntity;
|
|
4549
|
+
/**
|
|
4550
|
+
*
|
|
4551
|
+
* @type {Array<LocalizedUrlModel>}
|
|
4552
|
+
* @memberof DealModel
|
|
4553
|
+
*/
|
|
4554
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
4555
|
+
/**
|
|
4556
|
+
*
|
|
4557
|
+
* @type {boolean}
|
|
4558
|
+
* @memberof DealModel
|
|
4559
|
+
*/
|
|
4560
|
+
'confirmed'?: boolean;
|
|
4561
|
+
/**
|
|
4562
|
+
*
|
|
4563
|
+
* @type {string}
|
|
4564
|
+
* @memberof DealModel
|
|
4565
|
+
*/
|
|
4566
|
+
'languageCode'?: string | null;
|
|
4421
4567
|
}
|
|
4422
4568
|
/**
|
|
4423
4569
|
*
|
|
@@ -5174,6 +5320,12 @@ export interface DoctorItemModel {
|
|
|
5174
5320
|
* @memberof DoctorItemModel
|
|
5175
5321
|
*/
|
|
5176
5322
|
'consultationFee'?: number | null;
|
|
5323
|
+
/**
|
|
5324
|
+
*
|
|
5325
|
+
* @type {Array<LocalizedUrlModel>}
|
|
5326
|
+
* @memberof DoctorItemModel
|
|
5327
|
+
*/
|
|
5328
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
5177
5329
|
/**
|
|
5178
5330
|
*
|
|
5179
5331
|
* @type {boolean}
|
|
@@ -5331,6 +5483,12 @@ export interface DoctorModel {
|
|
|
5331
5483
|
* @memberof DoctorModel
|
|
5332
5484
|
*/
|
|
5333
5485
|
'consultationFee'?: number | null;
|
|
5486
|
+
/**
|
|
5487
|
+
*
|
|
5488
|
+
* @type {Array<LocalizedUrlModel>}
|
|
5489
|
+
* @memberof DoctorModel
|
|
5490
|
+
*/
|
|
5491
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
5334
5492
|
/**
|
|
5335
5493
|
*
|
|
5336
5494
|
* @type {boolean}
|
|
@@ -5859,6 +6017,12 @@ export interface FaqModel {
|
|
|
5859
6017
|
* @memberof FaqModel
|
|
5860
6018
|
*/
|
|
5861
6019
|
'confirmed'?: boolean;
|
|
6020
|
+
/**
|
|
6021
|
+
*
|
|
6022
|
+
* @type {string}
|
|
6023
|
+
* @memberof FaqModel
|
|
6024
|
+
*/
|
|
6025
|
+
'languageCode'?: string | null;
|
|
5862
6026
|
/**
|
|
5863
6027
|
*
|
|
5864
6028
|
* @type {Array<FaqCategoryBreadCrumbModel>}
|
|
@@ -6917,6 +7081,12 @@ export interface HospitalServiceModel {
|
|
|
6917
7081
|
* @memberof HospitalServiceModel
|
|
6918
7082
|
*/
|
|
6919
7083
|
'auditableEntity'?: AuditableEntity;
|
|
7084
|
+
/**
|
|
7085
|
+
*
|
|
7086
|
+
* @type {string}
|
|
7087
|
+
* @memberof HospitalServiceModel
|
|
7088
|
+
*/
|
|
7089
|
+
'languageCode'?: string | null;
|
|
6920
7090
|
}
|
|
6921
7091
|
/**
|
|
6922
7092
|
*
|
|
@@ -9057,6 +9227,12 @@ export interface SpecialtyModel {
|
|
|
9057
9227
|
* @memberof SpecialtyModel
|
|
9058
9228
|
*/
|
|
9059
9229
|
'auditableEntity'?: AuditableEntity;
|
|
9230
|
+
/**
|
|
9231
|
+
*
|
|
9232
|
+
* @type {string}
|
|
9233
|
+
* @memberof SpecialtyModel
|
|
9234
|
+
*/
|
|
9235
|
+
'languageCode'?: string | null;
|
|
9060
9236
|
}
|
|
9061
9237
|
/**
|
|
9062
9238
|
*
|
|
@@ -9203,6 +9379,37 @@ export interface SpecialtyTypeModel {
|
|
|
9203
9379
|
* @memberof SpecialtyTypeModel
|
|
9204
9380
|
*/
|
|
9205
9381
|
'confirmed'?: boolean;
|
|
9382
|
+
/**
|
|
9383
|
+
*
|
|
9384
|
+
* @type {string}
|
|
9385
|
+
* @memberof SpecialtyTypeModel
|
|
9386
|
+
*/
|
|
9387
|
+
'languageCode'?: string | null;
|
|
9388
|
+
}
|
|
9389
|
+
/**
|
|
9390
|
+
*
|
|
9391
|
+
* @export
|
|
9392
|
+
* @interface SpecialtyTypeSimpleItemModel
|
|
9393
|
+
*/
|
|
9394
|
+
export interface SpecialtyTypeSimpleItemModel {
|
|
9395
|
+
/**
|
|
9396
|
+
*
|
|
9397
|
+
* @type {string}
|
|
9398
|
+
* @memberof SpecialtyTypeSimpleItemModel
|
|
9399
|
+
*/
|
|
9400
|
+
'id'?: string;
|
|
9401
|
+
/**
|
|
9402
|
+
*
|
|
9403
|
+
* @type {string}
|
|
9404
|
+
* @memberof SpecialtyTypeSimpleItemModel
|
|
9405
|
+
*/
|
|
9406
|
+
'name'?: string | null;
|
|
9407
|
+
/**
|
|
9408
|
+
*
|
|
9409
|
+
* @type {boolean}
|
|
9410
|
+
* @memberof SpecialtyTypeSimpleItemModel
|
|
9411
|
+
*/
|
|
9412
|
+
'confirmed'?: boolean;
|
|
9206
9413
|
}
|
|
9207
9414
|
/**
|
|
9208
9415
|
*
|
|
@@ -9223,6 +9430,25 @@ export interface SpecialtyTypesModel {
|
|
|
9223
9430
|
*/
|
|
9224
9431
|
'metaData'?: PagedListMetaData;
|
|
9225
9432
|
}
|
|
9433
|
+
/**
|
|
9434
|
+
*
|
|
9435
|
+
* @export
|
|
9436
|
+
* @interface SpecialtyTypesSimpleModel
|
|
9437
|
+
*/
|
|
9438
|
+
export interface SpecialtyTypesSimpleModel {
|
|
9439
|
+
/**
|
|
9440
|
+
*
|
|
9441
|
+
* @type {Array<SpecialtyTypeSimpleItemModel>}
|
|
9442
|
+
* @memberof SpecialtyTypesSimpleModel
|
|
9443
|
+
*/
|
|
9444
|
+
'items'?: Array<SpecialtyTypeSimpleItemModel> | null;
|
|
9445
|
+
/**
|
|
9446
|
+
*
|
|
9447
|
+
* @type {PagedListMetaData}
|
|
9448
|
+
* @memberof SpecialtyTypesSimpleModel
|
|
9449
|
+
*/
|
|
9450
|
+
'metaData'?: PagedListMetaData;
|
|
9451
|
+
}
|
|
9226
9452
|
/**
|
|
9227
9453
|
*
|
|
9228
9454
|
* @export
|
|
@@ -9906,6 +10132,12 @@ export interface UpdateCountryCommand {
|
|
|
9906
10132
|
* @memberof UpdateCountryCommand
|
|
9907
10133
|
*/
|
|
9908
10134
|
'name'?: string | null;
|
|
10135
|
+
/**
|
|
10136
|
+
*
|
|
10137
|
+
* @type {string}
|
|
10138
|
+
* @memberof UpdateCountryCommand
|
|
10139
|
+
*/
|
|
10140
|
+
'slug'?: string | null;
|
|
9909
10141
|
/**
|
|
9910
10142
|
*
|
|
9911
10143
|
* @type {string}
|
|
@@ -9930,12 +10162,6 @@ export interface UpdateCountryCommand {
|
|
|
9930
10162
|
* @memberof UpdateCountryCommand
|
|
9931
10163
|
*/
|
|
9932
10164
|
'confirmed'?: boolean;
|
|
9933
|
-
/**
|
|
9934
|
-
*
|
|
9935
|
-
* @type {Array<MediaModel>}
|
|
9936
|
-
* @memberof UpdateCountryCommand
|
|
9937
|
-
*/
|
|
9938
|
-
'medias'?: Array<MediaModel> | null;
|
|
9939
10165
|
}
|
|
9940
10166
|
/**
|
|
9941
10167
|
*
|
|
@@ -9985,6 +10211,18 @@ export interface UpdateDealCommand {
|
|
|
9985
10211
|
* @memberof UpdateDealCommand
|
|
9986
10212
|
*/
|
|
9987
10213
|
'photoThumbnail'?: string | null;
|
|
10214
|
+
/**
|
|
10215
|
+
*
|
|
10216
|
+
* @type {string}
|
|
10217
|
+
* @memberof UpdateDealCommand
|
|
10218
|
+
*/
|
|
10219
|
+
'languageCode'?: string | null;
|
|
10220
|
+
/**
|
|
10221
|
+
*
|
|
10222
|
+
* @type {boolean}
|
|
10223
|
+
* @memberof UpdateDealCommand
|
|
10224
|
+
*/
|
|
10225
|
+
'confirmed'?: boolean;
|
|
9988
10226
|
}
|
|
9989
10227
|
/**
|
|
9990
10228
|
*
|
|
@@ -10073,12 +10311,6 @@ export interface UpdateDoctorCertificateCommand {
|
|
|
10073
10311
|
* @interface UpdateDoctorCommand
|
|
10074
10312
|
*/
|
|
10075
10313
|
export interface UpdateDoctorCommand {
|
|
10076
|
-
/**
|
|
10077
|
-
*
|
|
10078
|
-
* @type {string}
|
|
10079
|
-
* @memberof UpdateDoctorCommand
|
|
10080
|
-
*/
|
|
10081
|
-
'userName'?: string | null;
|
|
10082
10314
|
/**
|
|
10083
10315
|
*
|
|
10084
10316
|
* @type {string}
|
|
@@ -10269,12 +10501,6 @@ export interface UpdateDoctorSpecialtyCommand {
|
|
|
10269
10501
|
* @interface UpdateFaqCategoryCommand
|
|
10270
10502
|
*/
|
|
10271
10503
|
export interface UpdateFaqCategoryCommand {
|
|
10272
|
-
/**
|
|
10273
|
-
*
|
|
10274
|
-
* @type {string}
|
|
10275
|
-
* @memberof UpdateFaqCategoryCommand
|
|
10276
|
-
*/
|
|
10277
|
-
'id'?: string | null;
|
|
10278
10504
|
/**
|
|
10279
10505
|
*
|
|
10280
10506
|
* @type {string}
|
|
@@ -10806,12 +11032,6 @@ export interface UpdatePlanCommand {
|
|
|
10806
11032
|
* @memberof UpdatePlanCommand
|
|
10807
11033
|
*/
|
|
10808
11034
|
'unitPrice'?: number;
|
|
10809
|
-
/**
|
|
10810
|
-
*
|
|
10811
|
-
* @type {string}
|
|
10812
|
-
* @memberof UpdatePlanCommand
|
|
10813
|
-
*/
|
|
10814
|
-
'stripePriceId'?: string | null;
|
|
10815
11035
|
/**
|
|
10816
11036
|
*
|
|
10817
11037
|
* @type {RecurringInterval}
|
|
@@ -11594,10 +11814,11 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11594
11814
|
* @summary Get Article.
|
|
11595
11815
|
* @param {string} articleId
|
|
11596
11816
|
* @param {string} [languageCode]
|
|
11817
|
+
* @param {boolean} [returnDefaultValue]
|
|
11597
11818
|
* @param {*} [options] Override http request option.
|
|
11598
11819
|
* @throws {RequiredError}
|
|
11599
11820
|
*/
|
|
11600
|
-
apiV1ArticlesArticleIdGet: (articleId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11821
|
+
apiV1ArticlesArticleIdGet: (articleId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11601
11822
|
/**
|
|
11602
11823
|
*
|
|
11603
11824
|
* @summary Get all ArticleMedias.
|
|
@@ -11763,13 +11984,14 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11763
11984
|
* @param {string} [contributorId]
|
|
11764
11985
|
* @param {string} [languageCode]
|
|
11765
11986
|
* @param {boolean} [showHidden]
|
|
11987
|
+
* @param {boolean} [returnDefaultValue]
|
|
11766
11988
|
* @param {number} [page]
|
|
11767
11989
|
* @param {number} [limit]
|
|
11768
11990
|
* @param {Date} [lastRetrieved]
|
|
11769
11991
|
* @param {*} [options] Override http request option.
|
|
11770
11992
|
* @throws {RequiredError}
|
|
11771
11993
|
*/
|
|
11772
|
-
apiV1ArticlesGet: (id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11994
|
+
apiV1ArticlesGet: (id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11773
11995
|
/**
|
|
11774
11996
|
*
|
|
11775
11997
|
* @summary Create a Article.
|
|
@@ -11783,10 +12005,11 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11783
12005
|
* @summary Get Article by slug.
|
|
11784
12006
|
* @param {string} slug
|
|
11785
12007
|
* @param {string} [languageCode]
|
|
12008
|
+
* @param {boolean} [returnDefaultValue]
|
|
11786
12009
|
* @param {*} [options] Override http request option.
|
|
11787
12010
|
* @throws {RequiredError}
|
|
11788
12011
|
*/
|
|
11789
|
-
apiV1ArticlesSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12012
|
+
apiV1ArticlesSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11790
12013
|
};
|
|
11791
12014
|
/**
|
|
11792
12015
|
* ArticlesApi - functional programming interface
|
|
@@ -11861,10 +12084,11 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
11861
12084
|
* @summary Get Article.
|
|
11862
12085
|
* @param {string} articleId
|
|
11863
12086
|
* @param {string} [languageCode]
|
|
12087
|
+
* @param {boolean} [returnDefaultValue]
|
|
11864
12088
|
* @param {*} [options] Override http request option.
|
|
11865
12089
|
* @throws {RequiredError}
|
|
11866
12090
|
*/
|
|
11867
|
-
apiV1ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleModel>>;
|
|
12091
|
+
apiV1ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleModel>>;
|
|
11868
12092
|
/**
|
|
11869
12093
|
*
|
|
11870
12094
|
* @summary Get all ArticleMedias.
|
|
@@ -12030,13 +12254,14 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
12030
12254
|
* @param {string} [contributorId]
|
|
12031
12255
|
* @param {string} [languageCode]
|
|
12032
12256
|
* @param {boolean} [showHidden]
|
|
12257
|
+
* @param {boolean} [returnDefaultValue]
|
|
12033
12258
|
* @param {number} [page]
|
|
12034
12259
|
* @param {number} [limit]
|
|
12035
12260
|
* @param {Date} [lastRetrieved]
|
|
12036
12261
|
* @param {*} [options] Override http request option.
|
|
12037
12262
|
* @throws {RequiredError}
|
|
12038
12263
|
*/
|
|
12039
|
-
apiV1ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticlesModel>>;
|
|
12264
|
+
apiV1ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: 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<ArticlesModel>>;
|
|
12040
12265
|
/**
|
|
12041
12266
|
*
|
|
12042
12267
|
* @summary Create a Article.
|
|
@@ -12050,10 +12275,11 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
12050
12275
|
* @summary Get Article by slug.
|
|
12051
12276
|
* @param {string} slug
|
|
12052
12277
|
* @param {string} [languageCode]
|
|
12278
|
+
* @param {boolean} [returnDefaultValue]
|
|
12053
12279
|
* @param {*} [options] Override http request option.
|
|
12054
12280
|
* @throws {RequiredError}
|
|
12055
12281
|
*/
|
|
12056
|
-
apiV1ArticlesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleModel>>;
|
|
12282
|
+
apiV1ArticlesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleModel>>;
|
|
12057
12283
|
};
|
|
12058
12284
|
/**
|
|
12059
12285
|
* ArticlesApi - factory interface
|
|
@@ -12128,10 +12354,11 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
12128
12354
|
* @summary Get Article.
|
|
12129
12355
|
* @param {string} articleId
|
|
12130
12356
|
* @param {string} [languageCode]
|
|
12357
|
+
* @param {boolean} [returnDefaultValue]
|
|
12131
12358
|
* @param {*} [options] Override http request option.
|
|
12132
12359
|
* @throws {RequiredError}
|
|
12133
12360
|
*/
|
|
12134
|
-
apiV1ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined, options?: any): AxiosPromise<ArticleModel>;
|
|
12361
|
+
apiV1ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<ArticleModel>;
|
|
12135
12362
|
/**
|
|
12136
12363
|
*
|
|
12137
12364
|
* @summary Get all ArticleMedias.
|
|
@@ -12297,13 +12524,14 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
12297
12524
|
* @param {string} [contributorId]
|
|
12298
12525
|
* @param {string} [languageCode]
|
|
12299
12526
|
* @param {boolean} [showHidden]
|
|
12527
|
+
* @param {boolean} [returnDefaultValue]
|
|
12300
12528
|
* @param {number} [page]
|
|
12301
12529
|
* @param {number} [limit]
|
|
12302
12530
|
* @param {Date} [lastRetrieved]
|
|
12303
12531
|
* @param {*} [options] Override http request option.
|
|
12304
12532
|
* @throws {RequiredError}
|
|
12305
12533
|
*/
|
|
12306
|
-
apiV1ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticlesModel>;
|
|
12534
|
+
apiV1ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticlesModel>;
|
|
12307
12535
|
/**
|
|
12308
12536
|
*
|
|
12309
12537
|
* @summary Create a Article.
|
|
@@ -12317,10 +12545,11 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
12317
12545
|
* @summary Get Article by slug.
|
|
12318
12546
|
* @param {string} slug
|
|
12319
12547
|
* @param {string} [languageCode]
|
|
12548
|
+
* @param {boolean} [returnDefaultValue]
|
|
12320
12549
|
* @param {*} [options] Override http request option.
|
|
12321
12550
|
* @throws {RequiredError}
|
|
12322
12551
|
*/
|
|
12323
|
-
apiV1ArticlesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<ArticleModel>;
|
|
12552
|
+
apiV1ArticlesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<ArticleModel>;
|
|
12324
12553
|
};
|
|
12325
12554
|
/**
|
|
12326
12555
|
* ArticlesApi - object-oriented interface
|
|
@@ -12403,11 +12632,12 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
12403
12632
|
* @summary Get Article.
|
|
12404
12633
|
* @param {string} articleId
|
|
12405
12634
|
* @param {string} [languageCode]
|
|
12635
|
+
* @param {boolean} [returnDefaultValue]
|
|
12406
12636
|
* @param {*} [options] Override http request option.
|
|
12407
12637
|
* @throws {RequiredError}
|
|
12408
12638
|
* @memberof ArticlesApi
|
|
12409
12639
|
*/
|
|
12410
|
-
apiV1ArticlesArticleIdGet(articleId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleModel>>;
|
|
12640
|
+
apiV1ArticlesArticleIdGet(articleId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleModel>>;
|
|
12411
12641
|
/**
|
|
12412
12642
|
*
|
|
12413
12643
|
* @summary Get all ArticleMedias.
|
|
@@ -12588,6 +12818,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
12588
12818
|
* @param {string} [contributorId]
|
|
12589
12819
|
* @param {string} [languageCode]
|
|
12590
12820
|
* @param {boolean} [showHidden]
|
|
12821
|
+
* @param {boolean} [returnDefaultValue]
|
|
12591
12822
|
* @param {number} [page]
|
|
12592
12823
|
* @param {number} [limit]
|
|
12593
12824
|
* @param {Date} [lastRetrieved]
|
|
@@ -12595,7 +12826,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
12595
12826
|
* @throws {RequiredError}
|
|
12596
12827
|
* @memberof ArticlesApi
|
|
12597
12828
|
*/
|
|
12598
|
-
apiV1ArticlesGet(id?: string, title?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticlesModel>>;
|
|
12829
|
+
apiV1ArticlesGet(id?: string, title?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticlesModel>>;
|
|
12599
12830
|
/**
|
|
12600
12831
|
*
|
|
12601
12832
|
* @summary Create a Article.
|
|
@@ -12610,11 +12841,12 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
12610
12841
|
* @summary Get Article by slug.
|
|
12611
12842
|
* @param {string} slug
|
|
12612
12843
|
* @param {string} [languageCode]
|
|
12844
|
+
* @param {boolean} [returnDefaultValue]
|
|
12613
12845
|
* @param {*} [options] Override http request option.
|
|
12614
12846
|
* @throws {RequiredError}
|
|
12615
12847
|
* @memberof ArticlesApi
|
|
12616
12848
|
*/
|
|
12617
|
-
apiV1ArticlesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleModel>>;
|
|
12849
|
+
apiV1ArticlesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleModel>>;
|
|
12618
12850
|
}
|
|
12619
12851
|
/**
|
|
12620
12852
|
* BookingsApi - axios parameter creator
|
|
@@ -13741,13 +13973,14 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
13741
13973
|
* @param {boolean} [isOpen]
|
|
13742
13974
|
* @param {boolean} [isCompleted]
|
|
13743
13975
|
* @param {ConsultationStatus} [status]
|
|
13976
|
+
* @param {ConsultationType} [consultationType]
|
|
13744
13977
|
* @param {number} [page]
|
|
13745
13978
|
* @param {number} [limit]
|
|
13746
13979
|
* @param {Date} [lastRetrieved]
|
|
13747
13980
|
* @param {*} [options] Override http request option.
|
|
13748
13981
|
* @throws {RequiredError}
|
|
13749
13982
|
*/
|
|
13750
|
-
apiV1ConsultationsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13983
|
+
apiV1ConsultationsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13751
13984
|
};
|
|
13752
13985
|
/**
|
|
13753
13986
|
* ConsultationsApi - functional programming interface
|
|
@@ -13803,13 +14036,14 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
13803
14036
|
* @param {boolean} [isOpen]
|
|
13804
14037
|
* @param {boolean} [isCompleted]
|
|
13805
14038
|
* @param {ConsultationStatus} [status]
|
|
14039
|
+
* @param {ConsultationType} [consultationType]
|
|
13806
14040
|
* @param {number} [page]
|
|
13807
14041
|
* @param {number} [limit]
|
|
13808
14042
|
* @param {Date} [lastRetrieved]
|
|
13809
14043
|
* @param {*} [options] Override http request option.
|
|
13810
14044
|
* @throws {RequiredError}
|
|
13811
14045
|
*/
|
|
13812
|
-
apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
|
|
14046
|
+
apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
|
|
13813
14047
|
};
|
|
13814
14048
|
/**
|
|
13815
14049
|
* ConsultationsApi - factory interface
|
|
@@ -13865,13 +14099,14 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
|
|
|
13865
14099
|
* @param {boolean} [isOpen]
|
|
13866
14100
|
* @param {boolean} [isCompleted]
|
|
13867
14101
|
* @param {ConsultationStatus} [status]
|
|
14102
|
+
* @param {ConsultationType} [consultationType]
|
|
13868
14103
|
* @param {number} [page]
|
|
13869
14104
|
* @param {number} [limit]
|
|
13870
14105
|
* @param {Date} [lastRetrieved]
|
|
13871
14106
|
* @param {*} [options] Override http request option.
|
|
13872
14107
|
* @throws {RequiredError}
|
|
13873
14108
|
*/
|
|
13874
|
-
apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ConsultationsModel>;
|
|
14109
|
+
apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ConsultationsModel>;
|
|
13875
14110
|
};
|
|
13876
14111
|
/**
|
|
13877
14112
|
* ConsultationsApi - object-oriented interface
|
|
@@ -13934,6 +14169,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
13934
14169
|
* @param {boolean} [isOpen]
|
|
13935
14170
|
* @param {boolean} [isCompleted]
|
|
13936
14171
|
* @param {ConsultationStatus} [status]
|
|
14172
|
+
* @param {ConsultationType} [consultationType]
|
|
13937
14173
|
* @param {number} [page]
|
|
13938
14174
|
* @param {number} [limit]
|
|
13939
14175
|
* @param {Date} [lastRetrieved]
|
|
@@ -13941,7 +14177,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
13941
14177
|
* @throws {RequiredError}
|
|
13942
14178
|
* @memberof ConsultationsApi
|
|
13943
14179
|
*/
|
|
13944
|
-
apiV1ConsultationsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel>>;
|
|
14180
|
+
apiV1ConsultationsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel>>;
|
|
13945
14181
|
}
|
|
13946
14182
|
/**
|
|
13947
14183
|
* ContributorsApi - axios parameter creator
|
|
@@ -14034,9 +14270,9 @@ export declare const ContributorsApiAxiosParamCreator: (configuration?: Configur
|
|
|
14034
14270
|
* @param {string} [email]
|
|
14035
14271
|
* @param {string} [description]
|
|
14036
14272
|
* @param {string} [website]
|
|
14037
|
-
* @param {string} [languageCode]
|
|
14038
14273
|
* @param {string} [hospitalId]
|
|
14039
14274
|
* @param {boolean} [interviewerOnly]
|
|
14275
|
+
* @param {string} [languageCode]
|
|
14040
14276
|
* @param {boolean} [showHidden]
|
|
14041
14277
|
* @param {number} [page]
|
|
14042
14278
|
* @param {number} [limit]
|
|
@@ -14044,7 +14280,7 @@ export declare const ContributorsApiAxiosParamCreator: (configuration?: Configur
|
|
|
14044
14280
|
* @param {*} [options] Override http request option.
|
|
14045
14281
|
* @throws {RequiredError}
|
|
14046
14282
|
*/
|
|
14047
|
-
apiV1ContributorsGet: (id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined,
|
|
14283
|
+
apiV1ContributorsGet: (id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14048
14284
|
/**
|
|
14049
14285
|
*
|
|
14050
14286
|
* @summary Create a Contributor.
|
|
@@ -14154,9 +14390,9 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
|
|
|
14154
14390
|
* @param {string} [email]
|
|
14155
14391
|
* @param {string} [description]
|
|
14156
14392
|
* @param {string} [website]
|
|
14157
|
-
* @param {string} [languageCode]
|
|
14158
14393
|
* @param {string} [hospitalId]
|
|
14159
14394
|
* @param {boolean} [interviewerOnly]
|
|
14395
|
+
* @param {string} [languageCode]
|
|
14160
14396
|
* @param {boolean} [showHidden]
|
|
14161
14397
|
* @param {number} [page]
|
|
14162
14398
|
* @param {number} [limit]
|
|
@@ -14164,7 +14400,7 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
|
|
|
14164
14400
|
* @param {*} [options] Override http request option.
|
|
14165
14401
|
* @throws {RequiredError}
|
|
14166
14402
|
*/
|
|
14167
|
-
apiV1ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined,
|
|
14403
|
+
apiV1ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorsModel>>;
|
|
14168
14404
|
/**
|
|
14169
14405
|
*
|
|
14170
14406
|
* @summary Create a Contributor.
|
|
@@ -14274,9 +14510,9 @@ export declare const ContributorsApiFactory: (configuration?: Configuration | un
|
|
|
14274
14510
|
* @param {string} [email]
|
|
14275
14511
|
* @param {string} [description]
|
|
14276
14512
|
* @param {string} [website]
|
|
14277
|
-
* @param {string} [languageCode]
|
|
14278
14513
|
* @param {string} [hospitalId]
|
|
14279
14514
|
* @param {boolean} [interviewerOnly]
|
|
14515
|
+
* @param {string} [languageCode]
|
|
14280
14516
|
* @param {boolean} [showHidden]
|
|
14281
14517
|
* @param {number} [page]
|
|
14282
14518
|
* @param {number} [limit]
|
|
@@ -14284,7 +14520,7 @@ export declare const ContributorsApiFactory: (configuration?: Configuration | un
|
|
|
14284
14520
|
* @param {*} [options] Override http request option.
|
|
14285
14521
|
* @throws {RequiredError}
|
|
14286
14522
|
*/
|
|
14287
|
-
apiV1ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined,
|
|
14523
|
+
apiV1ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ContributorsModel>;
|
|
14288
14524
|
/**
|
|
14289
14525
|
*
|
|
14290
14526
|
* @summary Create a Contributor.
|
|
@@ -14404,9 +14640,9 @@ export declare class ContributorsApi extends BaseAPI {
|
|
|
14404
14640
|
* @param {string} [email]
|
|
14405
14641
|
* @param {string} [description]
|
|
14406
14642
|
* @param {string} [website]
|
|
14407
|
-
* @param {string} [languageCode]
|
|
14408
14643
|
* @param {string} [hospitalId]
|
|
14409
14644
|
* @param {boolean} [interviewerOnly]
|
|
14645
|
+
* @param {string} [languageCode]
|
|
14410
14646
|
* @param {boolean} [showHidden]
|
|
14411
14647
|
* @param {number} [page]
|
|
14412
14648
|
* @param {number} [limit]
|
|
@@ -14415,7 +14651,7 @@ export declare class ContributorsApi extends BaseAPI {
|
|
|
14415
14651
|
* @throws {RequiredError}
|
|
14416
14652
|
* @memberof ContributorsApi
|
|
14417
14653
|
*/
|
|
14418
|
-
apiV1ContributorsGet(id?: string, name?: string, email?: string, description?: string, website?: string,
|
|
14654
|
+
apiV1ContributorsGet(id?: string, name?: string, email?: string, description?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorsModel>>;
|
|
14419
14655
|
/**
|
|
14420
14656
|
*
|
|
14421
14657
|
* @summary Create a Contributor.
|
|
@@ -14454,10 +14690,11 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14454
14690
|
* @summary Get country.
|
|
14455
14691
|
* @param {string} countryId
|
|
14456
14692
|
* @param {string} [languageCode]
|
|
14693
|
+
* @param {boolean} [returnDefaultValue]
|
|
14457
14694
|
* @param {*} [options] Override http request option.
|
|
14458
14695
|
* @throws {RequiredError}
|
|
14459
14696
|
*/
|
|
14460
|
-
apiV1CountriesCountryIdGet: (countryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14697
|
+
apiV1CountriesCountryIdGet: (countryId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14461
14698
|
/**
|
|
14462
14699
|
*
|
|
14463
14700
|
* @summary Get all CountryMedias.
|
|
@@ -14534,13 +14771,14 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14534
14771
|
* @param {Date} [createdDate]
|
|
14535
14772
|
* @param {string} [languageCode]
|
|
14536
14773
|
* @param {boolean} [showHidden]
|
|
14774
|
+
* @param {boolean} [returnDefaultValue]
|
|
14537
14775
|
* @param {number} [page]
|
|
14538
14776
|
* @param {number} [limit]
|
|
14539
14777
|
* @param {Date} [lastRetrieved]
|
|
14540
14778
|
* @param {*} [options] Override http request option.
|
|
14541
14779
|
* @throws {RequiredError}
|
|
14542
14780
|
*/
|
|
14543
|
-
apiV1CountriesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, createdDate?: Date | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14781
|
+
apiV1CountriesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, createdDate?: Date | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14544
14782
|
/**
|
|
14545
14783
|
*
|
|
14546
14784
|
* @summary Create a country.
|
|
@@ -14554,10 +14792,11 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14554
14792
|
* @summary Get country by slug.
|
|
14555
14793
|
* @param {string} slug
|
|
14556
14794
|
* @param {string} [languageCode]
|
|
14795
|
+
* @param {boolean} [returnDefaultValue]
|
|
14557
14796
|
* @param {*} [options] Override http request option.
|
|
14558
14797
|
* @throws {RequiredError}
|
|
14559
14798
|
*/
|
|
14560
|
-
apiV1CountriesSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14799
|
+
apiV1CountriesSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14561
14800
|
};
|
|
14562
14801
|
/**
|
|
14563
14802
|
* CountriesApi - functional programming interface
|
|
@@ -14577,10 +14816,11 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
|
|
|
14577
14816
|
* @summary Get country.
|
|
14578
14817
|
* @param {string} countryId
|
|
14579
14818
|
* @param {string} [languageCode]
|
|
14819
|
+
* @param {boolean} [returnDefaultValue]
|
|
14580
14820
|
* @param {*} [options] Override http request option.
|
|
14581
14821
|
* @throws {RequiredError}
|
|
14582
14822
|
*/
|
|
14583
|
-
apiV1CountriesCountryIdGet(countryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountryModel>>;
|
|
14823
|
+
apiV1CountriesCountryIdGet(countryId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountryModel>>;
|
|
14584
14824
|
/**
|
|
14585
14825
|
*
|
|
14586
14826
|
* @summary Get all CountryMedias.
|
|
@@ -14657,13 +14897,14 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
|
|
|
14657
14897
|
* @param {Date} [createdDate]
|
|
14658
14898
|
* @param {string} [languageCode]
|
|
14659
14899
|
* @param {boolean} [showHidden]
|
|
14900
|
+
* @param {boolean} [returnDefaultValue]
|
|
14660
14901
|
* @param {number} [page]
|
|
14661
14902
|
* @param {number} [limit]
|
|
14662
14903
|
* @param {Date} [lastRetrieved]
|
|
14663
14904
|
* @param {*} [options] Override http request option.
|
|
14664
14905
|
* @throws {RequiredError}
|
|
14665
14906
|
*/
|
|
14666
|
-
apiV1CountriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, createdDate?: Date | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountriesModel>>;
|
|
14907
|
+
apiV1CountriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, createdDate?: Date | 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<CountriesModel>>;
|
|
14667
14908
|
/**
|
|
14668
14909
|
*
|
|
14669
14910
|
* @summary Create a country.
|
|
@@ -14677,10 +14918,11 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
|
|
|
14677
14918
|
* @summary Get country by slug.
|
|
14678
14919
|
* @param {string} slug
|
|
14679
14920
|
* @param {string} [languageCode]
|
|
14921
|
+
* @param {boolean} [returnDefaultValue]
|
|
14680
14922
|
* @param {*} [options] Override http request option.
|
|
14681
14923
|
* @throws {RequiredError}
|
|
14682
14924
|
*/
|
|
14683
|
-
apiV1CountriesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountryModel>>;
|
|
14925
|
+
apiV1CountriesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountryModel>>;
|
|
14684
14926
|
};
|
|
14685
14927
|
/**
|
|
14686
14928
|
* CountriesApi - factory interface
|
|
@@ -14700,10 +14942,11 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
|
|
|
14700
14942
|
* @summary Get country.
|
|
14701
14943
|
* @param {string} countryId
|
|
14702
14944
|
* @param {string} [languageCode]
|
|
14945
|
+
* @param {boolean} [returnDefaultValue]
|
|
14703
14946
|
* @param {*} [options] Override http request option.
|
|
14704
14947
|
* @throws {RequiredError}
|
|
14705
14948
|
*/
|
|
14706
|
-
apiV1CountriesCountryIdGet(countryId: string, languageCode?: string | undefined, options?: any): AxiosPromise<CountryModel>;
|
|
14949
|
+
apiV1CountriesCountryIdGet(countryId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<CountryModel>;
|
|
14707
14950
|
/**
|
|
14708
14951
|
*
|
|
14709
14952
|
* @summary Get all CountryMedias.
|
|
@@ -14780,13 +15023,14 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
|
|
|
14780
15023
|
* @param {Date} [createdDate]
|
|
14781
15024
|
* @param {string} [languageCode]
|
|
14782
15025
|
* @param {boolean} [showHidden]
|
|
15026
|
+
* @param {boolean} [returnDefaultValue]
|
|
14783
15027
|
* @param {number} [page]
|
|
14784
15028
|
* @param {number} [limit]
|
|
14785
15029
|
* @param {Date} [lastRetrieved]
|
|
14786
15030
|
* @param {*} [options] Override http request option.
|
|
14787
15031
|
* @throws {RequiredError}
|
|
14788
15032
|
*/
|
|
14789
|
-
apiV1CountriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, createdDate?: Date | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<CountriesModel>;
|
|
15033
|
+
apiV1CountriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, createdDate?: Date | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<CountriesModel>;
|
|
14790
15034
|
/**
|
|
14791
15035
|
*
|
|
14792
15036
|
* @summary Create a country.
|
|
@@ -14800,10 +15044,11 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
|
|
|
14800
15044
|
* @summary Get country by slug.
|
|
14801
15045
|
* @param {string} slug
|
|
14802
15046
|
* @param {string} [languageCode]
|
|
15047
|
+
* @param {boolean} [returnDefaultValue]
|
|
14803
15048
|
* @param {*} [options] Override http request option.
|
|
14804
15049
|
* @throws {RequiredError}
|
|
14805
15050
|
*/
|
|
14806
|
-
apiV1CountriesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<CountryModel>;
|
|
15051
|
+
apiV1CountriesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<CountryModel>;
|
|
14807
15052
|
};
|
|
14808
15053
|
/**
|
|
14809
15054
|
* CountriesApi - object-oriented interface
|
|
@@ -14826,11 +15071,12 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
14826
15071
|
* @summary Get country.
|
|
14827
15072
|
* @param {string} countryId
|
|
14828
15073
|
* @param {string} [languageCode]
|
|
15074
|
+
* @param {boolean} [returnDefaultValue]
|
|
14829
15075
|
* @param {*} [options] Override http request option.
|
|
14830
15076
|
* @throws {RequiredError}
|
|
14831
15077
|
* @memberof CountriesApi
|
|
14832
15078
|
*/
|
|
14833
|
-
apiV1CountriesCountryIdGet(countryId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel>>;
|
|
15079
|
+
apiV1CountriesCountryIdGet(countryId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel>>;
|
|
14834
15080
|
/**
|
|
14835
15081
|
*
|
|
14836
15082
|
* @summary Get all CountryMedias.
|
|
@@ -14914,6 +15160,7 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
14914
15160
|
* @param {Date} [createdDate]
|
|
14915
15161
|
* @param {string} [languageCode]
|
|
14916
15162
|
* @param {boolean} [showHidden]
|
|
15163
|
+
* @param {boolean} [returnDefaultValue]
|
|
14917
15164
|
* @param {number} [page]
|
|
14918
15165
|
* @param {number} [limit]
|
|
14919
15166
|
* @param {Date} [lastRetrieved]
|
|
@@ -14921,7 +15168,7 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
14921
15168
|
* @throws {RequiredError}
|
|
14922
15169
|
* @memberof CountriesApi
|
|
14923
15170
|
*/
|
|
14924
|
-
apiV1CountriesGet(id?: string, name?: string, description?: string, createdDate?: Date, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountriesModel>>;
|
|
15171
|
+
apiV1CountriesGet(id?: string, name?: string, description?: string, createdDate?: Date, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountriesModel>>;
|
|
14925
15172
|
/**
|
|
14926
15173
|
*
|
|
14927
15174
|
* @summary Create a country.
|
|
@@ -14936,11 +15183,12 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
14936
15183
|
* @summary Get country by slug.
|
|
14937
15184
|
* @param {string} slug
|
|
14938
15185
|
* @param {string} [languageCode]
|
|
15186
|
+
* @param {boolean} [returnDefaultValue]
|
|
14939
15187
|
* @param {*} [options] Override http request option.
|
|
14940
15188
|
* @throws {RequiredError}
|
|
14941
15189
|
* @memberof CountriesApi
|
|
14942
15190
|
*/
|
|
14943
|
-
apiV1CountriesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel>>;
|
|
15191
|
+
apiV1CountriesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel>>;
|
|
14944
15192
|
}
|
|
14945
15193
|
/**
|
|
14946
15194
|
* DealsApi - axios parameter creator
|
|
@@ -14959,10 +15207,12 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
14959
15207
|
*
|
|
14960
15208
|
* @summary Get deal.
|
|
14961
15209
|
* @param {string} dealId
|
|
15210
|
+
* @param {string} [languageCode]
|
|
15211
|
+
* @param {boolean} [returnDefaultValue]
|
|
14962
15212
|
* @param {*} [options] Override http request option.
|
|
14963
15213
|
* @throws {RequiredError}
|
|
14964
15214
|
*/
|
|
14965
|
-
apiV1DealsDealIdGet: (dealId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15215
|
+
apiV1DealsDealIdGet: (dealId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14966
15216
|
/**
|
|
14967
15217
|
*
|
|
14968
15218
|
* @summary Get all DealPackage.
|
|
@@ -15088,13 +15338,16 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
15088
15338
|
* @param {string} [exceptHospitalId]
|
|
15089
15339
|
* @param {string} [exceptDealId]
|
|
15090
15340
|
* @param {Array<string>} [ids]
|
|
15341
|
+
* @param {string} [languageCode]
|
|
15342
|
+
* @param {boolean} [showHidden]
|
|
15343
|
+
* @param {boolean} [returnDefaultValue]
|
|
15091
15344
|
* @param {number} [page]
|
|
15092
15345
|
* @param {number} [limit]
|
|
15093
15346
|
* @param {Date} [lastRetrieved]
|
|
15094
15347
|
* @param {*} [options] Override http request option.
|
|
15095
15348
|
* @throws {RequiredError}
|
|
15096
15349
|
*/
|
|
15097
|
-
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, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15350
|
+
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>;
|
|
15098
15351
|
/**
|
|
15099
15352
|
*
|
|
15100
15353
|
* @summary Create a deal.
|
|
@@ -15107,10 +15360,12 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
15107
15360
|
*
|
|
15108
15361
|
* @summary Get deal by slug.
|
|
15109
15362
|
* @param {string} slug
|
|
15363
|
+
* @param {string} [languageCode]
|
|
15364
|
+
* @param {boolean} [returnDefaultValue]
|
|
15110
15365
|
* @param {*} [options] Override http request option.
|
|
15111
15366
|
* @throws {RequiredError}
|
|
15112
15367
|
*/
|
|
15113
|
-
apiV1DealsSlugGet: (slug: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15368
|
+
apiV1DealsSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15114
15369
|
};
|
|
15115
15370
|
/**
|
|
15116
15371
|
* DealsApi - functional programming interface
|
|
@@ -15129,10 +15384,12 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
15129
15384
|
*
|
|
15130
15385
|
* @summary Get deal.
|
|
15131
15386
|
* @param {string} dealId
|
|
15387
|
+
* @param {string} [languageCode]
|
|
15388
|
+
* @param {boolean} [returnDefaultValue]
|
|
15132
15389
|
* @param {*} [options] Override http request option.
|
|
15133
15390
|
* @throws {RequiredError}
|
|
15134
15391
|
*/
|
|
15135
|
-
apiV1DealsDealIdGet(dealId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
|
|
15392
|
+
apiV1DealsDealIdGet(dealId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
|
|
15136
15393
|
/**
|
|
15137
15394
|
*
|
|
15138
15395
|
* @summary Get all DealPackage.
|
|
@@ -15258,13 +15515,16 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
15258
15515
|
* @param {string} [exceptHospitalId]
|
|
15259
15516
|
* @param {string} [exceptDealId]
|
|
15260
15517
|
* @param {Array<string>} [ids]
|
|
15518
|
+
* @param {string} [languageCode]
|
|
15519
|
+
* @param {boolean} [showHidden]
|
|
15520
|
+
* @param {boolean} [returnDefaultValue]
|
|
15261
15521
|
* @param {number} [page]
|
|
15262
15522
|
* @param {number} [limit]
|
|
15263
15523
|
* @param {Date} [lastRetrieved]
|
|
15264
15524
|
* @param {*} [options] Override http request option.
|
|
15265
15525
|
* @throws {RequiredError}
|
|
15266
15526
|
*/
|
|
15267
|
-
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, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
|
|
15527
|
+
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>>;
|
|
15268
15528
|
/**
|
|
15269
15529
|
*
|
|
15270
15530
|
* @summary Create a deal.
|
|
@@ -15277,10 +15537,12 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
15277
15537
|
*
|
|
15278
15538
|
* @summary Get deal by slug.
|
|
15279
15539
|
* @param {string} slug
|
|
15540
|
+
* @param {string} [languageCode]
|
|
15541
|
+
* @param {boolean} [returnDefaultValue]
|
|
15280
15542
|
* @param {*} [options] Override http request option.
|
|
15281
15543
|
* @throws {RequiredError}
|
|
15282
15544
|
*/
|
|
15283
|
-
apiV1DealsSlugGet(slug: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
|
|
15545
|
+
apiV1DealsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
|
|
15284
15546
|
};
|
|
15285
15547
|
/**
|
|
15286
15548
|
* DealsApi - factory interface
|
|
@@ -15299,10 +15561,12 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
15299
15561
|
*
|
|
15300
15562
|
* @summary Get deal.
|
|
15301
15563
|
* @param {string} dealId
|
|
15564
|
+
* @param {string} [languageCode]
|
|
15565
|
+
* @param {boolean} [returnDefaultValue]
|
|
15302
15566
|
* @param {*} [options] Override http request option.
|
|
15303
15567
|
* @throws {RequiredError}
|
|
15304
15568
|
*/
|
|
15305
|
-
apiV1DealsDealIdGet(dealId: string, options?: any): AxiosPromise<DealModel>;
|
|
15569
|
+
apiV1DealsDealIdGet(dealId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DealModel>;
|
|
15306
15570
|
/**
|
|
15307
15571
|
*
|
|
15308
15572
|
* @summary Get all DealPackage.
|
|
@@ -15428,13 +15692,16 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
15428
15692
|
* @param {string} [exceptHospitalId]
|
|
15429
15693
|
* @param {string} [exceptDealId]
|
|
15430
15694
|
* @param {Array<string>} [ids]
|
|
15695
|
+
* @param {string} [languageCode]
|
|
15696
|
+
* @param {boolean} [showHidden]
|
|
15697
|
+
* @param {boolean} [returnDefaultValue]
|
|
15431
15698
|
* @param {number} [page]
|
|
15432
15699
|
* @param {number} [limit]
|
|
15433
15700
|
* @param {Date} [lastRetrieved]
|
|
15434
15701
|
* @param {*} [options] Override http request option.
|
|
15435
15702
|
* @throws {RequiredError}
|
|
15436
15703
|
*/
|
|
15437
|
-
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, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
|
|
15704
|
+
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>;
|
|
15438
15705
|
/**
|
|
15439
15706
|
*
|
|
15440
15707
|
* @summary Create a deal.
|
|
@@ -15447,10 +15714,12 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
15447
15714
|
*
|
|
15448
15715
|
* @summary Get deal by slug.
|
|
15449
15716
|
* @param {string} slug
|
|
15717
|
+
* @param {string} [languageCode]
|
|
15718
|
+
* @param {boolean} [returnDefaultValue]
|
|
15450
15719
|
* @param {*} [options] Override http request option.
|
|
15451
15720
|
* @throws {RequiredError}
|
|
15452
15721
|
*/
|
|
15453
|
-
apiV1DealsSlugGet(slug: string, options?: any): AxiosPromise<DealModel>;
|
|
15722
|
+
apiV1DealsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DealModel>;
|
|
15454
15723
|
};
|
|
15455
15724
|
/**
|
|
15456
15725
|
* DealsApi - object-oriented interface
|
|
@@ -15472,11 +15741,13 @@ export declare class DealsApi extends BaseAPI {
|
|
|
15472
15741
|
*
|
|
15473
15742
|
* @summary Get deal.
|
|
15474
15743
|
* @param {string} dealId
|
|
15744
|
+
* @param {string} [languageCode]
|
|
15745
|
+
* @param {boolean} [returnDefaultValue]
|
|
15475
15746
|
* @param {*} [options] Override http request option.
|
|
15476
15747
|
* @throws {RequiredError}
|
|
15477
15748
|
* @memberof DealsApi
|
|
15478
15749
|
*/
|
|
15479
|
-
apiV1DealsDealIdGet(dealId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
|
|
15750
|
+
apiV1DealsDealIdGet(dealId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
|
|
15480
15751
|
/**
|
|
15481
15752
|
*
|
|
15482
15753
|
* @summary Get all DealPackage.
|
|
@@ -15613,6 +15884,9 @@ export declare class DealsApi extends BaseAPI {
|
|
|
15613
15884
|
* @param {string} [exceptHospitalId]
|
|
15614
15885
|
* @param {string} [exceptDealId]
|
|
15615
15886
|
* @param {Array<string>} [ids]
|
|
15887
|
+
* @param {string} [languageCode]
|
|
15888
|
+
* @param {boolean} [showHidden]
|
|
15889
|
+
* @param {boolean} [returnDefaultValue]
|
|
15616
15890
|
* @param {number} [page]
|
|
15617
15891
|
* @param {number} [limit]
|
|
15618
15892
|
* @param {Date} [lastRetrieved]
|
|
@@ -15620,7 +15894,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
15620
15894
|
* @throws {RequiredError}
|
|
15621
15895
|
* @memberof DealsApi
|
|
15622
15896
|
*/
|
|
15623
|
-
apiV1DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
|
|
15897
|
+
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>>;
|
|
15624
15898
|
/**
|
|
15625
15899
|
*
|
|
15626
15900
|
* @summary Create a deal.
|
|
@@ -15634,11 +15908,13 @@ export declare class DealsApi extends BaseAPI {
|
|
|
15634
15908
|
*
|
|
15635
15909
|
* @summary Get deal by slug.
|
|
15636
15910
|
* @param {string} slug
|
|
15911
|
+
* @param {string} [languageCode]
|
|
15912
|
+
* @param {boolean} [returnDefaultValue]
|
|
15637
15913
|
* @param {*} [options] Override http request option.
|
|
15638
15914
|
* @throws {RequiredError}
|
|
15639
15915
|
* @memberof DealsApi
|
|
15640
15916
|
*/
|
|
15641
|
-
apiV1DealsSlugGet(slug: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
|
|
15917
|
+
apiV1DealsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
|
|
15642
15918
|
}
|
|
15643
15919
|
/**
|
|
15644
15920
|
* DoctorsApi - axios parameter creator
|
|
@@ -15802,10 +16078,11 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15802
16078
|
* @summary Get Doctor.
|
|
15803
16079
|
* @param {string} doctorId
|
|
15804
16080
|
* @param {string} [languageCode]
|
|
16081
|
+
* @param {boolean} [returnDefaultValue]
|
|
15805
16082
|
* @param {*} [options] Override http request option.
|
|
15806
16083
|
* @throws {RequiredError}
|
|
15807
16084
|
*/
|
|
15808
|
-
apiV1DoctorsDoctorIdGet: (doctorId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16085
|
+
apiV1DoctorsDoctorIdGet: (doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15809
16086
|
/**
|
|
15810
16087
|
*
|
|
15811
16088
|
* @summary Get all DoctorMedias.
|
|
@@ -15972,6 +16249,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15972
16249
|
* @summary Get all Doctors.
|
|
15973
16250
|
* @param {string} [hospitalId]
|
|
15974
16251
|
* @param {string} [languageCode]
|
|
16252
|
+
* @param {boolean} [returnDefaultValue]
|
|
15975
16253
|
* @param {string} [id]
|
|
15976
16254
|
* @param {string} [fullname]
|
|
15977
16255
|
* @param {string} [email]
|
|
@@ -15985,7 +16263,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15985
16263
|
* @param {*} [options] Override http request option.
|
|
15986
16264
|
* @throws {RequiredError}
|
|
15987
16265
|
*/
|
|
15988
|
-
apiV1DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16266
|
+
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>;
|
|
15989
16267
|
/**
|
|
15990
16268
|
*
|
|
15991
16269
|
* @summary Create a Doctor.
|
|
@@ -15999,10 +16277,11 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15999
16277
|
* @summary Get Doctor by slug.
|
|
16000
16278
|
* @param {string} slug
|
|
16001
16279
|
* @param {string} [languageCode]
|
|
16280
|
+
* @param {boolean} [returnDefaultValue]
|
|
16002
16281
|
* @param {*} [options] Override http request option.
|
|
16003
16282
|
* @throws {RequiredError}
|
|
16004
16283
|
*/
|
|
16005
|
-
apiV1DoctorsSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16284
|
+
apiV1DoctorsSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16006
16285
|
};
|
|
16007
16286
|
/**
|
|
16008
16287
|
* DoctorsApi - functional programming interface
|
|
@@ -16166,10 +16445,11 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16166
16445
|
* @summary Get Doctor.
|
|
16167
16446
|
* @param {string} doctorId
|
|
16168
16447
|
* @param {string} [languageCode]
|
|
16448
|
+
* @param {boolean} [returnDefaultValue]
|
|
16169
16449
|
* @param {*} [options] Override http request option.
|
|
16170
16450
|
* @throws {RequiredError}
|
|
16171
16451
|
*/
|
|
16172
|
-
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
16452
|
+
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
16173
16453
|
/**
|
|
16174
16454
|
*
|
|
16175
16455
|
* @summary Get all DoctorMedias.
|
|
@@ -16336,6 +16616,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16336
16616
|
* @summary Get all Doctors.
|
|
16337
16617
|
* @param {string} [hospitalId]
|
|
16338
16618
|
* @param {string} [languageCode]
|
|
16619
|
+
* @param {boolean} [returnDefaultValue]
|
|
16339
16620
|
* @param {string} [id]
|
|
16340
16621
|
* @param {string} [fullname]
|
|
16341
16622
|
* @param {string} [email]
|
|
@@ -16349,7 +16630,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16349
16630
|
* @param {*} [options] Override http request option.
|
|
16350
16631
|
* @throws {RequiredError}
|
|
16351
16632
|
*/
|
|
16352
|
-
apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
|
|
16633
|
+
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>>;
|
|
16353
16634
|
/**
|
|
16354
16635
|
*
|
|
16355
16636
|
* @summary Create a Doctor.
|
|
@@ -16363,10 +16644,11 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16363
16644
|
* @summary Get Doctor by slug.
|
|
16364
16645
|
* @param {string} slug
|
|
16365
16646
|
* @param {string} [languageCode]
|
|
16647
|
+
* @param {boolean} [returnDefaultValue]
|
|
16366
16648
|
* @param {*} [options] Override http request option.
|
|
16367
16649
|
* @throws {RequiredError}
|
|
16368
16650
|
*/
|
|
16369
|
-
apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
16651
|
+
apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
16370
16652
|
};
|
|
16371
16653
|
/**
|
|
16372
16654
|
* DoctorsApi - factory interface
|
|
@@ -16530,10 +16812,11 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16530
16812
|
* @summary Get Doctor.
|
|
16531
16813
|
* @param {string} doctorId
|
|
16532
16814
|
* @param {string} [languageCode]
|
|
16815
|
+
* @param {boolean} [returnDefaultValue]
|
|
16533
16816
|
* @param {*} [options] Override http request option.
|
|
16534
16817
|
* @throws {RequiredError}
|
|
16535
16818
|
*/
|
|
16536
|
-
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
16819
|
+
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
16537
16820
|
/**
|
|
16538
16821
|
*
|
|
16539
16822
|
* @summary Get all DoctorMedias.
|
|
@@ -16700,6 +16983,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16700
16983
|
* @summary Get all Doctors.
|
|
16701
16984
|
* @param {string} [hospitalId]
|
|
16702
16985
|
* @param {string} [languageCode]
|
|
16986
|
+
* @param {boolean} [returnDefaultValue]
|
|
16703
16987
|
* @param {string} [id]
|
|
16704
16988
|
* @param {string} [fullname]
|
|
16705
16989
|
* @param {string} [email]
|
|
@@ -16713,7 +16997,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16713
16997
|
* @param {*} [options] Override http request option.
|
|
16714
16998
|
* @throws {RequiredError}
|
|
16715
16999
|
*/
|
|
16716
|
-
apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
|
|
17000
|
+
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>;
|
|
16717
17001
|
/**
|
|
16718
17002
|
*
|
|
16719
17003
|
* @summary Create a Doctor.
|
|
@@ -16727,10 +17011,11 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16727
17011
|
* @summary Get Doctor by slug.
|
|
16728
17012
|
* @param {string} slug
|
|
16729
17013
|
* @param {string} [languageCode]
|
|
17014
|
+
* @param {boolean} [returnDefaultValue]
|
|
16730
17015
|
* @param {*} [options] Override http request option.
|
|
16731
17016
|
* @throws {RequiredError}
|
|
16732
17017
|
*/
|
|
16733
|
-
apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
17018
|
+
apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
16734
17019
|
};
|
|
16735
17020
|
/**
|
|
16736
17021
|
* DoctorsApi - object-oriented interface
|
|
@@ -16911,11 +17196,12 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16911
17196
|
* @summary Get Doctor.
|
|
16912
17197
|
* @param {string} doctorId
|
|
16913
17198
|
* @param {string} [languageCode]
|
|
17199
|
+
* @param {boolean} [returnDefaultValue]
|
|
16914
17200
|
* @param {*} [options] Override http request option.
|
|
16915
17201
|
* @throws {RequiredError}
|
|
16916
17202
|
* @memberof DoctorsApi
|
|
16917
17203
|
*/
|
|
16918
|
-
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
17204
|
+
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
16919
17205
|
/**
|
|
16920
17206
|
*
|
|
16921
17207
|
* @summary Get all DoctorMedias.
|
|
@@ -17098,6 +17384,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17098
17384
|
* @summary Get all Doctors.
|
|
17099
17385
|
* @param {string} [hospitalId]
|
|
17100
17386
|
* @param {string} [languageCode]
|
|
17387
|
+
* @param {boolean} [returnDefaultValue]
|
|
17101
17388
|
* @param {string} [id]
|
|
17102
17389
|
* @param {string} [fullname]
|
|
17103
17390
|
* @param {string} [email]
|
|
@@ -17112,7 +17399,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17112
17399
|
* @throws {RequiredError}
|
|
17113
17400
|
* @memberof DoctorsApi
|
|
17114
17401
|
*/
|
|
17115
|
-
apiV1DoctorsGet(hospitalId?: string, languageCode?: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
|
|
17402
|
+
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>>;
|
|
17116
17403
|
/**
|
|
17117
17404
|
*
|
|
17118
17405
|
* @summary Create a Doctor.
|
|
@@ -17127,11 +17414,12 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17127
17414
|
* @summary Get Doctor by slug.
|
|
17128
17415
|
* @param {string} slug
|
|
17129
17416
|
* @param {string} [languageCode]
|
|
17417
|
+
* @param {boolean} [returnDefaultValue]
|
|
17130
17418
|
* @param {*} [options] Override http request option.
|
|
17131
17419
|
* @throws {RequiredError}
|
|
17132
17420
|
* @memberof DoctorsApi
|
|
17133
17421
|
*/
|
|
17134
|
-
apiV1DoctorsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
17422
|
+
apiV1DoctorsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
17135
17423
|
}
|
|
17136
17424
|
/**
|
|
17137
17425
|
* EmailMarketingsApi - axios parameter creator
|
|
@@ -17766,14 +18054,17 @@ export declare const FaqsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
17766
18054
|
* @param {string} [title]
|
|
17767
18055
|
* @param {string} [content]
|
|
17768
18056
|
* @param {string} [categoryId]
|
|
18057
|
+
* @param {string} [hospitalId]
|
|
18058
|
+
* @param {string} [hospitalName]
|
|
17769
18059
|
* @param {string} [languageCode]
|
|
18060
|
+
* @param {boolean} [showHidden]
|
|
17770
18061
|
* @param {number} [page]
|
|
17771
18062
|
* @param {number} [limit]
|
|
17772
18063
|
* @param {Date} [lastRetrieved]
|
|
17773
18064
|
* @param {*} [options] Override http request option.
|
|
17774
18065
|
* @throws {RequiredError}
|
|
17775
18066
|
*/
|
|
17776
|
-
apiV1FaqsGet: (id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18067
|
+
apiV1FaqsGet: (id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17777
18068
|
/**
|
|
17778
18069
|
*
|
|
17779
18070
|
* @summary Create a faq.
|
|
@@ -17880,14 +18171,17 @@ export declare const FaqsApiFp: (configuration?: Configuration | undefined) => {
|
|
|
17880
18171
|
* @param {string} [title]
|
|
17881
18172
|
* @param {string} [content]
|
|
17882
18173
|
* @param {string} [categoryId]
|
|
18174
|
+
* @param {string} [hospitalId]
|
|
18175
|
+
* @param {string} [hospitalName]
|
|
17883
18176
|
* @param {string} [languageCode]
|
|
18177
|
+
* @param {boolean} [showHidden]
|
|
17884
18178
|
* @param {number} [page]
|
|
17885
18179
|
* @param {number} [limit]
|
|
17886
18180
|
* @param {Date} [lastRetrieved]
|
|
17887
18181
|
* @param {*} [options] Override http request option.
|
|
17888
18182
|
* @throws {RequiredError}
|
|
17889
18183
|
*/
|
|
17890
|
-
apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqsModel>>;
|
|
18184
|
+
apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqsModel>>;
|
|
17891
18185
|
/**
|
|
17892
18186
|
*
|
|
17893
18187
|
* @summary Create a faq.
|
|
@@ -17994,14 +18288,17 @@ export declare const FaqsApiFactory: (configuration?: Configuration | undefined,
|
|
|
17994
18288
|
* @param {string} [title]
|
|
17995
18289
|
* @param {string} [content]
|
|
17996
18290
|
* @param {string} [categoryId]
|
|
18291
|
+
* @param {string} [hospitalId]
|
|
18292
|
+
* @param {string} [hospitalName]
|
|
17997
18293
|
* @param {string} [languageCode]
|
|
18294
|
+
* @param {boolean} [showHidden]
|
|
17998
18295
|
* @param {number} [page]
|
|
17999
18296
|
* @param {number} [limit]
|
|
18000
18297
|
* @param {Date} [lastRetrieved]
|
|
18001
18298
|
* @param {*} [options] Override http request option.
|
|
18002
18299
|
* @throws {RequiredError}
|
|
18003
18300
|
*/
|
|
18004
|
-
apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqsModel>;
|
|
18301
|
+
apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqsModel>;
|
|
18005
18302
|
/**
|
|
18006
18303
|
*
|
|
18007
18304
|
* @summary Create a faq.
|
|
@@ -18118,7 +18415,10 @@ export declare class FaqsApi extends BaseAPI {
|
|
|
18118
18415
|
* @param {string} [title]
|
|
18119
18416
|
* @param {string} [content]
|
|
18120
18417
|
* @param {string} [categoryId]
|
|
18418
|
+
* @param {string} [hospitalId]
|
|
18419
|
+
* @param {string} [hospitalName]
|
|
18121
18420
|
* @param {string} [languageCode]
|
|
18421
|
+
* @param {boolean} [showHidden]
|
|
18122
18422
|
* @param {number} [page]
|
|
18123
18423
|
* @param {number} [limit]
|
|
18124
18424
|
* @param {Date} [lastRetrieved]
|
|
@@ -18126,7 +18426,7 @@ export declare class FaqsApi extends BaseAPI {
|
|
|
18126
18426
|
* @throws {RequiredError}
|
|
18127
18427
|
* @memberof FaqsApi
|
|
18128
18428
|
*/
|
|
18129
|
-
apiV1FaqsGet(id?: string, title?: string, content?: string, categoryId?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqsModel>>;
|
|
18429
|
+
apiV1FaqsGet(id?: string, title?: string, content?: string, categoryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqsModel>>;
|
|
18130
18430
|
/**
|
|
18131
18431
|
*
|
|
18132
18432
|
* @summary Create a faq.
|
|
@@ -18168,13 +18468,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18168
18468
|
* @param {boolean} [showHidden]
|
|
18169
18469
|
* @param {string} [languageCode]
|
|
18170
18470
|
* @param {Array<string>} [ids]
|
|
18471
|
+
* @param {boolean} [returnDefaultValue]
|
|
18171
18472
|
* @param {number} [page]
|
|
18172
18473
|
* @param {number} [limit]
|
|
18173
18474
|
* @param {Date} [lastRetrieved]
|
|
18174
18475
|
* @param {*} [options] Override http request option.
|
|
18175
18476
|
* @throws {RequiredError}
|
|
18176
18477
|
*/
|
|
18177
|
-
apiV1HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined, description?: 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, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18478
|
+
apiV1HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined, description?: 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>;
|
|
18178
18479
|
/**
|
|
18179
18480
|
*
|
|
18180
18481
|
* @summary Delete HospitalAccreditation.
|
|
@@ -18379,10 +18680,11 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18379
18680
|
* @summary Get Hospital.
|
|
18380
18681
|
* @param {string} hospitalId
|
|
18381
18682
|
* @param {string} [languageCode]
|
|
18683
|
+
* @param {boolean} [returnDefaultValue]
|
|
18382
18684
|
* @param {*} [options] Override http request option.
|
|
18383
18685
|
* @throws {RequiredError}
|
|
18384
18686
|
*/
|
|
18385
|
-
apiV1HospitalsHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18687
|
+
apiV1HospitalsHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18386
18688
|
/**
|
|
18387
18689
|
*
|
|
18388
18690
|
* @summary Get all HospitalMedias.
|
|
@@ -18515,13 +18817,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18515
18817
|
* @param {Procedure} [procedure]
|
|
18516
18818
|
* @param {Date} [created]
|
|
18517
18819
|
* @param {string} [languageCode]
|
|
18820
|
+
* @param {boolean} [returnDefaultValue]
|
|
18518
18821
|
* @param {number} [page]
|
|
18519
18822
|
* @param {number} [limit]
|
|
18520
18823
|
* @param {Date} [lastRetrieved]
|
|
18521
18824
|
* @param {*} [options] Override http request option.
|
|
18522
18825
|
* @throws {RequiredError}
|
|
18523
18826
|
*/
|
|
18524
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet: (hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18827
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet: (hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18525
18828
|
/**
|
|
18526
18829
|
*
|
|
18527
18830
|
* @summary Create HospitalService.
|
|
@@ -18549,10 +18852,11 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18549
18852
|
* @param {string} specialtyId
|
|
18550
18853
|
* @param {string} serviceId
|
|
18551
18854
|
* @param {string} [languageCode]
|
|
18855
|
+
* @param {boolean} [returnDefaultValue]
|
|
18552
18856
|
* @param {*} [options] Override http request option.
|
|
18553
18857
|
* @throws {RequiredError}
|
|
18554
18858
|
*/
|
|
18555
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet: (hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18859
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet: (hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18556
18860
|
/**
|
|
18557
18861
|
*
|
|
18558
18862
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -18648,22 +18952,24 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18648
18952
|
* @param {boolean} [showHidden]
|
|
18649
18953
|
* @param {string} [languageCode]
|
|
18650
18954
|
* @param {Array<string>} [ids]
|
|
18955
|
+
* @param {boolean} [returnDefaultValue]
|
|
18651
18956
|
* @param {number} [page]
|
|
18652
18957
|
* @param {number} [limit]
|
|
18653
18958
|
* @param {Date} [lastRetrieved]
|
|
18654
18959
|
* @param {*} [options] Override http request option.
|
|
18655
18960
|
* @throws {RequiredError}
|
|
18656
18961
|
*/
|
|
18657
|
-
apiV1HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, description?: 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, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18962
|
+
apiV1HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, description?: 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>;
|
|
18658
18963
|
/**
|
|
18659
18964
|
*
|
|
18660
18965
|
* @summary Get Hospital by slug.
|
|
18661
18966
|
* @param {string} slug
|
|
18662
18967
|
* @param {string} [languageCode]
|
|
18968
|
+
* @param {boolean} [returnDefaultValue]
|
|
18663
18969
|
* @param {*} [options] Override http request option.
|
|
18664
18970
|
* @throws {RequiredError}
|
|
18665
18971
|
*/
|
|
18666
|
-
apiV1HospitalsSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18972
|
+
apiV1HospitalsSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18667
18973
|
};
|
|
18668
18974
|
/**
|
|
18669
18975
|
* HospitalsApi - functional programming interface
|
|
@@ -18686,13 +18992,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
18686
18992
|
* @param {boolean} [showHidden]
|
|
18687
18993
|
* @param {string} [languageCode]
|
|
18688
18994
|
* @param {Array<string>} [ids]
|
|
18995
|
+
* @param {boolean} [returnDefaultValue]
|
|
18689
18996
|
* @param {number} [page]
|
|
18690
18997
|
* @param {number} [limit]
|
|
18691
18998
|
* @param {Date} [lastRetrieved]
|
|
18692
18999
|
* @param {*} [options] Override http request option.
|
|
18693
19000
|
* @throws {RequiredError}
|
|
18694
19001
|
*/
|
|
18695
|
-
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, description?: 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, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
|
|
19002
|
+
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, description?: 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>>;
|
|
18696
19003
|
/**
|
|
18697
19004
|
*
|
|
18698
19005
|
* @summary Delete HospitalAccreditation.
|
|
@@ -18897,10 +19204,11 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
18897
19204
|
* @summary Get Hospital.
|
|
18898
19205
|
* @param {string} hospitalId
|
|
18899
19206
|
* @param {string} [languageCode]
|
|
19207
|
+
* @param {boolean} [returnDefaultValue]
|
|
18900
19208
|
* @param {*} [options] Override http request option.
|
|
18901
19209
|
* @throws {RequiredError}
|
|
18902
19210
|
*/
|
|
18903
|
-
apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
|
|
19211
|
+
apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
|
|
18904
19212
|
/**
|
|
18905
19213
|
*
|
|
18906
19214
|
* @summary Get all HospitalMedias.
|
|
@@ -19033,13 +19341,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19033
19341
|
* @param {Procedure} [procedure]
|
|
19034
19342
|
* @param {Date} [created]
|
|
19035
19343
|
* @param {string} [languageCode]
|
|
19344
|
+
* @param {boolean} [returnDefaultValue]
|
|
19036
19345
|
* @param {number} [page]
|
|
19037
19346
|
* @param {number} [limit]
|
|
19038
19347
|
* @param {Date} [lastRetrieved]
|
|
19039
19348
|
* @param {*} [options] Override http request option.
|
|
19040
19349
|
* @throws {RequiredError}
|
|
19041
19350
|
*/
|
|
19042
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
|
|
19351
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: 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<HospitalServicesModel>>;
|
|
19043
19352
|
/**
|
|
19044
19353
|
*
|
|
19045
19354
|
* @summary Create HospitalService.
|
|
@@ -19067,10 +19376,11 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19067
19376
|
* @param {string} specialtyId
|
|
19068
19377
|
* @param {string} serviceId
|
|
19069
19378
|
* @param {string} [languageCode]
|
|
19379
|
+
* @param {boolean} [returnDefaultValue]
|
|
19070
19380
|
* @param {*} [options] Override http request option.
|
|
19071
19381
|
* @throws {RequiredError}
|
|
19072
19382
|
*/
|
|
19073
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
19383
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
19074
19384
|
/**
|
|
19075
19385
|
*
|
|
19076
19386
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -19166,22 +19476,24 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19166
19476
|
* @param {boolean} [showHidden]
|
|
19167
19477
|
* @param {string} [languageCode]
|
|
19168
19478
|
* @param {Array<string>} [ids]
|
|
19479
|
+
* @param {boolean} [returnDefaultValue]
|
|
19169
19480
|
* @param {number} [page]
|
|
19170
19481
|
* @param {number} [limit]
|
|
19171
19482
|
* @param {Date} [lastRetrieved]
|
|
19172
19483
|
* @param {*} [options] Override http request option.
|
|
19173
19484
|
* @throws {RequiredError}
|
|
19174
19485
|
*/
|
|
19175
|
-
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, description?: 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, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsSimpleModel>>;
|
|
19486
|
+
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, description?: 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>>;
|
|
19176
19487
|
/**
|
|
19177
19488
|
*
|
|
19178
19489
|
* @summary Get Hospital by slug.
|
|
19179
19490
|
* @param {string} slug
|
|
19180
19491
|
* @param {string} [languageCode]
|
|
19492
|
+
* @param {boolean} [returnDefaultValue]
|
|
19181
19493
|
* @param {*} [options] Override http request option.
|
|
19182
19494
|
* @throws {RequiredError}
|
|
19183
19495
|
*/
|
|
19184
|
-
apiV1HospitalsSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
|
|
19496
|
+
apiV1HospitalsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
|
|
19185
19497
|
};
|
|
19186
19498
|
/**
|
|
19187
19499
|
* HospitalsApi - factory interface
|
|
@@ -19204,13 +19516,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19204
19516
|
* @param {boolean} [showHidden]
|
|
19205
19517
|
* @param {string} [languageCode]
|
|
19206
19518
|
* @param {Array<string>} [ids]
|
|
19519
|
+
* @param {boolean} [returnDefaultValue]
|
|
19207
19520
|
* @param {number} [page]
|
|
19208
19521
|
* @param {number} [limit]
|
|
19209
19522
|
* @param {Date} [lastRetrieved]
|
|
19210
19523
|
* @param {*} [options] Override http request option.
|
|
19211
19524
|
* @throws {RequiredError}
|
|
19212
19525
|
*/
|
|
19213
|
-
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, description?: 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, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsModel>;
|
|
19526
|
+
apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, description?: 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>;
|
|
19214
19527
|
/**
|
|
19215
19528
|
*
|
|
19216
19529
|
* @summary Delete HospitalAccreditation.
|
|
@@ -19415,10 +19728,11 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19415
19728
|
* @summary Get Hospital.
|
|
19416
19729
|
* @param {string} hospitalId
|
|
19417
19730
|
* @param {string} [languageCode]
|
|
19731
|
+
* @param {boolean} [returnDefaultValue]
|
|
19418
19732
|
* @param {*} [options] Override http request option.
|
|
19419
19733
|
* @throws {RequiredError}
|
|
19420
19734
|
*/
|
|
19421
|
-
apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalModel>;
|
|
19735
|
+
apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalModel>;
|
|
19422
19736
|
/**
|
|
19423
19737
|
*
|
|
19424
19738
|
* @summary Get all HospitalMedias.
|
|
@@ -19551,13 +19865,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19551
19865
|
* @param {Procedure} [procedure]
|
|
19552
19866
|
* @param {Date} [created]
|
|
19553
19867
|
* @param {string} [languageCode]
|
|
19868
|
+
* @param {boolean} [returnDefaultValue]
|
|
19554
19869
|
* @param {number} [page]
|
|
19555
19870
|
* @param {number} [limit]
|
|
19556
19871
|
* @param {Date} [lastRetrieved]
|
|
19557
19872
|
* @param {*} [options] Override http request option.
|
|
19558
19873
|
* @throws {RequiredError}
|
|
19559
19874
|
*/
|
|
19560
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
|
|
19875
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
|
|
19561
19876
|
/**
|
|
19562
19877
|
*
|
|
19563
19878
|
* @summary Create HospitalService.
|
|
@@ -19585,10 +19900,11 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19585
19900
|
* @param {string} specialtyId
|
|
19586
19901
|
* @param {string} serviceId
|
|
19587
19902
|
* @param {string} [languageCode]
|
|
19903
|
+
* @param {boolean} [returnDefaultValue]
|
|
19588
19904
|
* @param {*} [options] Override http request option.
|
|
19589
19905
|
* @throws {RequiredError}
|
|
19590
19906
|
*/
|
|
19591
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
19907
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
19592
19908
|
/**
|
|
19593
19909
|
*
|
|
19594
19910
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -19684,22 +20000,24 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19684
20000
|
* @param {boolean} [showHidden]
|
|
19685
20001
|
* @param {string} [languageCode]
|
|
19686
20002
|
* @param {Array<string>} [ids]
|
|
20003
|
+
* @param {boolean} [returnDefaultValue]
|
|
19687
20004
|
* @param {number} [page]
|
|
19688
20005
|
* @param {number} [limit]
|
|
19689
20006
|
* @param {Date} [lastRetrieved]
|
|
19690
20007
|
* @param {*} [options] Override http request option.
|
|
19691
20008
|
* @throws {RequiredError}
|
|
19692
20009
|
*/
|
|
19693
|
-
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, description?: 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, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsSimpleModel>;
|
|
20010
|
+
apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, description?: 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>;
|
|
19694
20011
|
/**
|
|
19695
20012
|
*
|
|
19696
20013
|
* @summary Get Hospital by slug.
|
|
19697
20014
|
* @param {string} slug
|
|
19698
20015
|
* @param {string} [languageCode]
|
|
20016
|
+
* @param {boolean} [returnDefaultValue]
|
|
19699
20017
|
* @param {*} [options] Override http request option.
|
|
19700
20018
|
* @throws {RequiredError}
|
|
19701
20019
|
*/
|
|
19702
|
-
apiV1HospitalsSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalModel>;
|
|
20020
|
+
apiV1HospitalsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalModel>;
|
|
19703
20021
|
};
|
|
19704
20022
|
/**
|
|
19705
20023
|
* HospitalsApi - object-oriented interface
|
|
@@ -19724,6 +20042,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
19724
20042
|
* @param {boolean} [showHidden]
|
|
19725
20043
|
* @param {string} [languageCode]
|
|
19726
20044
|
* @param {Array<string>} [ids]
|
|
20045
|
+
* @param {boolean} [returnDefaultValue]
|
|
19727
20046
|
* @param {number} [page]
|
|
19728
20047
|
* @param {number} [limit]
|
|
19729
20048
|
* @param {Date} [lastRetrieved]
|
|
@@ -19731,7 +20050,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
19731
20050
|
* @throws {RequiredError}
|
|
19732
20051
|
* @memberof HospitalsApi
|
|
19733
20052
|
*/
|
|
19734
|
-
apiV1HospitalsGet(hospitalId?: string, name?: string, description?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel>>;
|
|
20053
|
+
apiV1HospitalsGet(hospitalId?: string, name?: string, description?: 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>>;
|
|
19735
20054
|
/**
|
|
19736
20055
|
*
|
|
19737
20056
|
* @summary Delete HospitalAccreditation.
|
|
@@ -19955,11 +20274,12 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
19955
20274
|
* @summary Get Hospital.
|
|
19956
20275
|
* @param {string} hospitalId
|
|
19957
20276
|
* @param {string} [languageCode]
|
|
20277
|
+
* @param {boolean} [returnDefaultValue]
|
|
19958
20278
|
* @param {*} [options] Override http request option.
|
|
19959
20279
|
* @throws {RequiredError}
|
|
19960
20280
|
* @memberof HospitalsApi
|
|
19961
20281
|
*/
|
|
19962
|
-
apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
|
|
20282
|
+
apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
|
|
19963
20283
|
/**
|
|
19964
20284
|
*
|
|
19965
20285
|
* @summary Get all HospitalMedias.
|
|
@@ -20103,6 +20423,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20103
20423
|
* @param {Procedure} [procedure]
|
|
20104
20424
|
* @param {Date} [created]
|
|
20105
20425
|
* @param {string} [languageCode]
|
|
20426
|
+
* @param {boolean} [returnDefaultValue]
|
|
20106
20427
|
* @param {number} [page]
|
|
20107
20428
|
* @param {number} [limit]
|
|
20108
20429
|
* @param {Date} [lastRetrieved]
|
|
@@ -20110,7 +20431,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20110
20431
|
* @throws {RequiredError}
|
|
20111
20432
|
* @memberof HospitalsApi
|
|
20112
20433
|
*/
|
|
20113
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel>>;
|
|
20434
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel>>;
|
|
20114
20435
|
/**
|
|
20115
20436
|
*
|
|
20116
20437
|
* @summary Create HospitalService.
|
|
@@ -20140,11 +20461,12 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20140
20461
|
* @param {string} specialtyId
|
|
20141
20462
|
* @param {string} serviceId
|
|
20142
20463
|
* @param {string} [languageCode]
|
|
20464
|
+
* @param {boolean} [returnDefaultValue]
|
|
20143
20465
|
* @param {*} [options] Override http request option.
|
|
20144
20466
|
* @throws {RequiredError}
|
|
20145
20467
|
* @memberof HospitalsApi
|
|
20146
20468
|
*/
|
|
20147
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
20469
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
20148
20470
|
/**
|
|
20149
20471
|
*
|
|
20150
20472
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -20247,6 +20569,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20247
20569
|
* @param {boolean} [showHidden]
|
|
20248
20570
|
* @param {string} [languageCode]
|
|
20249
20571
|
* @param {Array<string>} [ids]
|
|
20572
|
+
* @param {boolean} [returnDefaultValue]
|
|
20250
20573
|
* @param {number} [page]
|
|
20251
20574
|
* @param {number} [limit]
|
|
20252
20575
|
* @param {Date} [lastRetrieved]
|
|
@@ -20254,17 +20577,18 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20254
20577
|
* @throws {RequiredError}
|
|
20255
20578
|
* @memberof HospitalsApi
|
|
20256
20579
|
*/
|
|
20257
|
-
apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, description?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsSimpleModel>>;
|
|
20580
|
+
apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, description?: 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>>;
|
|
20258
20581
|
/**
|
|
20259
20582
|
*
|
|
20260
20583
|
* @summary Get Hospital by slug.
|
|
20261
20584
|
* @param {string} slug
|
|
20262
20585
|
* @param {string} [languageCode]
|
|
20586
|
+
* @param {boolean} [returnDefaultValue]
|
|
20263
20587
|
* @param {*} [options] Override http request option.
|
|
20264
20588
|
* @throws {RequiredError}
|
|
20265
20589
|
* @memberof HospitalsApi
|
|
20266
20590
|
*/
|
|
20267
|
-
apiV1HospitalsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
|
|
20591
|
+
apiV1HospitalsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
|
|
20268
20592
|
}
|
|
20269
20593
|
/**
|
|
20270
20594
|
* ImagesApi - axios parameter creator
|
|
@@ -22001,31 +22325,34 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
22001
22325
|
* @param {Procedure} [procedure]
|
|
22002
22326
|
* @param {Date} [created]
|
|
22003
22327
|
* @param {string} [languageCode]
|
|
22328
|
+
* @param {boolean} [returnDefaultValue]
|
|
22004
22329
|
* @param {number} [page]
|
|
22005
22330
|
* @param {number} [limit]
|
|
22006
22331
|
* @param {Date} [lastRetrieved]
|
|
22007
22332
|
* @param {*} [options] Override http request option.
|
|
22008
22333
|
* @throws {RequiredError}
|
|
22009
22334
|
*/
|
|
22010
|
-
apiV1ServicesGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22335
|
+
apiV1ServicesGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22011
22336
|
/**
|
|
22012
22337
|
*
|
|
22013
22338
|
* @summary Get HospitalService.
|
|
22014
22339
|
* @param {string} serviceId
|
|
22015
22340
|
* @param {string} [languageCode]
|
|
22341
|
+
* @param {boolean} [returnDefaultValue]
|
|
22016
22342
|
* @param {*} [options] Override http request option.
|
|
22017
22343
|
* @throws {RequiredError}
|
|
22018
22344
|
*/
|
|
22019
|
-
apiV1ServicesServiceIdGet: (serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22345
|
+
apiV1ServicesServiceIdGet: (serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22020
22346
|
/**
|
|
22021
22347
|
*
|
|
22022
22348
|
* @summary Get HospitalService by slug.
|
|
22023
22349
|
* @param {string} slug
|
|
22024
22350
|
* @param {string} [languageCode]
|
|
22351
|
+
* @param {boolean} [returnDefaultValue]
|
|
22025
22352
|
* @param {*} [options] Override http request option.
|
|
22026
22353
|
* @throws {RequiredError}
|
|
22027
22354
|
*/
|
|
22028
|
-
apiV1ServicesSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22355
|
+
apiV1ServicesSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22029
22356
|
};
|
|
22030
22357
|
/**
|
|
22031
22358
|
* ServicesApi - functional programming interface
|
|
@@ -22050,31 +22377,34 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
|
|
|
22050
22377
|
* @param {Procedure} [procedure]
|
|
22051
22378
|
* @param {Date} [created]
|
|
22052
22379
|
* @param {string} [languageCode]
|
|
22380
|
+
* @param {boolean} [returnDefaultValue]
|
|
22053
22381
|
* @param {number} [page]
|
|
22054
22382
|
* @param {number} [limit]
|
|
22055
22383
|
* @param {Date} [lastRetrieved]
|
|
22056
22384
|
* @param {*} [options] Override http request option.
|
|
22057
22385
|
* @throws {RequiredError}
|
|
22058
22386
|
*/
|
|
22059
|
-
apiV1ServicesGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
|
|
22387
|
+
apiV1ServicesGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: 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<HospitalServicesModel>>;
|
|
22060
22388
|
/**
|
|
22061
22389
|
*
|
|
22062
22390
|
* @summary Get HospitalService.
|
|
22063
22391
|
* @param {string} serviceId
|
|
22064
22392
|
* @param {string} [languageCode]
|
|
22393
|
+
* @param {boolean} [returnDefaultValue]
|
|
22065
22394
|
* @param {*} [options] Override http request option.
|
|
22066
22395
|
* @throws {RequiredError}
|
|
22067
22396
|
*/
|
|
22068
|
-
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
22397
|
+
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
22069
22398
|
/**
|
|
22070
22399
|
*
|
|
22071
22400
|
* @summary Get HospitalService by slug.
|
|
22072
22401
|
* @param {string} slug
|
|
22073
22402
|
* @param {string} [languageCode]
|
|
22403
|
+
* @param {boolean} [returnDefaultValue]
|
|
22074
22404
|
* @param {*} [options] Override http request option.
|
|
22075
22405
|
* @throws {RequiredError}
|
|
22076
22406
|
*/
|
|
22077
|
-
apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
22407
|
+
apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
22078
22408
|
};
|
|
22079
22409
|
/**
|
|
22080
22410
|
* ServicesApi - factory interface
|
|
@@ -22099,31 +22429,34 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
|
|
|
22099
22429
|
* @param {Procedure} [procedure]
|
|
22100
22430
|
* @param {Date} [created]
|
|
22101
22431
|
* @param {string} [languageCode]
|
|
22432
|
+
* @param {boolean} [returnDefaultValue]
|
|
22102
22433
|
* @param {number} [page]
|
|
22103
22434
|
* @param {number} [limit]
|
|
22104
22435
|
* @param {Date} [lastRetrieved]
|
|
22105
22436
|
* @param {*} [options] Override http request option.
|
|
22106
22437
|
* @throws {RequiredError}
|
|
22107
22438
|
*/
|
|
22108
|
-
apiV1ServicesGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
|
|
22439
|
+
apiV1ServicesGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
|
|
22109
22440
|
/**
|
|
22110
22441
|
*
|
|
22111
22442
|
* @summary Get HospitalService.
|
|
22112
22443
|
* @param {string} serviceId
|
|
22113
22444
|
* @param {string} [languageCode]
|
|
22445
|
+
* @param {boolean} [returnDefaultValue]
|
|
22114
22446
|
* @param {*} [options] Override http request option.
|
|
22115
22447
|
* @throws {RequiredError}
|
|
22116
22448
|
*/
|
|
22117
|
-
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
22449
|
+
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
22118
22450
|
/**
|
|
22119
22451
|
*
|
|
22120
22452
|
* @summary Get HospitalService by slug.
|
|
22121
22453
|
* @param {string} slug
|
|
22122
22454
|
* @param {string} [languageCode]
|
|
22455
|
+
* @param {boolean} [returnDefaultValue]
|
|
22123
22456
|
* @param {*} [options] Override http request option.
|
|
22124
22457
|
* @throws {RequiredError}
|
|
22125
22458
|
*/
|
|
22126
|
-
apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
22459
|
+
apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
22127
22460
|
};
|
|
22128
22461
|
/**
|
|
22129
22462
|
* ServicesApi - object-oriented interface
|
|
@@ -22150,6 +22483,7 @@ export declare class ServicesApi extends BaseAPI {
|
|
|
22150
22483
|
* @param {Procedure} [procedure]
|
|
22151
22484
|
* @param {Date} [created]
|
|
22152
22485
|
* @param {string} [languageCode]
|
|
22486
|
+
* @param {boolean} [returnDefaultValue]
|
|
22153
22487
|
* @param {number} [page]
|
|
22154
22488
|
* @param {number} [limit]
|
|
22155
22489
|
* @param {Date} [lastRetrieved]
|
|
@@ -22157,27 +22491,29 @@ export declare class ServicesApi extends BaseAPI {
|
|
|
22157
22491
|
* @throws {RequiredError}
|
|
22158
22492
|
* @memberof ServicesApi
|
|
22159
22493
|
*/
|
|
22160
|
-
apiV1ServicesGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel>>;
|
|
22494
|
+
apiV1ServicesGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel>>;
|
|
22161
22495
|
/**
|
|
22162
22496
|
*
|
|
22163
22497
|
* @summary Get HospitalService.
|
|
22164
22498
|
* @param {string} serviceId
|
|
22165
22499
|
* @param {string} [languageCode]
|
|
22500
|
+
* @param {boolean} [returnDefaultValue]
|
|
22166
22501
|
* @param {*} [options] Override http request option.
|
|
22167
22502
|
* @throws {RequiredError}
|
|
22168
22503
|
* @memberof ServicesApi
|
|
22169
22504
|
*/
|
|
22170
|
-
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
22505
|
+
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
22171
22506
|
/**
|
|
22172
22507
|
*
|
|
22173
22508
|
* @summary Get HospitalService by slug.
|
|
22174
22509
|
* @param {string} slug
|
|
22175
22510
|
* @param {string} [languageCode]
|
|
22511
|
+
* @param {boolean} [returnDefaultValue]
|
|
22176
22512
|
* @param {*} [options] Override http request option.
|
|
22177
22513
|
* @throws {RequiredError}
|
|
22178
22514
|
* @memberof ServicesApi
|
|
22179
22515
|
*/
|
|
22180
|
-
apiV1ServicesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
22516
|
+
apiV1ServicesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
22181
22517
|
}
|
|
22182
22518
|
/**
|
|
22183
22519
|
* ServicesCategoriesApi - axios parameter creator
|
|
@@ -22414,13 +22750,14 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
22414
22750
|
* @param {Date} [created]
|
|
22415
22751
|
* @param {string} [languageCode]
|
|
22416
22752
|
* @param {Array<string>} [ids]
|
|
22753
|
+
* @param {boolean} [returnDefaultValue]
|
|
22417
22754
|
* @param {number} [page]
|
|
22418
22755
|
* @param {number} [limit]
|
|
22419
22756
|
* @param {Date} [lastRetrieved]
|
|
22420
22757
|
* @param {*} [options] Override http request option.
|
|
22421
22758
|
* @throws {RequiredError}
|
|
22422
22759
|
*/
|
|
22423
|
-
apiV1SpecialtiesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22760
|
+
apiV1SpecialtiesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22424
22761
|
/**
|
|
22425
22762
|
*
|
|
22426
22763
|
* @summary Create a Specialty.
|
|
@@ -22434,10 +22771,11 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
22434
22771
|
* @summary Get Specialty by slug.
|
|
22435
22772
|
* @param {string} slug
|
|
22436
22773
|
* @param {string} [languageCode]
|
|
22774
|
+
* @param {boolean} [returnDefaultValue]
|
|
22437
22775
|
* @param {*} [options] Override http request option.
|
|
22438
22776
|
* @throws {RequiredError}
|
|
22439
22777
|
*/
|
|
22440
|
-
apiV1SpecialtiesSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22778
|
+
apiV1SpecialtiesSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22441
22779
|
/**
|
|
22442
22780
|
*
|
|
22443
22781
|
* @summary Delete Specialty.
|
|
@@ -22451,10 +22789,11 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
22451
22789
|
* @summary Get Specialty.
|
|
22452
22790
|
* @param {string} specialtyId
|
|
22453
22791
|
* @param {string} [languageCode]
|
|
22792
|
+
* @param {boolean} [returnDefaultValue]
|
|
22454
22793
|
* @param {*} [options] Override http request option.
|
|
22455
22794
|
* @throws {RequiredError}
|
|
22456
22795
|
*/
|
|
22457
|
-
apiV1SpecialtiesSpecialtyIdGet: (specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22796
|
+
apiV1SpecialtiesSpecialtyIdGet: (specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22458
22797
|
/**
|
|
22459
22798
|
*
|
|
22460
22799
|
* @summary Get all SpecialtyMedias.
|
|
@@ -22531,13 +22870,14 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
22531
22870
|
* @param {Date} [created]
|
|
22532
22871
|
* @param {string} [languageCode]
|
|
22533
22872
|
* @param {Array<string>} [ids]
|
|
22873
|
+
* @param {boolean} [returnDefaultValue]
|
|
22534
22874
|
* @param {number} [page]
|
|
22535
22875
|
* @param {number} [limit]
|
|
22536
22876
|
* @param {Date} [lastRetrieved]
|
|
22537
22877
|
* @param {*} [options] Override http request option.
|
|
22538
22878
|
* @throws {RequiredError}
|
|
22539
22879
|
*/
|
|
22540
|
-
apiV1SpecialtiesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesModel>>;
|
|
22880
|
+
apiV1SpecialtiesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | 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<SpecialtiesModel>>;
|
|
22541
22881
|
/**
|
|
22542
22882
|
*
|
|
22543
22883
|
* @summary Create a Specialty.
|
|
@@ -22551,10 +22891,11 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
22551
22891
|
* @summary Get Specialty by slug.
|
|
22552
22892
|
* @param {string} slug
|
|
22553
22893
|
* @param {string} [languageCode]
|
|
22894
|
+
* @param {boolean} [returnDefaultValue]
|
|
22554
22895
|
* @param {*} [options] Override http request option.
|
|
22555
22896
|
* @throws {RequiredError}
|
|
22556
22897
|
*/
|
|
22557
|
-
apiV1SpecialtiesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
|
|
22898
|
+
apiV1SpecialtiesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
|
|
22558
22899
|
/**
|
|
22559
22900
|
*
|
|
22560
22901
|
* @summary Delete Specialty.
|
|
@@ -22568,10 +22909,11 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
22568
22909
|
* @summary Get Specialty.
|
|
22569
22910
|
* @param {string} specialtyId
|
|
22570
22911
|
* @param {string} [languageCode]
|
|
22912
|
+
* @param {boolean} [returnDefaultValue]
|
|
22571
22913
|
* @param {*} [options] Override http request option.
|
|
22572
22914
|
* @throws {RequiredError}
|
|
22573
22915
|
*/
|
|
22574
|
-
apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
|
|
22916
|
+
apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
|
|
22575
22917
|
/**
|
|
22576
22918
|
*
|
|
22577
22919
|
* @summary Get all SpecialtyMedias.
|
|
@@ -22648,13 +22990,14 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
22648
22990
|
* @param {Date} [created]
|
|
22649
22991
|
* @param {string} [languageCode]
|
|
22650
22992
|
* @param {Array<string>} [ids]
|
|
22993
|
+
* @param {boolean} [returnDefaultValue]
|
|
22651
22994
|
* @param {number} [page]
|
|
22652
22995
|
* @param {number} [limit]
|
|
22653
22996
|
* @param {Date} [lastRetrieved]
|
|
22654
22997
|
* @param {*} [options] Override http request option.
|
|
22655
22998
|
* @throws {RequiredError}
|
|
22656
22999
|
*/
|
|
22657
|
-
apiV1SpecialtiesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtiesModel>;
|
|
23000
|
+
apiV1SpecialtiesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtiesModel>;
|
|
22658
23001
|
/**
|
|
22659
23002
|
*
|
|
22660
23003
|
* @summary Create a Specialty.
|
|
@@ -22668,10 +23011,11 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
22668
23011
|
* @summary Get Specialty by slug.
|
|
22669
23012
|
* @param {string} slug
|
|
22670
23013
|
* @param {string} [languageCode]
|
|
23014
|
+
* @param {boolean} [returnDefaultValue]
|
|
22671
23015
|
* @param {*} [options] Override http request option.
|
|
22672
23016
|
* @throws {RequiredError}
|
|
22673
23017
|
*/
|
|
22674
|
-
apiV1SpecialtiesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<SpecialtyModel>;
|
|
23018
|
+
apiV1SpecialtiesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<SpecialtyModel>;
|
|
22675
23019
|
/**
|
|
22676
23020
|
*
|
|
22677
23021
|
* @summary Delete Specialty.
|
|
@@ -22685,10 +23029,11 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
22685
23029
|
* @summary Get Specialty.
|
|
22686
23030
|
* @param {string} specialtyId
|
|
22687
23031
|
* @param {string} [languageCode]
|
|
23032
|
+
* @param {boolean} [returnDefaultValue]
|
|
22688
23033
|
* @param {*} [options] Override http request option.
|
|
22689
23034
|
* @throws {RequiredError}
|
|
22690
23035
|
*/
|
|
22691
|
-
apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string | undefined, options?: any): AxiosPromise<SpecialtyModel>;
|
|
23036
|
+
apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<SpecialtyModel>;
|
|
22692
23037
|
/**
|
|
22693
23038
|
*
|
|
22694
23039
|
* @summary Get all SpecialtyMedias.
|
|
@@ -22767,6 +23112,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
22767
23112
|
* @param {Date} [created]
|
|
22768
23113
|
* @param {string} [languageCode]
|
|
22769
23114
|
* @param {Array<string>} [ids]
|
|
23115
|
+
* @param {boolean} [returnDefaultValue]
|
|
22770
23116
|
* @param {number} [page]
|
|
22771
23117
|
* @param {number} [limit]
|
|
22772
23118
|
* @param {Date} [lastRetrieved]
|
|
@@ -22774,7 +23120,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
22774
23120
|
* @throws {RequiredError}
|
|
22775
23121
|
* @memberof SpecialtiesApi
|
|
22776
23122
|
*/
|
|
22777
|
-
apiV1SpecialtiesGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesModel>>;
|
|
23123
|
+
apiV1SpecialtiesGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesModel>>;
|
|
22778
23124
|
/**
|
|
22779
23125
|
*
|
|
22780
23126
|
* @summary Create a Specialty.
|
|
@@ -22789,11 +23135,12 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
22789
23135
|
* @summary Get Specialty by slug.
|
|
22790
23136
|
* @param {string} slug
|
|
22791
23137
|
* @param {string} [languageCode]
|
|
23138
|
+
* @param {boolean} [returnDefaultValue]
|
|
22792
23139
|
* @param {*} [options] Override http request option.
|
|
22793
23140
|
* @throws {RequiredError}
|
|
22794
23141
|
* @memberof SpecialtiesApi
|
|
22795
23142
|
*/
|
|
22796
|
-
apiV1SpecialtiesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
|
|
23143
|
+
apiV1SpecialtiesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
|
|
22797
23144
|
/**
|
|
22798
23145
|
*
|
|
22799
23146
|
* @summary Delete Specialty.
|
|
@@ -22808,11 +23155,12 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
22808
23155
|
* @summary Get Specialty.
|
|
22809
23156
|
* @param {string} specialtyId
|
|
22810
23157
|
* @param {string} [languageCode]
|
|
23158
|
+
* @param {boolean} [returnDefaultValue]
|
|
22811
23159
|
* @param {*} [options] Override http request option.
|
|
22812
23160
|
* @throws {RequiredError}
|
|
22813
23161
|
* @memberof SpecialtiesApi
|
|
22814
23162
|
*/
|
|
22815
|
-
apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
|
|
23163
|
+
apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
|
|
22816
23164
|
/**
|
|
22817
23165
|
*
|
|
22818
23166
|
* @summary Get all SpecialtyMedias.
|
|
@@ -22896,13 +23244,14 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
22896
23244
|
* @param {string} [languageCode]
|
|
22897
23245
|
* @param {Array<string>} [ids]
|
|
22898
23246
|
* @param {string} [specialtyTypeCategoryId]
|
|
23247
|
+
* @param {boolean} [returnDefaultValue]
|
|
22899
23248
|
* @param {number} [page]
|
|
22900
23249
|
* @param {number} [limit]
|
|
22901
23250
|
* @param {Date} [lastRetrieved]
|
|
22902
23251
|
* @param {*} [options] Override http request option.
|
|
22903
23252
|
* @throws {RequiredError}
|
|
22904
23253
|
*/
|
|
22905
|
-
apiV1SpecialtytypesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23254
|
+
apiV1SpecialtytypesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22906
23255
|
/**
|
|
22907
23256
|
*
|
|
22908
23257
|
* @summary Create a Department.
|
|
@@ -22911,15 +23260,36 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
22911
23260
|
* @throws {RequiredError}
|
|
22912
23261
|
*/
|
|
22913
23262
|
apiV1SpecialtytypesPost: (createSpecialtyTypeCommand?: CreateSpecialtyTypeCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23263
|
+
/**
|
|
23264
|
+
*
|
|
23265
|
+
* @summary Get all Hospitals.
|
|
23266
|
+
* @param {string} [id]
|
|
23267
|
+
* @param {string} [name]
|
|
23268
|
+
* @param {string} [description]
|
|
23269
|
+
* @param {MarketingType} [marketingType]
|
|
23270
|
+
* @param {string} [hospitalId]
|
|
23271
|
+
* @param {Date} [created]
|
|
23272
|
+
* @param {string} [languageCode]
|
|
23273
|
+
* @param {Array<string>} [ids]
|
|
23274
|
+
* @param {string} [specialtyTypeCategoryId]
|
|
23275
|
+
* @param {boolean} [returnDefaultValue]
|
|
23276
|
+
* @param {number} [page]
|
|
23277
|
+
* @param {number} [limit]
|
|
23278
|
+
* @param {Date} [lastRetrieved]
|
|
23279
|
+
* @param {*} [options] Override http request option.
|
|
23280
|
+
* @throws {RequiredError}
|
|
23281
|
+
*/
|
|
23282
|
+
apiV1SpecialtytypesSimpleGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22914
23283
|
/**
|
|
22915
23284
|
*
|
|
22916
23285
|
* @summary Get Department by slug.
|
|
22917
23286
|
* @param {string} slug
|
|
22918
23287
|
* @param {string} [languageCode]
|
|
23288
|
+
* @param {boolean} [returnDefaultValue]
|
|
22919
23289
|
* @param {*} [options] Override http request option.
|
|
22920
23290
|
* @throws {RequiredError}
|
|
22921
23291
|
*/
|
|
22922
|
-
apiV1SpecialtytypesSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23292
|
+
apiV1SpecialtytypesSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22923
23293
|
/**
|
|
22924
23294
|
*
|
|
22925
23295
|
* @summary Delete Department.
|
|
@@ -22933,10 +23303,11 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
22933
23303
|
* @summary Get Department.
|
|
22934
23304
|
* @param {string} specialtyTypeId
|
|
22935
23305
|
* @param {string} [languageCode]
|
|
23306
|
+
* @param {boolean} [returnDefaultValue]
|
|
22936
23307
|
* @param {*} [options] Override http request option.
|
|
22937
23308
|
* @throws {RequiredError}
|
|
22938
23309
|
*/
|
|
22939
|
-
apiV1SpecialtytypesSpecialtyTypeIdGet: (specialtyTypeId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23310
|
+
apiV1SpecialtytypesSpecialtyTypeIdGet: (specialtyTypeId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22940
23311
|
/**
|
|
22941
23312
|
*
|
|
22942
23313
|
* @summary Get all SpecialtyTypeMedias.
|
|
@@ -23014,13 +23385,14 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
23014
23385
|
* @param {string} [languageCode]
|
|
23015
23386
|
* @param {Array<string>} [ids]
|
|
23016
23387
|
* @param {string} [specialtyTypeCategoryId]
|
|
23388
|
+
* @param {boolean} [returnDefaultValue]
|
|
23017
23389
|
* @param {number} [page]
|
|
23018
23390
|
* @param {number} [limit]
|
|
23019
23391
|
* @param {Date} [lastRetrieved]
|
|
23020
23392
|
* @param {*} [options] Override http request option.
|
|
23021
23393
|
* @throws {RequiredError}
|
|
23022
23394
|
*/
|
|
23023
|
-
apiV1SpecialtytypesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypesModel>>;
|
|
23395
|
+
apiV1SpecialtytypesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: 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<SpecialtyTypesModel>>;
|
|
23024
23396
|
/**
|
|
23025
23397
|
*
|
|
23026
23398
|
* @summary Create a Department.
|
|
@@ -23029,15 +23401,36 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
23029
23401
|
* @throws {RequiredError}
|
|
23030
23402
|
*/
|
|
23031
23403
|
apiV1SpecialtytypesPost(createSpecialtyTypeCommand?: CreateSpecialtyTypeCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypeModel>>;
|
|
23404
|
+
/**
|
|
23405
|
+
*
|
|
23406
|
+
* @summary Get all Hospitals.
|
|
23407
|
+
* @param {string} [id]
|
|
23408
|
+
* @param {string} [name]
|
|
23409
|
+
* @param {string} [description]
|
|
23410
|
+
* @param {MarketingType} [marketingType]
|
|
23411
|
+
* @param {string} [hospitalId]
|
|
23412
|
+
* @param {Date} [created]
|
|
23413
|
+
* @param {string} [languageCode]
|
|
23414
|
+
* @param {Array<string>} [ids]
|
|
23415
|
+
* @param {string} [specialtyTypeCategoryId]
|
|
23416
|
+
* @param {boolean} [returnDefaultValue]
|
|
23417
|
+
* @param {number} [page]
|
|
23418
|
+
* @param {number} [limit]
|
|
23419
|
+
* @param {Date} [lastRetrieved]
|
|
23420
|
+
* @param {*} [options] Override http request option.
|
|
23421
|
+
* @throws {RequiredError}
|
|
23422
|
+
*/
|
|
23423
|
+
apiV1SpecialtytypesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: 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<SpecialtyTypesSimpleModel>>;
|
|
23032
23424
|
/**
|
|
23033
23425
|
*
|
|
23034
23426
|
* @summary Get Department by slug.
|
|
23035
23427
|
* @param {string} slug
|
|
23036
23428
|
* @param {string} [languageCode]
|
|
23429
|
+
* @param {boolean} [returnDefaultValue]
|
|
23037
23430
|
* @param {*} [options] Override http request option.
|
|
23038
23431
|
* @throws {RequiredError}
|
|
23039
23432
|
*/
|
|
23040
|
-
apiV1SpecialtytypesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypeModel>>;
|
|
23433
|
+
apiV1SpecialtytypesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypeModel>>;
|
|
23041
23434
|
/**
|
|
23042
23435
|
*
|
|
23043
23436
|
* @summary Delete Department.
|
|
@@ -23051,10 +23444,11 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
23051
23444
|
* @summary Get Department.
|
|
23052
23445
|
* @param {string} specialtyTypeId
|
|
23053
23446
|
* @param {string} [languageCode]
|
|
23447
|
+
* @param {boolean} [returnDefaultValue]
|
|
23054
23448
|
* @param {*} [options] Override http request option.
|
|
23055
23449
|
* @throws {RequiredError}
|
|
23056
23450
|
*/
|
|
23057
|
-
apiV1SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypeModel>>;
|
|
23451
|
+
apiV1SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypeModel>>;
|
|
23058
23452
|
/**
|
|
23059
23453
|
*
|
|
23060
23454
|
* @summary Get all SpecialtyTypeMedias.
|
|
@@ -23132,13 +23526,14 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
|
|
|
23132
23526
|
* @param {string} [languageCode]
|
|
23133
23527
|
* @param {Array<string>} [ids]
|
|
23134
23528
|
* @param {string} [specialtyTypeCategoryId]
|
|
23529
|
+
* @param {boolean} [returnDefaultValue]
|
|
23135
23530
|
* @param {number} [page]
|
|
23136
23531
|
* @param {number} [limit]
|
|
23137
23532
|
* @param {Date} [lastRetrieved]
|
|
23138
23533
|
* @param {*} [options] Override http request option.
|
|
23139
23534
|
* @throws {RequiredError}
|
|
23140
23535
|
*/
|
|
23141
|
-
apiV1SpecialtytypesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtyTypesModel>;
|
|
23536
|
+
apiV1SpecialtytypesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtyTypesModel>;
|
|
23142
23537
|
/**
|
|
23143
23538
|
*
|
|
23144
23539
|
* @summary Create a Department.
|
|
@@ -23147,15 +23542,36 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
|
|
|
23147
23542
|
* @throws {RequiredError}
|
|
23148
23543
|
*/
|
|
23149
23544
|
apiV1SpecialtytypesPost(createSpecialtyTypeCommand?: CreateSpecialtyTypeCommand | undefined, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
23545
|
+
/**
|
|
23546
|
+
*
|
|
23547
|
+
* @summary Get all Hospitals.
|
|
23548
|
+
* @param {string} [id]
|
|
23549
|
+
* @param {string} [name]
|
|
23550
|
+
* @param {string} [description]
|
|
23551
|
+
* @param {MarketingType} [marketingType]
|
|
23552
|
+
* @param {string} [hospitalId]
|
|
23553
|
+
* @param {Date} [created]
|
|
23554
|
+
* @param {string} [languageCode]
|
|
23555
|
+
* @param {Array<string>} [ids]
|
|
23556
|
+
* @param {string} [specialtyTypeCategoryId]
|
|
23557
|
+
* @param {boolean} [returnDefaultValue]
|
|
23558
|
+
* @param {number} [page]
|
|
23559
|
+
* @param {number} [limit]
|
|
23560
|
+
* @param {Date} [lastRetrieved]
|
|
23561
|
+
* @param {*} [options] Override http request option.
|
|
23562
|
+
* @throws {RequiredError}
|
|
23563
|
+
*/
|
|
23564
|
+
apiV1SpecialtytypesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtyTypesSimpleModel>;
|
|
23150
23565
|
/**
|
|
23151
23566
|
*
|
|
23152
23567
|
* @summary Get Department by slug.
|
|
23153
23568
|
* @param {string} slug
|
|
23154
23569
|
* @param {string} [languageCode]
|
|
23570
|
+
* @param {boolean} [returnDefaultValue]
|
|
23155
23571
|
* @param {*} [options] Override http request option.
|
|
23156
23572
|
* @throws {RequiredError}
|
|
23157
23573
|
*/
|
|
23158
|
-
apiV1SpecialtytypesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
23574
|
+
apiV1SpecialtytypesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
23159
23575
|
/**
|
|
23160
23576
|
*
|
|
23161
23577
|
* @summary Delete Department.
|
|
@@ -23169,10 +23585,11 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
|
|
|
23169
23585
|
* @summary Get Department.
|
|
23170
23586
|
* @param {string} specialtyTypeId
|
|
23171
23587
|
* @param {string} [languageCode]
|
|
23588
|
+
* @param {boolean} [returnDefaultValue]
|
|
23172
23589
|
* @param {*} [options] Override http request option.
|
|
23173
23590
|
* @throws {RequiredError}
|
|
23174
23591
|
*/
|
|
23175
|
-
apiV1SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string | undefined, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
23592
|
+
apiV1SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
23176
23593
|
/**
|
|
23177
23594
|
*
|
|
23178
23595
|
* @summary Get all SpecialtyTypeMedias.
|
|
@@ -23252,6 +23669,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
23252
23669
|
* @param {string} [languageCode]
|
|
23253
23670
|
* @param {Array<string>} [ids]
|
|
23254
23671
|
* @param {string} [specialtyTypeCategoryId]
|
|
23672
|
+
* @param {boolean} [returnDefaultValue]
|
|
23255
23673
|
* @param {number} [page]
|
|
23256
23674
|
* @param {number} [limit]
|
|
23257
23675
|
* @param {Date} [lastRetrieved]
|
|
@@ -23259,7 +23677,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
23259
23677
|
* @throws {RequiredError}
|
|
23260
23678
|
* @memberof SpecialtyTypesApi
|
|
23261
23679
|
*/
|
|
23262
|
-
apiV1SpecialtytypesGet(id?: string, name?: string, description?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, specialtyTypeCategoryId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypesModel>>;
|
|
23680
|
+
apiV1SpecialtytypesGet(id?: string, name?: string, description?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, specialtyTypeCategoryId?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypesModel>>;
|
|
23263
23681
|
/**
|
|
23264
23682
|
*
|
|
23265
23683
|
* @summary Create a Department.
|
|
@@ -23269,16 +23687,38 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
23269
23687
|
* @memberof SpecialtyTypesApi
|
|
23270
23688
|
*/
|
|
23271
23689
|
apiV1SpecialtytypesPost(createSpecialtyTypeCommand?: CreateSpecialtyTypeCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel>>;
|
|
23690
|
+
/**
|
|
23691
|
+
*
|
|
23692
|
+
* @summary Get all Hospitals.
|
|
23693
|
+
* @param {string} [id]
|
|
23694
|
+
* @param {string} [name]
|
|
23695
|
+
* @param {string} [description]
|
|
23696
|
+
* @param {MarketingType} [marketingType]
|
|
23697
|
+
* @param {string} [hospitalId]
|
|
23698
|
+
* @param {Date} [created]
|
|
23699
|
+
* @param {string} [languageCode]
|
|
23700
|
+
* @param {Array<string>} [ids]
|
|
23701
|
+
* @param {string} [specialtyTypeCategoryId]
|
|
23702
|
+
* @param {boolean} [returnDefaultValue]
|
|
23703
|
+
* @param {number} [page]
|
|
23704
|
+
* @param {number} [limit]
|
|
23705
|
+
* @param {Date} [lastRetrieved]
|
|
23706
|
+
* @param {*} [options] Override http request option.
|
|
23707
|
+
* @throws {RequiredError}
|
|
23708
|
+
* @memberof SpecialtyTypesApi
|
|
23709
|
+
*/
|
|
23710
|
+
apiV1SpecialtytypesSimpleGet(id?: string, name?: string, description?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, specialtyTypeCategoryId?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypesSimpleModel>>;
|
|
23272
23711
|
/**
|
|
23273
23712
|
*
|
|
23274
23713
|
* @summary Get Department by slug.
|
|
23275
23714
|
* @param {string} slug
|
|
23276
23715
|
* @param {string} [languageCode]
|
|
23716
|
+
* @param {boolean} [returnDefaultValue]
|
|
23277
23717
|
* @param {*} [options] Override http request option.
|
|
23278
23718
|
* @throws {RequiredError}
|
|
23279
23719
|
* @memberof SpecialtyTypesApi
|
|
23280
23720
|
*/
|
|
23281
|
-
apiV1SpecialtytypesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel>>;
|
|
23721
|
+
apiV1SpecialtytypesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel>>;
|
|
23282
23722
|
/**
|
|
23283
23723
|
*
|
|
23284
23724
|
* @summary Delete Department.
|
|
@@ -23293,11 +23733,12 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
23293
23733
|
* @summary Get Department.
|
|
23294
23734
|
* @param {string} specialtyTypeId
|
|
23295
23735
|
* @param {string} [languageCode]
|
|
23736
|
+
* @param {boolean} [returnDefaultValue]
|
|
23296
23737
|
* @param {*} [options] Override http request option.
|
|
23297
23738
|
* @throws {RequiredError}
|
|
23298
23739
|
* @memberof SpecialtyTypesApi
|
|
23299
23740
|
*/
|
|
23300
|
-
apiV1SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel>>;
|
|
23741
|
+
apiV1SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel>>;
|
|
23301
23742
|
/**
|
|
23302
23743
|
*
|
|
23303
23744
|
* @summary Get all SpecialtyTypeMedias.
|