ch-api-client-typescript2 2.8.5 → 2.8.8
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 +398 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +371 -0
- package/package.json +1 -1
- package/src/api.ts +647 -52
package/lib/api.d.ts
CHANGED
|
@@ -3044,6 +3044,67 @@ export interface DealItemModel {
|
|
|
3044
3044
|
*/
|
|
3045
3045
|
'auditableEntity'?: AuditableEntity;
|
|
3046
3046
|
}
|
|
3047
|
+
/**
|
|
3048
|
+
*
|
|
3049
|
+
* @export
|
|
3050
|
+
* @interface DealItemSimpleModel
|
|
3051
|
+
*/
|
|
3052
|
+
export interface DealItemSimpleModel {
|
|
3053
|
+
/**
|
|
3054
|
+
*
|
|
3055
|
+
* @type {string}
|
|
3056
|
+
* @memberof DealItemSimpleModel
|
|
3057
|
+
*/
|
|
3058
|
+
'id'?: string;
|
|
3059
|
+
/**
|
|
3060
|
+
*
|
|
3061
|
+
* @type {string}
|
|
3062
|
+
* @memberof DealItemSimpleModel
|
|
3063
|
+
*/
|
|
3064
|
+
'name'?: string | null;
|
|
3065
|
+
/**
|
|
3066
|
+
*
|
|
3067
|
+
* @type {string}
|
|
3068
|
+
* @memberof DealItemSimpleModel
|
|
3069
|
+
*/
|
|
3070
|
+
'normalizedName'?: string | null;
|
|
3071
|
+
/**
|
|
3072
|
+
*
|
|
3073
|
+
* @type {string}
|
|
3074
|
+
* @memberof DealItemSimpleModel
|
|
3075
|
+
*/
|
|
3076
|
+
'slug'?: string | null;
|
|
3077
|
+
/**
|
|
3078
|
+
*
|
|
3079
|
+
* @type {string}
|
|
3080
|
+
* @memberof DealItemSimpleModel
|
|
3081
|
+
*/
|
|
3082
|
+
'hospitalId'?: string;
|
|
3083
|
+
/**
|
|
3084
|
+
*
|
|
3085
|
+
* @type {string}
|
|
3086
|
+
* @memberof DealItemSimpleModel
|
|
3087
|
+
*/
|
|
3088
|
+
'hospitalName'?: string | null;
|
|
3089
|
+
/**
|
|
3090
|
+
*
|
|
3091
|
+
* @type {Array<LocalizedUrlModel>}
|
|
3092
|
+
* @memberof DealItemSimpleModel
|
|
3093
|
+
*/
|
|
3094
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
3095
|
+
/**
|
|
3096
|
+
*
|
|
3097
|
+
* @type {boolean}
|
|
3098
|
+
* @memberof DealItemSimpleModel
|
|
3099
|
+
*/
|
|
3100
|
+
'confirmed'?: boolean;
|
|
3101
|
+
/**
|
|
3102
|
+
*
|
|
3103
|
+
* @type {AuditableEntity}
|
|
3104
|
+
* @memberof DealItemSimpleModel
|
|
3105
|
+
*/
|
|
3106
|
+
'auditableEntity'?: AuditableEntity;
|
|
3107
|
+
}
|
|
3047
3108
|
/**
|
|
3048
3109
|
*
|
|
3049
3110
|
* @export
|
|
@@ -3466,6 +3527,25 @@ export interface DealsModel {
|
|
|
3466
3527
|
*/
|
|
3467
3528
|
'metaData'?: PagedListMetaData;
|
|
3468
3529
|
}
|
|
3530
|
+
/**
|
|
3531
|
+
*
|
|
3532
|
+
* @export
|
|
3533
|
+
* @interface DealsSimpleModel
|
|
3534
|
+
*/
|
|
3535
|
+
export interface DealsSimpleModel {
|
|
3536
|
+
/**
|
|
3537
|
+
*
|
|
3538
|
+
* @type {Array<DealItemSimpleModel>}
|
|
3539
|
+
* @memberof DealsSimpleModel
|
|
3540
|
+
*/
|
|
3541
|
+
'items'?: Array<DealItemSimpleModel> | null;
|
|
3542
|
+
/**
|
|
3543
|
+
*
|
|
3544
|
+
* @type {PagedListMetaData}
|
|
3545
|
+
* @memberof DealsSimpleModel
|
|
3546
|
+
*/
|
|
3547
|
+
'metaData'?: PagedListMetaData;
|
|
3548
|
+
}
|
|
3469
3549
|
/**
|
|
3470
3550
|
*
|
|
3471
3551
|
* @export
|
|
@@ -5930,6 +6010,18 @@ export interface HospitalServiceItemModel {
|
|
|
5930
6010
|
* @memberof HospitalServiceItemModel
|
|
5931
6011
|
*/
|
|
5932
6012
|
'confirmed'?: boolean;
|
|
6013
|
+
/**
|
|
6014
|
+
*
|
|
6015
|
+
* @type {string}
|
|
6016
|
+
* @memberof HospitalServiceItemModel
|
|
6017
|
+
*/
|
|
6018
|
+
'photo'?: string | null;
|
|
6019
|
+
/**
|
|
6020
|
+
*
|
|
6021
|
+
* @type {string}
|
|
6022
|
+
* @memberof HospitalServiceItemModel
|
|
6023
|
+
*/
|
|
6024
|
+
'photoThumbnail'?: string | null;
|
|
5933
6025
|
/**
|
|
5934
6026
|
*
|
|
5935
6027
|
* @type {AuditableEntity}
|
|
@@ -6069,6 +6161,18 @@ export interface HospitalServiceModel {
|
|
|
6069
6161
|
* @memberof HospitalServiceModel
|
|
6070
6162
|
*/
|
|
6071
6163
|
'confirmed'?: boolean;
|
|
6164
|
+
/**
|
|
6165
|
+
*
|
|
6166
|
+
* @type {string}
|
|
6167
|
+
* @memberof HospitalServiceModel
|
|
6168
|
+
*/
|
|
6169
|
+
'photo'?: string | null;
|
|
6170
|
+
/**
|
|
6171
|
+
*
|
|
6172
|
+
* @type {string}
|
|
6173
|
+
* @memberof HospitalServiceModel
|
|
6174
|
+
*/
|
|
6175
|
+
'photoThumbnail'?: string | null;
|
|
6072
6176
|
/**
|
|
6073
6177
|
*
|
|
6074
6178
|
* @type {AuditableEntity}
|
|
@@ -6145,6 +6249,25 @@ export interface HospitalSpecialtiesModel {
|
|
|
6145
6249
|
*/
|
|
6146
6250
|
'metaData'?: PagedListMetaData;
|
|
6147
6251
|
}
|
|
6252
|
+
/**
|
|
6253
|
+
*
|
|
6254
|
+
* @export
|
|
6255
|
+
* @interface HospitalSpecialtiesSimpleModel
|
|
6256
|
+
*/
|
|
6257
|
+
export interface HospitalSpecialtiesSimpleModel {
|
|
6258
|
+
/**
|
|
6259
|
+
*
|
|
6260
|
+
* @type {Array<HospitalSpecialtySimpleItemModel>}
|
|
6261
|
+
* @memberof HospitalSpecialtiesSimpleModel
|
|
6262
|
+
*/
|
|
6263
|
+
'items'?: Array<HospitalSpecialtySimpleItemModel> | null;
|
|
6264
|
+
/**
|
|
6265
|
+
*
|
|
6266
|
+
* @type {PagedListMetaData}
|
|
6267
|
+
* @memberof HospitalSpecialtiesSimpleModel
|
|
6268
|
+
*/
|
|
6269
|
+
'metaData'?: PagedListMetaData;
|
|
6270
|
+
}
|
|
6148
6271
|
/**
|
|
6149
6272
|
*
|
|
6150
6273
|
* @export
|
|
@@ -6253,6 +6376,30 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6253
6376
|
* @memberof HospitalSpecialtyItemModel
|
|
6254
6377
|
*/
|
|
6255
6378
|
'confirmed'?: boolean;
|
|
6379
|
+
/**
|
|
6380
|
+
*
|
|
6381
|
+
* @type {string}
|
|
6382
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6383
|
+
*/
|
|
6384
|
+
'photo'?: string | null;
|
|
6385
|
+
/**
|
|
6386
|
+
*
|
|
6387
|
+
* @type {string}
|
|
6388
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6389
|
+
*/
|
|
6390
|
+
'photoThumbnail'?: string | null;
|
|
6391
|
+
/**
|
|
6392
|
+
*
|
|
6393
|
+
* @type {string}
|
|
6394
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6395
|
+
*/
|
|
6396
|
+
'background'?: string | null;
|
|
6397
|
+
/**
|
|
6398
|
+
*
|
|
6399
|
+
* @type {string}
|
|
6400
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6401
|
+
*/
|
|
6402
|
+
'backgroundThumbnail'?: string | null;
|
|
6256
6403
|
/**
|
|
6257
6404
|
*
|
|
6258
6405
|
* @type {Array<MediaModel>}
|
|
@@ -6374,6 +6521,30 @@ export interface HospitalSpecialtyModel {
|
|
|
6374
6521
|
* @memberof HospitalSpecialtyModel
|
|
6375
6522
|
*/
|
|
6376
6523
|
'confirmed'?: boolean;
|
|
6524
|
+
/**
|
|
6525
|
+
*
|
|
6526
|
+
* @type {string}
|
|
6527
|
+
* @memberof HospitalSpecialtyModel
|
|
6528
|
+
*/
|
|
6529
|
+
'photo'?: string | null;
|
|
6530
|
+
/**
|
|
6531
|
+
*
|
|
6532
|
+
* @type {string}
|
|
6533
|
+
* @memberof HospitalSpecialtyModel
|
|
6534
|
+
*/
|
|
6535
|
+
'photoThumbnail'?: string | null;
|
|
6536
|
+
/**
|
|
6537
|
+
*
|
|
6538
|
+
* @type {string}
|
|
6539
|
+
* @memberof HospitalSpecialtyModel
|
|
6540
|
+
*/
|
|
6541
|
+
'background'?: string | null;
|
|
6542
|
+
/**
|
|
6543
|
+
*
|
|
6544
|
+
* @type {string}
|
|
6545
|
+
* @memberof HospitalSpecialtyModel
|
|
6546
|
+
*/
|
|
6547
|
+
'backgroundThumbnail'?: string | null;
|
|
6377
6548
|
/**
|
|
6378
6549
|
*
|
|
6379
6550
|
* @type {Array<MediaModel>}
|
|
@@ -6393,6 +6564,43 @@ export interface HospitalSpecialtyModel {
|
|
|
6393
6564
|
*/
|
|
6394
6565
|
'languageCode'?: string | null;
|
|
6395
6566
|
}
|
|
6567
|
+
/**
|
|
6568
|
+
*
|
|
6569
|
+
* @export
|
|
6570
|
+
* @interface HospitalSpecialtySimpleItemModel
|
|
6571
|
+
*/
|
|
6572
|
+
export interface HospitalSpecialtySimpleItemModel {
|
|
6573
|
+
/**
|
|
6574
|
+
*
|
|
6575
|
+
* @type {string}
|
|
6576
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
6577
|
+
*/
|
|
6578
|
+
'id'?: string;
|
|
6579
|
+
/**
|
|
6580
|
+
*
|
|
6581
|
+
* @type {string}
|
|
6582
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
6583
|
+
*/
|
|
6584
|
+
'specialtyName'?: string | null;
|
|
6585
|
+
/**
|
|
6586
|
+
*
|
|
6587
|
+
* @type {string}
|
|
6588
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
6589
|
+
*/
|
|
6590
|
+
'hospitalSpecialtySlug'?: string | null;
|
|
6591
|
+
/**
|
|
6592
|
+
*
|
|
6593
|
+
* @type {string}
|
|
6594
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
6595
|
+
*/
|
|
6596
|
+
'description'?: string | null;
|
|
6597
|
+
/**
|
|
6598
|
+
*
|
|
6599
|
+
* @type {boolean}
|
|
6600
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
6601
|
+
*/
|
|
6602
|
+
'confirmed'?: boolean;
|
|
6603
|
+
}
|
|
6396
6604
|
/**
|
|
6397
6605
|
*
|
|
6398
6606
|
* @export
|
|
@@ -11449,6 +11657,31 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
11449
11657
|
* @throws {RequiredError}
|
|
11450
11658
|
*/
|
|
11451
11659
|
apiV2DealsGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11660
|
+
/**
|
|
11661
|
+
*
|
|
11662
|
+
* @summary Get all deals.
|
|
11663
|
+
* @param {string} [id]
|
|
11664
|
+
* @param {string} [name]
|
|
11665
|
+
* @param {MarketingType} [marketingType]
|
|
11666
|
+
* @param {string} [countryId]
|
|
11667
|
+
* @param {string} [hospitalId]
|
|
11668
|
+
* @param {string} [hospitalName]
|
|
11669
|
+
* @param {string} [specialtyId]
|
|
11670
|
+
* @param {string} [specialtyTypeId]
|
|
11671
|
+
* @param {string} [serviceId]
|
|
11672
|
+
* @param {string} [exceptHospitalId]
|
|
11673
|
+
* @param {string} [exceptDealId]
|
|
11674
|
+
* @param {Array<string>} [ids]
|
|
11675
|
+
* @param {string} [languageCode]
|
|
11676
|
+
* @param {boolean} [showHidden]
|
|
11677
|
+
* @param {boolean} [returnDefaultValue]
|
|
11678
|
+
* @param {number} [page]
|
|
11679
|
+
* @param {number} [limit]
|
|
11680
|
+
* @param {Date} [lastRetrieved]
|
|
11681
|
+
* @param {*} [options] Override http request option.
|
|
11682
|
+
* @throws {RequiredError}
|
|
11683
|
+
*/
|
|
11684
|
+
apiV2DealsSimpleGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11452
11685
|
/**
|
|
11453
11686
|
*
|
|
11454
11687
|
* @summary Get deal by slug.
|
|
@@ -11546,6 +11779,31 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
11546
11779
|
* @throws {RequiredError}
|
|
11547
11780
|
*/
|
|
11548
11781
|
apiV2DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
|
|
11782
|
+
/**
|
|
11783
|
+
*
|
|
11784
|
+
* @summary Get all deals.
|
|
11785
|
+
* @param {string} [id]
|
|
11786
|
+
* @param {string} [name]
|
|
11787
|
+
* @param {MarketingType} [marketingType]
|
|
11788
|
+
* @param {string} [countryId]
|
|
11789
|
+
* @param {string} [hospitalId]
|
|
11790
|
+
* @param {string} [hospitalName]
|
|
11791
|
+
* @param {string} [specialtyId]
|
|
11792
|
+
* @param {string} [specialtyTypeId]
|
|
11793
|
+
* @param {string} [serviceId]
|
|
11794
|
+
* @param {string} [exceptHospitalId]
|
|
11795
|
+
* @param {string} [exceptDealId]
|
|
11796
|
+
* @param {Array<string>} [ids]
|
|
11797
|
+
* @param {string} [languageCode]
|
|
11798
|
+
* @param {boolean} [showHidden]
|
|
11799
|
+
* @param {boolean} [returnDefaultValue]
|
|
11800
|
+
* @param {number} [page]
|
|
11801
|
+
* @param {number} [limit]
|
|
11802
|
+
* @param {Date} [lastRetrieved]
|
|
11803
|
+
* @param {*} [options] Override http request option.
|
|
11804
|
+
* @throws {RequiredError}
|
|
11805
|
+
*/
|
|
11806
|
+
apiV2DealsSimpleGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsSimpleModel>>;
|
|
11549
11807
|
/**
|
|
11550
11808
|
*
|
|
11551
11809
|
* @summary Get deal by slug.
|
|
@@ -11643,6 +11901,31 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
11643
11901
|
* @throws {RequiredError}
|
|
11644
11902
|
*/
|
|
11645
11903
|
apiV2DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
|
|
11904
|
+
/**
|
|
11905
|
+
*
|
|
11906
|
+
* @summary Get all deals.
|
|
11907
|
+
* @param {string} [id]
|
|
11908
|
+
* @param {string} [name]
|
|
11909
|
+
* @param {MarketingType} [marketingType]
|
|
11910
|
+
* @param {string} [countryId]
|
|
11911
|
+
* @param {string} [hospitalId]
|
|
11912
|
+
* @param {string} [hospitalName]
|
|
11913
|
+
* @param {string} [specialtyId]
|
|
11914
|
+
* @param {string} [specialtyTypeId]
|
|
11915
|
+
* @param {string} [serviceId]
|
|
11916
|
+
* @param {string} [exceptHospitalId]
|
|
11917
|
+
* @param {string} [exceptDealId]
|
|
11918
|
+
* @param {Array<string>} [ids]
|
|
11919
|
+
* @param {string} [languageCode]
|
|
11920
|
+
* @param {boolean} [showHidden]
|
|
11921
|
+
* @param {boolean} [returnDefaultValue]
|
|
11922
|
+
* @param {number} [page]
|
|
11923
|
+
* @param {number} [limit]
|
|
11924
|
+
* @param {Date} [lastRetrieved]
|
|
11925
|
+
* @param {*} [options] Override http request option.
|
|
11926
|
+
* @throws {RequiredError}
|
|
11927
|
+
*/
|
|
11928
|
+
apiV2DealsSimpleGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsSimpleModel>;
|
|
11646
11929
|
/**
|
|
11647
11930
|
*
|
|
11648
11931
|
* @summary Get deal by slug.
|
|
@@ -11748,6 +12031,32 @@ export declare class DealsApi extends BaseAPI {
|
|
|
11748
12031
|
* @memberof DealsApi
|
|
11749
12032
|
*/
|
|
11750
12033
|
apiV2DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, serviceId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel, any>>;
|
|
12034
|
+
/**
|
|
12035
|
+
*
|
|
12036
|
+
* @summary Get all deals.
|
|
12037
|
+
* @param {string} [id]
|
|
12038
|
+
* @param {string} [name]
|
|
12039
|
+
* @param {MarketingType} [marketingType]
|
|
12040
|
+
* @param {string} [countryId]
|
|
12041
|
+
* @param {string} [hospitalId]
|
|
12042
|
+
* @param {string} [hospitalName]
|
|
12043
|
+
* @param {string} [specialtyId]
|
|
12044
|
+
* @param {string} [specialtyTypeId]
|
|
12045
|
+
* @param {string} [serviceId]
|
|
12046
|
+
* @param {string} [exceptHospitalId]
|
|
12047
|
+
* @param {string} [exceptDealId]
|
|
12048
|
+
* @param {Array<string>} [ids]
|
|
12049
|
+
* @param {string} [languageCode]
|
|
12050
|
+
* @param {boolean} [showHidden]
|
|
12051
|
+
* @param {boolean} [returnDefaultValue]
|
|
12052
|
+
* @param {number} [page]
|
|
12053
|
+
* @param {number} [limit]
|
|
12054
|
+
* @param {Date} [lastRetrieved]
|
|
12055
|
+
* @param {*} [options] Override http request option.
|
|
12056
|
+
* @throws {RequiredError}
|
|
12057
|
+
* @memberof DealsApi
|
|
12058
|
+
*/
|
|
12059
|
+
apiV2DealsSimpleGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, serviceId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsSimpleModel, any>>;
|
|
11751
12060
|
/**
|
|
11752
12061
|
*
|
|
11753
12062
|
* @summary Get deal by slug.
|
|
@@ -13252,6 +13561,28 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13252
13561
|
* @throws {RequiredError}
|
|
13253
13562
|
*/
|
|
13254
13563
|
apiV2HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13564
|
+
/**
|
|
13565
|
+
*
|
|
13566
|
+
* @summary Get all HospitalSpecialties.
|
|
13567
|
+
* @param {string} hospitalId
|
|
13568
|
+
* @param {string} [hospitalName]
|
|
13569
|
+
* @param {string} [hospitalSlug]
|
|
13570
|
+
* @param {string} [specialtyId]
|
|
13571
|
+
* @param {string} [specialtyName]
|
|
13572
|
+
* @param {string} [specialtyTypeId]
|
|
13573
|
+
* @param {string} [title]
|
|
13574
|
+
* @param {MarketingType} [marketingType]
|
|
13575
|
+
* @param {string} [languageCode]
|
|
13576
|
+
* @param {boolean} [showHidden]
|
|
13577
|
+
* @param {boolean} [returnDefaultValue]
|
|
13578
|
+
* @param {boolean} [includeServices]
|
|
13579
|
+
* @param {number} [page]
|
|
13580
|
+
* @param {number} [limit]
|
|
13581
|
+
* @param {Date} [lastRetrieved]
|
|
13582
|
+
* @param {*} [options] Override http request option.
|
|
13583
|
+
* @throws {RequiredError}
|
|
13584
|
+
*/
|
|
13585
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13255
13586
|
/**
|
|
13256
13587
|
*
|
|
13257
13588
|
* @summary Get HospitalSpecialty.
|
|
@@ -13550,6 +13881,28 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
13550
13881
|
* @throws {RequiredError}
|
|
13551
13882
|
*/
|
|
13552
13883
|
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
|
|
13884
|
+
/**
|
|
13885
|
+
*
|
|
13886
|
+
* @summary Get all HospitalSpecialties.
|
|
13887
|
+
* @param {string} hospitalId
|
|
13888
|
+
* @param {string} [hospitalName]
|
|
13889
|
+
* @param {string} [hospitalSlug]
|
|
13890
|
+
* @param {string} [specialtyId]
|
|
13891
|
+
* @param {string} [specialtyName]
|
|
13892
|
+
* @param {string} [specialtyTypeId]
|
|
13893
|
+
* @param {string} [title]
|
|
13894
|
+
* @param {MarketingType} [marketingType]
|
|
13895
|
+
* @param {string} [languageCode]
|
|
13896
|
+
* @param {boolean} [showHidden]
|
|
13897
|
+
* @param {boolean} [returnDefaultValue]
|
|
13898
|
+
* @param {boolean} [includeServices]
|
|
13899
|
+
* @param {number} [page]
|
|
13900
|
+
* @param {number} [limit]
|
|
13901
|
+
* @param {Date} [lastRetrieved]
|
|
13902
|
+
* @param {*} [options] Override http request option.
|
|
13903
|
+
* @throws {RequiredError}
|
|
13904
|
+
*/
|
|
13905
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesSimpleModel>>;
|
|
13553
13906
|
/**
|
|
13554
13907
|
*
|
|
13555
13908
|
* @summary Get HospitalSpecialty.
|
|
@@ -13848,6 +14201,28 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
13848
14201
|
* @throws {RequiredError}
|
|
13849
14202
|
*/
|
|
13850
14203
|
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
|
|
14204
|
+
/**
|
|
14205
|
+
*
|
|
14206
|
+
* @summary Get all HospitalSpecialties.
|
|
14207
|
+
* @param {string} hospitalId
|
|
14208
|
+
* @param {string} [hospitalName]
|
|
14209
|
+
* @param {string} [hospitalSlug]
|
|
14210
|
+
* @param {string} [specialtyId]
|
|
14211
|
+
* @param {string} [specialtyName]
|
|
14212
|
+
* @param {string} [specialtyTypeId]
|
|
14213
|
+
* @param {string} [title]
|
|
14214
|
+
* @param {MarketingType} [marketingType]
|
|
14215
|
+
* @param {string} [languageCode]
|
|
14216
|
+
* @param {boolean} [showHidden]
|
|
14217
|
+
* @param {boolean} [returnDefaultValue]
|
|
14218
|
+
* @param {boolean} [includeServices]
|
|
14219
|
+
* @param {number} [page]
|
|
14220
|
+
* @param {number} [limit]
|
|
14221
|
+
* @param {Date} [lastRetrieved]
|
|
14222
|
+
* @param {*} [options] Override http request option.
|
|
14223
|
+
* @throws {RequiredError}
|
|
14224
|
+
*/
|
|
14225
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesSimpleModel>;
|
|
13851
14226
|
/**
|
|
13852
14227
|
*
|
|
13853
14228
|
* @summary Get HospitalSpecialty.
|
|
@@ -14161,6 +14536,29 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
14161
14536
|
* @memberof HospitalsApi
|
|
14162
14537
|
*/
|
|
14163
14538
|
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel, any>>;
|
|
14539
|
+
/**
|
|
14540
|
+
*
|
|
14541
|
+
* @summary Get all HospitalSpecialties.
|
|
14542
|
+
* @param {string} hospitalId
|
|
14543
|
+
* @param {string} [hospitalName]
|
|
14544
|
+
* @param {string} [hospitalSlug]
|
|
14545
|
+
* @param {string} [specialtyId]
|
|
14546
|
+
* @param {string} [specialtyName]
|
|
14547
|
+
* @param {string} [specialtyTypeId]
|
|
14548
|
+
* @param {string} [title]
|
|
14549
|
+
* @param {MarketingType} [marketingType]
|
|
14550
|
+
* @param {string} [languageCode]
|
|
14551
|
+
* @param {boolean} [showHidden]
|
|
14552
|
+
* @param {boolean} [returnDefaultValue]
|
|
14553
|
+
* @param {boolean} [includeServices]
|
|
14554
|
+
* @param {number} [page]
|
|
14555
|
+
* @param {number} [limit]
|
|
14556
|
+
* @param {Date} [lastRetrieved]
|
|
14557
|
+
* @param {*} [options] Override http request option.
|
|
14558
|
+
* @throws {RequiredError}
|
|
14559
|
+
* @memberof HospitalsApi
|
|
14560
|
+
*/
|
|
14561
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesSimpleModel, any>>;
|
|
14164
14562
|
/**
|
|
14165
14563
|
*
|
|
14166
14564
|
* @summary Get HospitalSpecialty.
|