ch-api-client-typescript2 2.8.10 → 2.8.13
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 +56 -73
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +76 -144
- package/package.json +1 -1
- package/src/api.ts +93 -139
package/lib/api.d.ts
CHANGED
|
@@ -5938,6 +5938,12 @@ export interface HospitalServiceItemModel {
|
|
|
5938
5938
|
* @memberof HospitalServiceItemModel
|
|
5939
5939
|
*/
|
|
5940
5940
|
'hospitalName'?: string | null;
|
|
5941
|
+
/**
|
|
5942
|
+
*
|
|
5943
|
+
* @type {string}
|
|
5944
|
+
* @memberof HospitalServiceItemModel
|
|
5945
|
+
*/
|
|
5946
|
+
'hospitalSlug'?: string | null;
|
|
5941
5947
|
/**
|
|
5942
5948
|
*
|
|
5943
5949
|
* @type {string}
|
|
@@ -6095,6 +6101,12 @@ export interface HospitalServiceModel {
|
|
|
6095
6101
|
* @memberof HospitalServiceModel
|
|
6096
6102
|
*/
|
|
6097
6103
|
'hospitalName'?: string | null;
|
|
6104
|
+
/**
|
|
6105
|
+
*
|
|
6106
|
+
* @type {string}
|
|
6107
|
+
* @memberof HospitalServiceModel
|
|
6108
|
+
*/
|
|
6109
|
+
'hospitalSlug'?: string | null;
|
|
6098
6110
|
/**
|
|
6099
6111
|
*
|
|
6100
6112
|
* @type {string}
|
|
@@ -11089,10 +11101,11 @@ export declare const ContributorsApiAxiosParamCreator: (configuration?: Configur
|
|
|
11089
11101
|
* @summary Get Contributor.
|
|
11090
11102
|
* @param {string} contributorId
|
|
11091
11103
|
* @param {string} [languageCode]
|
|
11104
|
+
* @param {boolean} [returnDefaultValue]
|
|
11092
11105
|
* @param {*} [options] Override http request option.
|
|
11093
11106
|
* @throws {RequiredError}
|
|
11094
11107
|
*/
|
|
11095
|
-
apiV2ContributorsContributorIdGet: (contributorId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11108
|
+
apiV2ContributorsContributorIdGet: (contributorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11096
11109
|
/**
|
|
11097
11110
|
*
|
|
11098
11111
|
* @summary Get all ContributorHandles.
|
|
@@ -11127,24 +11140,26 @@ export declare const ContributorsApiAxiosParamCreator: (configuration?: Configur
|
|
|
11127
11140
|
* @param {string} [website]
|
|
11128
11141
|
* @param {string} [hospitalId]
|
|
11129
11142
|
* @param {boolean} [interviewerOnly]
|
|
11130
|
-
* @param {string} [languageCode]
|
|
11131
11143
|
* @param {boolean} [showHidden]
|
|
11144
|
+
* @param {string} [languageCode]
|
|
11145
|
+
* @param {boolean} [returnDefaultValue]
|
|
11132
11146
|
* @param {number} [page]
|
|
11133
11147
|
* @param {number} [limit]
|
|
11134
11148
|
* @param {Date} [lastRetrieved]
|
|
11135
11149
|
* @param {*} [options] Override http request option.
|
|
11136
11150
|
* @throws {RequiredError}
|
|
11137
11151
|
*/
|
|
11138
|
-
apiV2ContributorsGet: (id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, languageCode?: string | undefined,
|
|
11152
|
+
apiV2ContributorsGet: (id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11139
11153
|
/**
|
|
11140
11154
|
*
|
|
11141
11155
|
* @summary Get Contributor by slug.
|
|
11142
11156
|
* @param {string} slug
|
|
11143
11157
|
* @param {string} [languageCode]
|
|
11158
|
+
* @param {boolean} [returnDefaultValue]
|
|
11144
11159
|
* @param {*} [options] Override http request option.
|
|
11145
11160
|
* @throws {RequiredError}
|
|
11146
11161
|
*/
|
|
11147
|
-
apiV2ContributorsSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11162
|
+
apiV2ContributorsSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11148
11163
|
};
|
|
11149
11164
|
/**
|
|
11150
11165
|
* ContributorsApi - functional programming interface
|
|
@@ -11156,10 +11171,11 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
|
|
|
11156
11171
|
* @summary Get Contributor.
|
|
11157
11172
|
* @param {string} contributorId
|
|
11158
11173
|
* @param {string} [languageCode]
|
|
11174
|
+
* @param {boolean} [returnDefaultValue]
|
|
11159
11175
|
* @param {*} [options] Override http request option.
|
|
11160
11176
|
* @throws {RequiredError}
|
|
11161
11177
|
*/
|
|
11162
|
-
apiV2ContributorsContributorIdGet(contributorId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorModel>>;
|
|
11178
|
+
apiV2ContributorsContributorIdGet(contributorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorModel>>;
|
|
11163
11179
|
/**
|
|
11164
11180
|
*
|
|
11165
11181
|
* @summary Get all ContributorHandles.
|
|
@@ -11194,24 +11210,26 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
|
|
|
11194
11210
|
* @param {string} [website]
|
|
11195
11211
|
* @param {string} [hospitalId]
|
|
11196
11212
|
* @param {boolean} [interviewerOnly]
|
|
11197
|
-
* @param {string} [languageCode]
|
|
11198
11213
|
* @param {boolean} [showHidden]
|
|
11214
|
+
* @param {string} [languageCode]
|
|
11215
|
+
* @param {boolean} [returnDefaultValue]
|
|
11199
11216
|
* @param {number} [page]
|
|
11200
11217
|
* @param {number} [limit]
|
|
11201
11218
|
* @param {Date} [lastRetrieved]
|
|
11202
11219
|
* @param {*} [options] Override http request option.
|
|
11203
11220
|
* @throws {RequiredError}
|
|
11204
11221
|
*/
|
|
11205
|
-
apiV2ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, languageCode?: string | undefined,
|
|
11222
|
+
apiV2ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, languageCode?: string | 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<ContributorsModel>>;
|
|
11206
11223
|
/**
|
|
11207
11224
|
*
|
|
11208
11225
|
* @summary Get Contributor by slug.
|
|
11209
11226
|
* @param {string} slug
|
|
11210
11227
|
* @param {string} [languageCode]
|
|
11228
|
+
* @param {boolean} [returnDefaultValue]
|
|
11211
11229
|
* @param {*} [options] Override http request option.
|
|
11212
11230
|
* @throws {RequiredError}
|
|
11213
11231
|
*/
|
|
11214
|
-
apiV2ContributorsSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorModel>>;
|
|
11232
|
+
apiV2ContributorsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorModel>>;
|
|
11215
11233
|
};
|
|
11216
11234
|
/**
|
|
11217
11235
|
* ContributorsApi - factory interface
|
|
@@ -11223,10 +11241,11 @@ export declare const ContributorsApiFactory: (configuration?: Configuration | un
|
|
|
11223
11241
|
* @summary Get Contributor.
|
|
11224
11242
|
* @param {string} contributorId
|
|
11225
11243
|
* @param {string} [languageCode]
|
|
11244
|
+
* @param {boolean} [returnDefaultValue]
|
|
11226
11245
|
* @param {*} [options] Override http request option.
|
|
11227
11246
|
* @throws {RequiredError}
|
|
11228
11247
|
*/
|
|
11229
|
-
apiV2ContributorsContributorIdGet(contributorId: string, languageCode?: string | undefined, options?: any): AxiosPromise<ContributorModel>;
|
|
11248
|
+
apiV2ContributorsContributorIdGet(contributorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<ContributorModel>;
|
|
11230
11249
|
/**
|
|
11231
11250
|
*
|
|
11232
11251
|
* @summary Get all ContributorHandles.
|
|
@@ -11261,24 +11280,26 @@ export declare const ContributorsApiFactory: (configuration?: Configuration | un
|
|
|
11261
11280
|
* @param {string} [website]
|
|
11262
11281
|
* @param {string} [hospitalId]
|
|
11263
11282
|
* @param {boolean} [interviewerOnly]
|
|
11264
|
-
* @param {string} [languageCode]
|
|
11265
11283
|
* @param {boolean} [showHidden]
|
|
11284
|
+
* @param {string} [languageCode]
|
|
11285
|
+
* @param {boolean} [returnDefaultValue]
|
|
11266
11286
|
* @param {number} [page]
|
|
11267
11287
|
* @param {number} [limit]
|
|
11268
11288
|
* @param {Date} [lastRetrieved]
|
|
11269
11289
|
* @param {*} [options] Override http request option.
|
|
11270
11290
|
* @throws {RequiredError}
|
|
11271
11291
|
*/
|
|
11272
|
-
apiV2ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, languageCode?: string | undefined,
|
|
11292
|
+
apiV2ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ContributorsModel>;
|
|
11273
11293
|
/**
|
|
11274
11294
|
*
|
|
11275
11295
|
* @summary Get Contributor by slug.
|
|
11276
11296
|
* @param {string} slug
|
|
11277
11297
|
* @param {string} [languageCode]
|
|
11298
|
+
* @param {boolean} [returnDefaultValue]
|
|
11278
11299
|
* @param {*} [options] Override http request option.
|
|
11279
11300
|
* @throws {RequiredError}
|
|
11280
11301
|
*/
|
|
11281
|
-
apiV2ContributorsSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<ContributorModel>;
|
|
11302
|
+
apiV2ContributorsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<ContributorModel>;
|
|
11282
11303
|
};
|
|
11283
11304
|
/**
|
|
11284
11305
|
* ContributorsApi - object-oriented interface
|
|
@@ -11292,11 +11313,12 @@ export declare class ContributorsApi extends BaseAPI {
|
|
|
11292
11313
|
* @summary Get Contributor.
|
|
11293
11314
|
* @param {string} contributorId
|
|
11294
11315
|
* @param {string} [languageCode]
|
|
11316
|
+
* @param {boolean} [returnDefaultValue]
|
|
11295
11317
|
* @param {*} [options] Override http request option.
|
|
11296
11318
|
* @throws {RequiredError}
|
|
11297
11319
|
* @memberof ContributorsApi
|
|
11298
11320
|
*/
|
|
11299
|
-
apiV2ContributorsContributorIdGet(contributorId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorModel, any>>;
|
|
11321
|
+
apiV2ContributorsContributorIdGet(contributorId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorModel, any>>;
|
|
11300
11322
|
/**
|
|
11301
11323
|
*
|
|
11302
11324
|
* @summary Get all ContributorHandles.
|
|
@@ -11333,8 +11355,9 @@ export declare class ContributorsApi extends BaseAPI {
|
|
|
11333
11355
|
* @param {string} [website]
|
|
11334
11356
|
* @param {string} [hospitalId]
|
|
11335
11357
|
* @param {boolean} [interviewerOnly]
|
|
11336
|
-
* @param {string} [languageCode]
|
|
11337
11358
|
* @param {boolean} [showHidden]
|
|
11359
|
+
* @param {string} [languageCode]
|
|
11360
|
+
* @param {boolean} [returnDefaultValue]
|
|
11338
11361
|
* @param {number} [page]
|
|
11339
11362
|
* @param {number} [limit]
|
|
11340
11363
|
* @param {Date} [lastRetrieved]
|
|
@@ -11342,17 +11365,18 @@ export declare class ContributorsApi extends BaseAPI {
|
|
|
11342
11365
|
* @throws {RequiredError}
|
|
11343
11366
|
* @memberof ContributorsApi
|
|
11344
11367
|
*/
|
|
11345
|
-
apiV2ContributorsGet(id?: string, name?: string, email?: string, description?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, languageCode?: string,
|
|
11368
|
+
apiV2ContributorsGet(id?: string, name?: string, email?: string, description?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, showHidden?: boolean, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorsModel, any>>;
|
|
11346
11369
|
/**
|
|
11347
11370
|
*
|
|
11348
11371
|
* @summary Get Contributor by slug.
|
|
11349
11372
|
* @param {string} slug
|
|
11350
11373
|
* @param {string} [languageCode]
|
|
11374
|
+
* @param {boolean} [returnDefaultValue]
|
|
11351
11375
|
* @param {*} [options] Override http request option.
|
|
11352
11376
|
* @throws {RequiredError}
|
|
11353
11377
|
* @memberof ContributorsApi
|
|
11354
11378
|
*/
|
|
11355
|
-
apiV2ContributorsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorModel, any>>;
|
|
11379
|
+
apiV2ContributorsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorModel, any>>;
|
|
11356
11380
|
}
|
|
11357
11381
|
/**
|
|
11358
11382
|
* CountriesApi - axios parameter creator
|
|
@@ -13590,6 +13614,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13590
13614
|
* @param {string} [specialtyId]
|
|
13591
13615
|
* @param {string} [specialtyName]
|
|
13592
13616
|
* @param {string} [specialtyTypeId]
|
|
13617
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
13593
13618
|
* @param {string} [title]
|
|
13594
13619
|
* @param {MarketingType} [marketingType]
|
|
13595
13620
|
* @param {string} [languageCode]
|
|
@@ -13602,7 +13627,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13602
13627
|
* @param {*} [options] Override http request option.
|
|
13603
13628
|
* @throws {RequiredError}
|
|
13604
13629
|
*/
|
|
13605
|
-
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>;
|
|
13630
|
+
apiV2HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: 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>;
|
|
13606
13631
|
/**
|
|
13607
13632
|
*
|
|
13608
13633
|
* @summary Get all HospitalSpecialties.
|
|
@@ -13612,6 +13637,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13612
13637
|
* @param {string} [specialtyId]
|
|
13613
13638
|
* @param {string} [specialtyName]
|
|
13614
13639
|
* @param {string} [specialtyTypeId]
|
|
13640
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
13615
13641
|
* @param {string} [title]
|
|
13616
13642
|
* @param {MarketingType} [marketingType]
|
|
13617
13643
|
* @param {string} [languageCode]
|
|
@@ -13624,7 +13650,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13624
13650
|
* @param {*} [options] Override http request option.
|
|
13625
13651
|
* @throws {RequiredError}
|
|
13626
13652
|
*/
|
|
13627
|
-
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>;
|
|
13653
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet: (hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: 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>;
|
|
13628
13654
|
/**
|
|
13629
13655
|
*
|
|
13630
13656
|
* @summary Get HospitalSpecialty.
|
|
@@ -13701,18 +13727,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
13701
13727
|
* @throws {RequiredError}
|
|
13702
13728
|
*/
|
|
13703
13729
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13704
|
-
/**
|
|
13705
|
-
*
|
|
13706
|
-
* @summary Get HospitalSpecialty by Specialty slug
|
|
13707
|
-
* @param {string} hospitalId
|
|
13708
|
-
* @param {string} specialtySlug
|
|
13709
|
-
* @param {string} [languageCode]
|
|
13710
|
-
* @param {boolean} [returnDefaultValue]
|
|
13711
|
-
* @param {boolean} [includeServices]
|
|
13712
|
-
* @param {*} [options] Override http request option.
|
|
13713
|
-
* @throws {RequiredError}
|
|
13714
|
-
*/
|
|
13715
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtySlugGet: (hospitalId: string, specialtySlug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
13716
13730
|
/**
|
|
13717
13731
|
*
|
|
13718
13732
|
* @summary Get all Hospitals.
|
|
@@ -13910,6 +13924,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
13910
13924
|
* @param {string} [specialtyId]
|
|
13911
13925
|
* @param {string} [specialtyName]
|
|
13912
13926
|
* @param {string} [specialtyTypeId]
|
|
13927
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
13913
13928
|
* @param {string} [title]
|
|
13914
13929
|
* @param {MarketingType} [marketingType]
|
|
13915
13930
|
* @param {string} [languageCode]
|
|
@@ -13922,7 +13937,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
13922
13937
|
* @param {*} [options] Override http request option.
|
|
13923
13938
|
* @throws {RequiredError}
|
|
13924
13939
|
*/
|
|
13925
|
-
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>>;
|
|
13940
|
+
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: 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>>;
|
|
13926
13941
|
/**
|
|
13927
13942
|
*
|
|
13928
13943
|
* @summary Get all HospitalSpecialties.
|
|
@@ -13932,6 +13947,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
13932
13947
|
* @param {string} [specialtyId]
|
|
13933
13948
|
* @param {string} [specialtyName]
|
|
13934
13949
|
* @param {string} [specialtyTypeId]
|
|
13950
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
13935
13951
|
* @param {string} [title]
|
|
13936
13952
|
* @param {MarketingType} [marketingType]
|
|
13937
13953
|
* @param {string} [languageCode]
|
|
@@ -13944,7 +13960,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
13944
13960
|
* @param {*} [options] Override http request option.
|
|
13945
13961
|
* @throws {RequiredError}
|
|
13946
13962
|
*/
|
|
13947
|
-
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>>;
|
|
13963
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: 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>>;
|
|
13948
13964
|
/**
|
|
13949
13965
|
*
|
|
13950
13966
|
* @summary Get HospitalSpecialty.
|
|
@@ -14021,18 +14037,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
14021
14037
|
* @throws {RequiredError}
|
|
14022
14038
|
*/
|
|
14023
14039
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
14024
|
-
/**
|
|
14025
|
-
*
|
|
14026
|
-
* @summary Get HospitalSpecialty by Specialty slug
|
|
14027
|
-
* @param {string} hospitalId
|
|
14028
|
-
* @param {string} specialtySlug
|
|
14029
|
-
* @param {string} [languageCode]
|
|
14030
|
-
* @param {boolean} [returnDefaultValue]
|
|
14031
|
-
* @param {boolean} [includeServices]
|
|
14032
|
-
* @param {*} [options] Override http request option.
|
|
14033
|
-
* @throws {RequiredError}
|
|
14034
|
-
*/
|
|
14035
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtySlugGet(hospitalId: string, specialtySlug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
14036
14040
|
/**
|
|
14037
14041
|
*
|
|
14038
14042
|
* @summary Get all Hospitals.
|
|
@@ -14230,6 +14234,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
14230
14234
|
* @param {string} [specialtyId]
|
|
14231
14235
|
* @param {string} [specialtyName]
|
|
14232
14236
|
* @param {string} [specialtyTypeId]
|
|
14237
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
14233
14238
|
* @param {string} [title]
|
|
14234
14239
|
* @param {MarketingType} [marketingType]
|
|
14235
14240
|
* @param {string} [languageCode]
|
|
@@ -14242,7 +14247,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
14242
14247
|
* @param {*} [options] Override http request option.
|
|
14243
14248
|
* @throws {RequiredError}
|
|
14244
14249
|
*/
|
|
14245
|
-
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>;
|
|
14250
|
+
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: 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>;
|
|
14246
14251
|
/**
|
|
14247
14252
|
*
|
|
14248
14253
|
* @summary Get all HospitalSpecialties.
|
|
@@ -14252,6 +14257,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
14252
14257
|
* @param {string} [specialtyId]
|
|
14253
14258
|
* @param {string} [specialtyName]
|
|
14254
14259
|
* @param {string} [specialtyTypeId]
|
|
14260
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
14255
14261
|
* @param {string} [title]
|
|
14256
14262
|
* @param {MarketingType} [marketingType]
|
|
14257
14263
|
* @param {string} [languageCode]
|
|
@@ -14264,7 +14270,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
14264
14270
|
* @param {*} [options] Override http request option.
|
|
14265
14271
|
* @throws {RequiredError}
|
|
14266
14272
|
*/
|
|
14267
|
-
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>;
|
|
14273
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, hospitalSpecialtySlug?: 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>;
|
|
14268
14274
|
/**
|
|
14269
14275
|
*
|
|
14270
14276
|
* @summary Get HospitalSpecialty.
|
|
@@ -14341,18 +14347,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
14341
14347
|
* @throws {RequiredError}
|
|
14342
14348
|
*/
|
|
14343
14349
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
14344
|
-
/**
|
|
14345
|
-
*
|
|
14346
|
-
* @summary Get HospitalSpecialty by Specialty slug
|
|
14347
|
-
* @param {string} hospitalId
|
|
14348
|
-
* @param {string} specialtySlug
|
|
14349
|
-
* @param {string} [languageCode]
|
|
14350
|
-
* @param {boolean} [returnDefaultValue]
|
|
14351
|
-
* @param {boolean} [includeServices]
|
|
14352
|
-
* @param {*} [options] Override http request option.
|
|
14353
|
-
* @throws {RequiredError}
|
|
14354
|
-
*/
|
|
14355
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtySlugGet(hospitalId: string, specialtySlug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
14356
14350
|
/**
|
|
14357
14351
|
*
|
|
14358
14352
|
* @summary Get all Hospitals.
|
|
@@ -14564,6 +14558,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
14564
14558
|
* @param {string} [specialtyId]
|
|
14565
14559
|
* @param {string} [specialtyName]
|
|
14566
14560
|
* @param {string} [specialtyTypeId]
|
|
14561
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
14567
14562
|
* @param {string} [title]
|
|
14568
14563
|
* @param {MarketingType} [marketingType]
|
|
14569
14564
|
* @param {string} [languageCode]
|
|
@@ -14577,7 +14572,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
14577
14572
|
* @throws {RequiredError}
|
|
14578
14573
|
* @memberof HospitalsApi
|
|
14579
14574
|
*/
|
|
14580
|
-
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>>;
|
|
14575
|
+
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, hospitalSpecialtySlug?: 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>>;
|
|
14581
14576
|
/**
|
|
14582
14577
|
*
|
|
14583
14578
|
* @summary Get all HospitalSpecialties.
|
|
@@ -14587,6 +14582,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
14587
14582
|
* @param {string} [specialtyId]
|
|
14588
14583
|
* @param {string} [specialtyName]
|
|
14589
14584
|
* @param {string} [specialtyTypeId]
|
|
14585
|
+
* @param {string} [hospitalSpecialtySlug]
|
|
14590
14586
|
* @param {string} [title]
|
|
14591
14587
|
* @param {MarketingType} [marketingType]
|
|
14592
14588
|
* @param {string} [languageCode]
|
|
@@ -14600,7 +14596,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
14600
14596
|
* @throws {RequiredError}
|
|
14601
14597
|
* @memberof HospitalsApi
|
|
14602
14598
|
*/
|
|
14603
|
-
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>>;
|
|
14599
|
+
apiV2HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, hospitalSpecialtySlug?: 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>>;
|
|
14604
14600
|
/**
|
|
14605
14601
|
*
|
|
14606
14602
|
* @summary Get HospitalSpecialty.
|
|
@@ -14682,19 +14678,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
14682
14678
|
* @memberof HospitalsApi
|
|
14683
14679
|
*/
|
|
14684
14680
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
14685
|
-
/**
|
|
14686
|
-
*
|
|
14687
|
-
* @summary Get HospitalSpecialty by Specialty slug
|
|
14688
|
-
* @param {string} hospitalId
|
|
14689
|
-
* @param {string} specialtySlug
|
|
14690
|
-
* @param {string} [languageCode]
|
|
14691
|
-
* @param {boolean} [returnDefaultValue]
|
|
14692
|
-
* @param {boolean} [includeServices]
|
|
14693
|
-
* @param {*} [options] Override http request option.
|
|
14694
|
-
* @throws {RequiredError}
|
|
14695
|
-
* @memberof HospitalsApi
|
|
14696
|
-
*/
|
|
14697
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtySlugGet(hospitalId: string, specialtySlug: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel, any>>;
|
|
14698
14681
|
/**
|
|
14699
14682
|
*
|
|
14700
14683
|
* @summary Get all Hospitals.
|