ch-api-client-typescript2 4.7.0 → 4.7.2
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 +220 -28
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +28 -14
- package/package.json +1 -1
- package/src/api.ts +234 -34
package/lib/api.d.ts
CHANGED
|
@@ -513,6 +513,12 @@ export interface ArticleContributorModel {
|
|
|
513
513
|
* @memberof ArticleContributorModel
|
|
514
514
|
*/
|
|
515
515
|
'auditableEntity'?: AuditableEntity;
|
|
516
|
+
/**
|
|
517
|
+
*
|
|
518
|
+
* @type {ContributorMappingModel}
|
|
519
|
+
* @memberof ArticleContributorModel
|
|
520
|
+
*/
|
|
521
|
+
'contributor'?: ContributorMappingModel;
|
|
516
522
|
/**
|
|
517
523
|
*
|
|
518
524
|
* @type {string}
|
|
@@ -2537,6 +2543,19 @@ export interface ContributorItemModel {
|
|
|
2537
2543
|
*/
|
|
2538
2544
|
'auditableEntity'?: AuditableEntity;
|
|
2539
2545
|
}
|
|
2546
|
+
/**
|
|
2547
|
+
*
|
|
2548
|
+
* @export
|
|
2549
|
+
* @interface ContributorMappingModel
|
|
2550
|
+
*/
|
|
2551
|
+
export interface ContributorMappingModel {
|
|
2552
|
+
/**
|
|
2553
|
+
*
|
|
2554
|
+
* @type {Array<TranslationModel>}
|
|
2555
|
+
* @memberof ContributorMappingModel
|
|
2556
|
+
*/
|
|
2557
|
+
'translations'?: Array<TranslationModel> | null;
|
|
2558
|
+
}
|
|
2540
2559
|
/**
|
|
2541
2560
|
*
|
|
2542
2561
|
* @export
|
|
@@ -3751,6 +3770,12 @@ export interface DealPackageModel {
|
|
|
3751
3770
|
* @memberof DealPackageModel
|
|
3752
3771
|
*/
|
|
3753
3772
|
'hospitalSlug'?: string | null;
|
|
3773
|
+
/**
|
|
3774
|
+
*
|
|
3775
|
+
* @type {string}
|
|
3776
|
+
* @memberof DealPackageModel
|
|
3777
|
+
*/
|
|
3778
|
+
'additionalServices'?: string | null;
|
|
3754
3779
|
/**
|
|
3755
3780
|
*
|
|
3756
3781
|
* @type {RefundPolicy}
|
|
@@ -3775,12 +3800,6 @@ export interface DealPackageModel {
|
|
|
3775
3800
|
* @memberof DealPackageModel
|
|
3776
3801
|
*/
|
|
3777
3802
|
'auditableEntity'?: AuditableEntity;
|
|
3778
|
-
/**
|
|
3779
|
-
*
|
|
3780
|
-
* @type {string}
|
|
3781
|
-
* @memberof DealPackageModel
|
|
3782
|
-
*/
|
|
3783
|
-
'additionalServices'?: string | null;
|
|
3784
3803
|
/**
|
|
3785
3804
|
*
|
|
3786
3805
|
* @type {string}
|
|
@@ -5286,12 +5305,6 @@ export interface FaqCategoryItemModel {
|
|
|
5286
5305
|
* @memberof FaqCategoryItemModel
|
|
5287
5306
|
*/
|
|
5288
5307
|
'hospitalWebsiteUrl'?: string | null;
|
|
5289
|
-
/**
|
|
5290
|
-
*
|
|
5291
|
-
* @type {Array<MediaModel>}
|
|
5292
|
-
* @memberof FaqCategoryItemModel
|
|
5293
|
-
*/
|
|
5294
|
-
'medias'?: Array<MediaModel> | null;
|
|
5295
5308
|
/**
|
|
5296
5309
|
*
|
|
5297
5310
|
* @type {AuditableEntity}
|
|
@@ -5371,12 +5384,6 @@ export interface FaqCategoryModel {
|
|
|
5371
5384
|
* @memberof FaqCategoryModel
|
|
5372
5385
|
*/
|
|
5373
5386
|
'hospitalWebsiteUrl'?: string | null;
|
|
5374
|
-
/**
|
|
5375
|
-
*
|
|
5376
|
-
* @type {Array<MediaModel>}
|
|
5377
|
-
* @memberof FaqCategoryModel
|
|
5378
|
-
*/
|
|
5379
|
-
'medias'?: Array<MediaModel> | null;
|
|
5380
5387
|
/**
|
|
5381
5388
|
*
|
|
5382
5389
|
* @type {AuditableEntity}
|
|
@@ -5461,7 +5468,13 @@ export interface FaqItemModel {
|
|
|
5461
5468
|
* @type {string}
|
|
5462
5469
|
* @memberof FaqItemModel
|
|
5463
5470
|
*/
|
|
5464
|
-
'hospitalId'?: string;
|
|
5471
|
+
'hospitalId'?: string | null;
|
|
5472
|
+
/**
|
|
5473
|
+
*
|
|
5474
|
+
* @type {TranslationSimpleModel}
|
|
5475
|
+
* @memberof FaqItemModel
|
|
5476
|
+
*/
|
|
5477
|
+
'hospitalTranslation'?: TranslationSimpleModel;
|
|
5465
5478
|
/**
|
|
5466
5479
|
*
|
|
5467
5480
|
* @type {string}
|
|
@@ -5564,7 +5577,13 @@ export interface FaqModel {
|
|
|
5564
5577
|
* @type {string}
|
|
5565
5578
|
* @memberof FaqModel
|
|
5566
5579
|
*/
|
|
5567
|
-
'hospitalId'?: string;
|
|
5580
|
+
'hospitalId'?: string | null;
|
|
5581
|
+
/**
|
|
5582
|
+
*
|
|
5583
|
+
* @type {TranslationSimpleModel}
|
|
5584
|
+
* @memberof FaqModel
|
|
5585
|
+
*/
|
|
5586
|
+
'hospitalTranslation'?: TranslationSimpleModel;
|
|
5568
5587
|
/**
|
|
5569
5588
|
*
|
|
5570
5589
|
* @type {string}
|
|
@@ -9511,6 +9530,12 @@ export interface SpecialtyTypeItemModel {
|
|
|
9511
9530
|
* @memberof SpecialtyTypeItemModel
|
|
9512
9531
|
*/
|
|
9513
9532
|
'languageCode'?: string | null;
|
|
9533
|
+
/**
|
|
9534
|
+
*
|
|
9535
|
+
* @type {Array<SpecialtyTypeTranslationSimpleModel>}
|
|
9536
|
+
* @memberof SpecialtyTypeItemModel
|
|
9537
|
+
*/
|
|
9538
|
+
'simpleTranslations'?: Array<SpecialtyTypeTranslationSimpleModel> | null;
|
|
9514
9539
|
/**
|
|
9515
9540
|
*
|
|
9516
9541
|
* @type {string}
|
|
@@ -9602,6 +9627,12 @@ export interface SpecialtyTypeModel {
|
|
|
9602
9627
|
* @memberof SpecialtyTypeModel
|
|
9603
9628
|
*/
|
|
9604
9629
|
'languageCode'?: string | null;
|
|
9630
|
+
/**
|
|
9631
|
+
*
|
|
9632
|
+
* @type {Array<SpecialtyTypeTranslationSimpleModel>}
|
|
9633
|
+
* @memberof SpecialtyTypeModel
|
|
9634
|
+
*/
|
|
9635
|
+
'simpleTranslations'?: Array<SpecialtyTypeTranslationSimpleModel> | null;
|
|
9605
9636
|
/**
|
|
9606
9637
|
*
|
|
9607
9638
|
* @type {string}
|
|
@@ -9730,6 +9761,55 @@ export interface SpecialtyTypeSimpleItemModel {
|
|
|
9730
9761
|
*/
|
|
9731
9762
|
'confirmed'?: boolean;
|
|
9732
9763
|
}
|
|
9764
|
+
/**
|
|
9765
|
+
*
|
|
9766
|
+
* @export
|
|
9767
|
+
* @interface SpecialtyTypeTranslationSimpleModel
|
|
9768
|
+
*/
|
|
9769
|
+
export interface SpecialtyTypeTranslationSimpleModel {
|
|
9770
|
+
/**
|
|
9771
|
+
*
|
|
9772
|
+
* @type {string}
|
|
9773
|
+
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
9774
|
+
*/
|
|
9775
|
+
'languageCode'?: string | null;
|
|
9776
|
+
/**
|
|
9777
|
+
*
|
|
9778
|
+
* @type {string}
|
|
9779
|
+
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
9780
|
+
*/
|
|
9781
|
+
'name'?: string | null;
|
|
9782
|
+
/**
|
|
9783
|
+
*
|
|
9784
|
+
* @type {string}
|
|
9785
|
+
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
9786
|
+
*/
|
|
9787
|
+
'normalizedName'?: string | null;
|
|
9788
|
+
/**
|
|
9789
|
+
*
|
|
9790
|
+
* @type {string}
|
|
9791
|
+
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
9792
|
+
*/
|
|
9793
|
+
'slug'?: string | null;
|
|
9794
|
+
/**
|
|
9795
|
+
*
|
|
9796
|
+
* @type {Date}
|
|
9797
|
+
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
9798
|
+
*/
|
|
9799
|
+
'updatedDate'?: Date | null;
|
|
9800
|
+
/**
|
|
9801
|
+
*
|
|
9802
|
+
* @type {boolean}
|
|
9803
|
+
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
9804
|
+
*/
|
|
9805
|
+
'isConfirmed'?: boolean;
|
|
9806
|
+
/**
|
|
9807
|
+
*
|
|
9808
|
+
* @type {string}
|
|
9809
|
+
* @memberof SpecialtyTypeTranslationSimpleModel
|
|
9810
|
+
*/
|
|
9811
|
+
'description'?: string | null;
|
|
9812
|
+
}
|
|
9733
9813
|
/**
|
|
9734
9814
|
*
|
|
9735
9815
|
* @export
|
|
@@ -9874,6 +9954,110 @@ export interface TagsModel {
|
|
|
9874
9954
|
*/
|
|
9875
9955
|
'metaData'?: PagedListMetaData;
|
|
9876
9956
|
}
|
|
9957
|
+
/**
|
|
9958
|
+
*
|
|
9959
|
+
* @export
|
|
9960
|
+
* @interface TranslationModel
|
|
9961
|
+
*/
|
|
9962
|
+
export interface TranslationModel {
|
|
9963
|
+
/**
|
|
9964
|
+
*
|
|
9965
|
+
* @type {string}
|
|
9966
|
+
* @memberof TranslationModel
|
|
9967
|
+
*/
|
|
9968
|
+
'languageCode'?: string | null;
|
|
9969
|
+
/**
|
|
9970
|
+
*
|
|
9971
|
+
* @type {string}
|
|
9972
|
+
* @memberof TranslationModel
|
|
9973
|
+
*/
|
|
9974
|
+
'name'?: string | null;
|
|
9975
|
+
/**
|
|
9976
|
+
*
|
|
9977
|
+
* @type {string}
|
|
9978
|
+
* @memberof TranslationModel
|
|
9979
|
+
*/
|
|
9980
|
+
'normalizedName'?: string | null;
|
|
9981
|
+
/**
|
|
9982
|
+
*
|
|
9983
|
+
* @type {string}
|
|
9984
|
+
* @memberof TranslationModel
|
|
9985
|
+
*/
|
|
9986
|
+
'slug'?: string | null;
|
|
9987
|
+
/**
|
|
9988
|
+
*
|
|
9989
|
+
* @type {Date}
|
|
9990
|
+
* @memberof TranslationModel
|
|
9991
|
+
*/
|
|
9992
|
+
'updatedDate'?: Date | null;
|
|
9993
|
+
/**
|
|
9994
|
+
*
|
|
9995
|
+
* @type {boolean}
|
|
9996
|
+
* @memberof TranslationModel
|
|
9997
|
+
*/
|
|
9998
|
+
'isConfirmed'?: boolean;
|
|
9999
|
+
/**
|
|
10000
|
+
*
|
|
10001
|
+
* @type {string}
|
|
10002
|
+
* @memberof TranslationModel
|
|
10003
|
+
*/
|
|
10004
|
+
'description'?: string | null;
|
|
10005
|
+
/**
|
|
10006
|
+
*
|
|
10007
|
+
* @type {string}
|
|
10008
|
+
* @memberof TranslationModel
|
|
10009
|
+
*/
|
|
10010
|
+
'overview'?: string | null;
|
|
10011
|
+
/**
|
|
10012
|
+
*
|
|
10013
|
+
* @type {string}
|
|
10014
|
+
* @memberof TranslationModel
|
|
10015
|
+
*/
|
|
10016
|
+
'content'?: string | null;
|
|
10017
|
+
}
|
|
10018
|
+
/**
|
|
10019
|
+
*
|
|
10020
|
+
* @export
|
|
10021
|
+
* @interface TranslationSimpleModel
|
|
10022
|
+
*/
|
|
10023
|
+
export interface TranslationSimpleModel {
|
|
10024
|
+
/**
|
|
10025
|
+
*
|
|
10026
|
+
* @type {string}
|
|
10027
|
+
* @memberof TranslationSimpleModel
|
|
10028
|
+
*/
|
|
10029
|
+
'languageCode'?: string | null;
|
|
10030
|
+
/**
|
|
10031
|
+
*
|
|
10032
|
+
* @type {string}
|
|
10033
|
+
* @memberof TranslationSimpleModel
|
|
10034
|
+
*/
|
|
10035
|
+
'name'?: string | null;
|
|
10036
|
+
/**
|
|
10037
|
+
*
|
|
10038
|
+
* @type {string}
|
|
10039
|
+
* @memberof TranslationSimpleModel
|
|
10040
|
+
*/
|
|
10041
|
+
'normalizedName'?: string | null;
|
|
10042
|
+
/**
|
|
10043
|
+
*
|
|
10044
|
+
* @type {string}
|
|
10045
|
+
* @memberof TranslationSimpleModel
|
|
10046
|
+
*/
|
|
10047
|
+
'slug'?: string | null;
|
|
10048
|
+
/**
|
|
10049
|
+
*
|
|
10050
|
+
* @type {Date}
|
|
10051
|
+
* @memberof TranslationSimpleModel
|
|
10052
|
+
*/
|
|
10053
|
+
'updatedDate'?: Date | null;
|
|
10054
|
+
/**
|
|
10055
|
+
*
|
|
10056
|
+
* @type {boolean}
|
|
10057
|
+
* @memberof TranslationSimpleModel
|
|
10058
|
+
*/
|
|
10059
|
+
'isConfirmed'?: boolean;
|
|
10060
|
+
}
|
|
9877
10061
|
/**
|
|
9878
10062
|
*
|
|
9879
10063
|
* @export
|
|
@@ -15665,6 +15849,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
15665
15849
|
* @param {string} [specialtyTypeId]
|
|
15666
15850
|
* @param {string} [specialtyId]
|
|
15667
15851
|
* @param {string} [exceptHospitalId]
|
|
15852
|
+
* @param {number} [mediaCount]
|
|
15668
15853
|
* @param {boolean} [showHidden]
|
|
15669
15854
|
* @param {string} [languageCode]
|
|
15670
15855
|
* @param {Array<string>} [ids]
|
|
@@ -15676,7 +15861,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
15676
15861
|
* @param {*} [options] Override http request option.
|
|
15677
15862
|
* @throws {RequiredError}
|
|
15678
15863
|
*/
|
|
15679
|
-
apiV2HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15864
|
+
apiV2HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, mediaCount?: number | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15680
15865
|
/**
|
|
15681
15866
|
*
|
|
15682
15867
|
* @summary Get HospitalAccreditation.
|
|
@@ -16052,6 +16237,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
16052
16237
|
* @param {string} [specialtyTypeId]
|
|
16053
16238
|
* @param {string} [specialtyId]
|
|
16054
16239
|
* @param {string} [exceptHospitalId]
|
|
16240
|
+
* @param {number} [mediaCount]
|
|
16055
16241
|
* @param {boolean} [showHidden]
|
|
16056
16242
|
* @param {string} [languageCode]
|
|
16057
16243
|
* @param {Array<string>} [ids]
|
|
@@ -16063,7 +16249,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
16063
16249
|
* @param {*} [options] Override http request option.
|
|
16064
16250
|
* @throws {RequiredError}
|
|
16065
16251
|
*/
|
|
16066
|
-
apiV2HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16252
|
+
apiV2HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, mediaCount?: number | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16067
16253
|
/**
|
|
16068
16254
|
*
|
|
16069
16255
|
* @param {string} slug
|
|
@@ -16090,6 +16276,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
16090
16276
|
* @param {string} [specialtyTypeId]
|
|
16091
16277
|
* @param {string} [specialtyId]
|
|
16092
16278
|
* @param {string} [exceptHospitalId]
|
|
16279
|
+
* @param {number} [mediaCount]
|
|
16093
16280
|
* @param {boolean} [showHidden]
|
|
16094
16281
|
* @param {string} [languageCode]
|
|
16095
16282
|
* @param {Array<string>} [ids]
|
|
@@ -16101,7 +16288,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
16101
16288
|
* @param {*} [options] Override http request option.
|
|
16102
16289
|
* @throws {RequiredError}
|
|
16103
16290
|
*/
|
|
16104
|
-
apiV2HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
|
|
16291
|
+
apiV2HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, mediaCount?: number | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
|
|
16105
16292
|
/**
|
|
16106
16293
|
*
|
|
16107
16294
|
* @summary Get HospitalAccreditation.
|
|
@@ -16477,6 +16664,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
16477
16664
|
* @param {string} [specialtyTypeId]
|
|
16478
16665
|
* @param {string} [specialtyId]
|
|
16479
16666
|
* @param {string} [exceptHospitalId]
|
|
16667
|
+
* @param {number} [mediaCount]
|
|
16480
16668
|
* @param {boolean} [showHidden]
|
|
16481
16669
|
* @param {string} [languageCode]
|
|
16482
16670
|
* @param {Array<string>} [ids]
|
|
@@ -16488,7 +16676,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
16488
16676
|
* @param {*} [options] Override http request option.
|
|
16489
16677
|
* @throws {RequiredError}
|
|
16490
16678
|
*/
|
|
16491
|
-
apiV2HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsSimpleModel>>;
|
|
16679
|
+
apiV2HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, mediaCount?: number | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsSimpleModel>>;
|
|
16492
16680
|
/**
|
|
16493
16681
|
*
|
|
16494
16682
|
* @param {string} slug
|
|
@@ -16515,6 +16703,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
16515
16703
|
* @param {string} [specialtyTypeId]
|
|
16516
16704
|
* @param {string} [specialtyId]
|
|
16517
16705
|
* @param {string} [exceptHospitalId]
|
|
16706
|
+
* @param {number} [mediaCount]
|
|
16518
16707
|
* @param {boolean} [showHidden]
|
|
16519
16708
|
* @param {string} [languageCode]
|
|
16520
16709
|
* @param {Array<string>} [ids]
|
|
@@ -16526,7 +16715,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
16526
16715
|
* @param {*} [options] Override http request option.
|
|
16527
16716
|
* @throws {RequiredError}
|
|
16528
16717
|
*/
|
|
16529
|
-
apiV2HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsModel>;
|
|
16718
|
+
apiV2HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, mediaCount?: number | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsModel>;
|
|
16530
16719
|
/**
|
|
16531
16720
|
*
|
|
16532
16721
|
* @summary Get HospitalAccreditation.
|
|
@@ -16902,6 +17091,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
16902
17091
|
* @param {string} [specialtyTypeId]
|
|
16903
17092
|
* @param {string} [specialtyId]
|
|
16904
17093
|
* @param {string} [exceptHospitalId]
|
|
17094
|
+
* @param {number} [mediaCount]
|
|
16905
17095
|
* @param {boolean} [showHidden]
|
|
16906
17096
|
* @param {string} [languageCode]
|
|
16907
17097
|
* @param {Array<string>} [ids]
|
|
@@ -16913,7 +17103,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
16913
17103
|
* @param {*} [options] Override http request option.
|
|
16914
17104
|
* @throws {RequiredError}
|
|
16915
17105
|
*/
|
|
16916
|
-
apiV2HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsSimpleModel>;
|
|
17106
|
+
apiV2HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, mediaCount?: number | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsSimpleModel>;
|
|
16917
17107
|
/**
|
|
16918
17108
|
*
|
|
16919
17109
|
* @param {string} slug
|
|
@@ -16942,6 +17132,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
16942
17132
|
* @param {string} [specialtyTypeId]
|
|
16943
17133
|
* @param {string} [specialtyId]
|
|
16944
17134
|
* @param {string} [exceptHospitalId]
|
|
17135
|
+
* @param {number} [mediaCount]
|
|
16945
17136
|
* @param {boolean} [showHidden]
|
|
16946
17137
|
* @param {string} [languageCode]
|
|
16947
17138
|
* @param {Array<string>} [ids]
|
|
@@ -16954,7 +17145,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
16954
17145
|
* @throws {RequiredError}
|
|
16955
17146
|
* @memberof HospitalsApi
|
|
16956
17147
|
*/
|
|
16957
|
-
apiV2HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel, any>>;
|
|
17148
|
+
apiV2HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, mediaCount?: number, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel, any>>;
|
|
16958
17149
|
/**
|
|
16959
17150
|
*
|
|
16960
17151
|
* @summary Get HospitalAccreditation.
|
|
@@ -17359,6 +17550,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
17359
17550
|
* @param {string} [specialtyTypeId]
|
|
17360
17551
|
* @param {string} [specialtyId]
|
|
17361
17552
|
* @param {string} [exceptHospitalId]
|
|
17553
|
+
* @param {number} [mediaCount]
|
|
17362
17554
|
* @param {boolean} [showHidden]
|
|
17363
17555
|
* @param {string} [languageCode]
|
|
17364
17556
|
* @param {Array<string>} [ids]
|
|
@@ -17371,7 +17563,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
17371
17563
|
* @throws {RequiredError}
|
|
17372
17564
|
* @memberof HospitalsApi
|
|
17373
17565
|
*/
|
|
17374
|
-
apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsSimpleModel, any>>;
|
|
17566
|
+
apiV2HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, mediaCount?: number, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsSimpleModel, any>>;
|
|
17375
17567
|
/**
|
|
17376
17568
|
*
|
|
17377
17569
|
* @param {string} slug
|