ch-admin-api-client-typescript 4.0.0 → 4.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api.d.ts +209 -374
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +442 -835
- package/package.json +1 -1
- package/src/api.ts +348 -697
package/lib/api.d.ts
CHANGED
|
@@ -3781,6 +3781,12 @@ export interface CreateDoctorCommand {
|
|
|
3781
3781
|
* @memberof CreateDoctorCommand
|
|
3782
3782
|
*/
|
|
3783
3783
|
'lastName'?: string | null;
|
|
3784
|
+
/**
|
|
3785
|
+
*
|
|
3786
|
+
* @type {string}
|
|
3787
|
+
* @memberof CreateDoctorCommand
|
|
3788
|
+
*/
|
|
3789
|
+
'phone'?: string | null;
|
|
3784
3790
|
/**
|
|
3785
3791
|
*
|
|
3786
3792
|
* @type {Gender}
|
|
@@ -3936,6 +3942,12 @@ export interface CreateFaqCategoryCommand {
|
|
|
3936
3942
|
* @memberof CreateFaqCategoryCommand
|
|
3937
3943
|
*/
|
|
3938
3944
|
'description'?: string | null;
|
|
3945
|
+
/**
|
|
3946
|
+
*
|
|
3947
|
+
* @type {string}
|
|
3948
|
+
* @memberof CreateFaqCategoryCommand
|
|
3949
|
+
*/
|
|
3950
|
+
'overview'?: string | null;
|
|
3939
3951
|
/**
|
|
3940
3952
|
*
|
|
3941
3953
|
* @type {number}
|
|
@@ -5703,6 +5715,12 @@ export interface DoctorAffiliationItemModel {
|
|
|
5703
5715
|
* @memberof DoctorAffiliationItemModel
|
|
5704
5716
|
*/
|
|
5705
5717
|
'order'?: number;
|
|
5718
|
+
/**
|
|
5719
|
+
*
|
|
5720
|
+
* @type {AuditableEntity}
|
|
5721
|
+
* @memberof DoctorAffiliationItemModel
|
|
5722
|
+
*/
|
|
5723
|
+
'auditableEntity'?: AuditableEntity;
|
|
5706
5724
|
}
|
|
5707
5725
|
/**
|
|
5708
5726
|
*
|
|
@@ -5794,6 +5812,12 @@ export interface DoctorAffiliationModel {
|
|
|
5794
5812
|
* @memberof DoctorAffiliationModel
|
|
5795
5813
|
*/
|
|
5796
5814
|
'order'?: number;
|
|
5815
|
+
/**
|
|
5816
|
+
*
|
|
5817
|
+
* @type {AuditableEntity}
|
|
5818
|
+
* @memberof DoctorAffiliationModel
|
|
5819
|
+
*/
|
|
5820
|
+
'auditableEntity'?: AuditableEntity;
|
|
5797
5821
|
/**
|
|
5798
5822
|
*
|
|
5799
5823
|
* @type {string}
|
|
@@ -8274,6 +8298,12 @@ export interface HospitalSpecialtyItemModel {
|
|
|
8274
8298
|
* @memberof HospitalSpecialtyItemModel
|
|
8275
8299
|
*/
|
|
8276
8300
|
'marketingType'?: MarketingType;
|
|
8301
|
+
/**
|
|
8302
|
+
*
|
|
8303
|
+
* @type {AuditableEntity}
|
|
8304
|
+
* @memberof HospitalSpecialtyItemModel
|
|
8305
|
+
*/
|
|
8306
|
+
'auditableEntity'?: AuditableEntity;
|
|
8277
8307
|
}
|
|
8278
8308
|
/**
|
|
8279
8309
|
*
|
|
@@ -8377,6 +8407,12 @@ export interface HospitalSpecialtyModel {
|
|
|
8377
8407
|
* @memberof HospitalSpecialtyModel
|
|
8378
8408
|
*/
|
|
8379
8409
|
'marketingType'?: MarketingType;
|
|
8410
|
+
/**
|
|
8411
|
+
*
|
|
8412
|
+
* @type {AuditableEntity}
|
|
8413
|
+
* @memberof HospitalSpecialtyModel
|
|
8414
|
+
*/
|
|
8415
|
+
'auditableEntity'?: AuditableEntity;
|
|
8380
8416
|
/**
|
|
8381
8417
|
*
|
|
8382
8418
|
* @type {string}
|
|
@@ -10113,6 +10149,25 @@ export declare enum ReviewType {
|
|
|
10113
10149
|
SurgeryReview = "SurgeryReview",
|
|
10114
10150
|
RealStory = "RealStory"
|
|
10115
10151
|
}
|
|
10152
|
+
/**
|
|
10153
|
+
*
|
|
10154
|
+
* @export
|
|
10155
|
+
* @enum {string}
|
|
10156
|
+
*/
|
|
10157
|
+
export declare enum SearchIndexType {
|
|
10158
|
+
Hospitals = "hospitals",
|
|
10159
|
+
Departments = "departments",
|
|
10160
|
+
Specialties = "specialties",
|
|
10161
|
+
Hospitalspecialies = "hospitalspecialies",
|
|
10162
|
+
Doctors = "doctors",
|
|
10163
|
+
Deals = "deals",
|
|
10164
|
+
Articles = "articles",
|
|
10165
|
+
Contributors = "contributors",
|
|
10166
|
+
Countries = "countries",
|
|
10167
|
+
Faqcategories = "faqcategories",
|
|
10168
|
+
Faqs = "faqs",
|
|
10169
|
+
Services = "services"
|
|
10170
|
+
}
|
|
10116
10171
|
/**
|
|
10117
10172
|
*
|
|
10118
10173
|
* @export
|
|
@@ -11941,19 +11996,6 @@ export interface UpdateDealServiceCommand {
|
|
|
11941
11996
|
*/
|
|
11942
11997
|
'order'?: number;
|
|
11943
11998
|
}
|
|
11944
|
-
/**
|
|
11945
|
-
*
|
|
11946
|
-
* @export
|
|
11947
|
-
* @interface UpdateDealsSearchIndexCommand
|
|
11948
|
-
*/
|
|
11949
|
-
export interface UpdateDealsSearchIndexCommand {
|
|
11950
|
-
/**
|
|
11951
|
-
*
|
|
11952
|
-
* @type {boolean}
|
|
11953
|
-
* @memberof UpdateDealsSearchIndexCommand
|
|
11954
|
-
*/
|
|
11955
|
-
'reCreate'?: boolean | null;
|
|
11956
|
-
}
|
|
11957
11999
|
/**
|
|
11958
12000
|
*
|
|
11959
12001
|
* @export
|
|
@@ -12243,19 +12285,6 @@ export interface UpdateDoctorSpecialtyCommand {
|
|
|
12243
12285
|
*/
|
|
12244
12286
|
'order'?: number;
|
|
12245
12287
|
}
|
|
12246
|
-
/**
|
|
12247
|
-
*
|
|
12248
|
-
* @export
|
|
12249
|
-
* @interface UpdateDoctorsSearchIndexCommand
|
|
12250
|
-
*/
|
|
12251
|
-
export interface UpdateDoctorsSearchIndexCommand {
|
|
12252
|
-
/**
|
|
12253
|
-
*
|
|
12254
|
-
* @type {boolean}
|
|
12255
|
-
* @memberof UpdateDoctorsSearchIndexCommand
|
|
12256
|
-
*/
|
|
12257
|
-
'reCreate'?: boolean | null;
|
|
12258
|
-
}
|
|
12259
12288
|
/**
|
|
12260
12289
|
*
|
|
12261
12290
|
* @export
|
|
@@ -12280,6 +12309,12 @@ export interface UpdateFaqCategoryCommand {
|
|
|
12280
12309
|
* @memberof UpdateFaqCategoryCommand
|
|
12281
12310
|
*/
|
|
12282
12311
|
'description'?: string | null;
|
|
12312
|
+
/**
|
|
12313
|
+
*
|
|
12314
|
+
* @type {string}
|
|
12315
|
+
* @memberof UpdateFaqCategoryCommand
|
|
12316
|
+
*/
|
|
12317
|
+
'overview'?: string | null;
|
|
12283
12318
|
/**
|
|
12284
12319
|
*
|
|
12285
12320
|
* @type {number}
|
|
@@ -12676,19 +12711,6 @@ export interface UpdateHospitalSnsHandleCommand {
|
|
|
12676
12711
|
*/
|
|
12677
12712
|
'handle'?: string | null;
|
|
12678
12713
|
}
|
|
12679
|
-
/**
|
|
12680
|
-
*
|
|
12681
|
-
* @export
|
|
12682
|
-
* @interface UpdateHospitalSpecialtiesSearchIndexCommand
|
|
12683
|
-
*/
|
|
12684
|
-
export interface UpdateHospitalSpecialtiesSearchIndexCommand {
|
|
12685
|
-
/**
|
|
12686
|
-
*
|
|
12687
|
-
* @type {boolean}
|
|
12688
|
-
* @memberof UpdateHospitalSpecialtiesSearchIndexCommand
|
|
12689
|
-
*/
|
|
12690
|
-
'reCreate'?: boolean | null;
|
|
12691
|
-
}
|
|
12692
12714
|
/**
|
|
12693
12715
|
*
|
|
12694
12716
|
* @export
|
|
@@ -12805,19 +12827,6 @@ export interface UpdateHospitalWorkingDayCommand {
|
|
|
12805
12827
|
*/
|
|
12806
12828
|
'checkHoliday'?: boolean;
|
|
12807
12829
|
}
|
|
12808
|
-
/**
|
|
12809
|
-
*
|
|
12810
|
-
* @export
|
|
12811
|
-
* @interface UpdateHospitalsSearchIndexCommand
|
|
12812
|
-
*/
|
|
12813
|
-
export interface UpdateHospitalsSearchIndexCommand {
|
|
12814
|
-
/**
|
|
12815
|
-
*
|
|
12816
|
-
* @type {boolean}
|
|
12817
|
-
* @memberof UpdateHospitalsSearchIndexCommand
|
|
12818
|
-
*/
|
|
12819
|
-
'reCreate'?: boolean | null;
|
|
12820
|
-
}
|
|
12821
12830
|
/**
|
|
12822
12831
|
*
|
|
12823
12832
|
* @export
|
|
@@ -13149,6 +13158,19 @@ export interface UpdateProfileCommand {
|
|
|
13149
13158
|
*/
|
|
13150
13159
|
'locations'?: Array<UserLocationModel> | null;
|
|
13151
13160
|
}
|
|
13161
|
+
/**
|
|
13162
|
+
*
|
|
13163
|
+
* @export
|
|
13164
|
+
* @interface UpdateSearchIndexCommand
|
|
13165
|
+
*/
|
|
13166
|
+
export interface UpdateSearchIndexCommand {
|
|
13167
|
+
/**
|
|
13168
|
+
*
|
|
13169
|
+
* @type {boolean}
|
|
13170
|
+
* @memberof UpdateSearchIndexCommand
|
|
13171
|
+
*/
|
|
13172
|
+
'reCreate'?: boolean | null;
|
|
13173
|
+
}
|
|
13152
13174
|
/**
|
|
13153
13175
|
*
|
|
13154
13176
|
* @export
|
|
@@ -13229,19 +13251,6 @@ export interface UpdateServiceReviewCommand {
|
|
|
13229
13251
|
*/
|
|
13230
13252
|
'confirmed'?: boolean;
|
|
13231
13253
|
}
|
|
13232
|
-
/**
|
|
13233
|
-
*
|
|
13234
|
-
* @export
|
|
13235
|
-
* @interface UpdateSpecialtiesSearchIndexCommand
|
|
13236
|
-
*/
|
|
13237
|
-
export interface UpdateSpecialtiesSearchIndexCommand {
|
|
13238
|
-
/**
|
|
13239
|
-
*
|
|
13240
|
-
* @type {boolean}
|
|
13241
|
-
* @memberof UpdateSpecialtiesSearchIndexCommand
|
|
13242
|
-
*/
|
|
13243
|
-
'reCreate'?: boolean | null;
|
|
13244
|
-
}
|
|
13245
13254
|
/**
|
|
13246
13255
|
*
|
|
13247
13256
|
* @export
|
|
@@ -13370,19 +13379,6 @@ export interface UpdateSpecialtyTypeCommand {
|
|
|
13370
13379
|
*/
|
|
13371
13380
|
'content'?: string | null;
|
|
13372
13381
|
}
|
|
13373
|
-
/**
|
|
13374
|
-
*
|
|
13375
|
-
* @export
|
|
13376
|
-
* @interface UpdateSpecialtyTypesSearchIndexCommand
|
|
13377
|
-
*/
|
|
13378
|
-
export interface UpdateSpecialtyTypesSearchIndexCommand {
|
|
13379
|
-
/**
|
|
13380
|
-
*
|
|
13381
|
-
* @type {boolean}
|
|
13382
|
-
* @memberof UpdateSpecialtyTypesSearchIndexCommand
|
|
13383
|
-
*/
|
|
13384
|
-
'reCreate'?: boolean | null;
|
|
13385
|
-
}
|
|
13386
13382
|
/**
|
|
13387
13383
|
*
|
|
13388
13384
|
* @export
|
|
@@ -22176,6 +22172,25 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
22176
22172
|
* @throws {RequiredError}
|
|
22177
22173
|
*/
|
|
22178
22174
|
apiV1HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22175
|
+
/**
|
|
22176
|
+
*
|
|
22177
|
+
* @summary Delete HospitalSpecialty.
|
|
22178
|
+
* @param {string} hospitalId
|
|
22179
|
+
* @param {string} hospitalSpecialtyId
|
|
22180
|
+
* @param {*} [options] Override http request option.
|
|
22181
|
+
* @throws {RequiredError}
|
|
22182
|
+
*/
|
|
22183
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdDelete: (hospitalId: string, hospitalSpecialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22184
|
+
/**
|
|
22185
|
+
*
|
|
22186
|
+
* @summary Get HospitalSpecialty.
|
|
22187
|
+
* @param {string} hospitalId
|
|
22188
|
+
* @param {string} hospitalSpecialtyId
|
|
22189
|
+
* @param {string} [languageCode]
|
|
22190
|
+
* @param {*} [options] Override http request option.
|
|
22191
|
+
* @throws {RequiredError}
|
|
22192
|
+
*/
|
|
22193
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdGet: (hospitalId: string, hospitalSpecialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22179
22194
|
/**
|
|
22180
22195
|
*
|
|
22181
22196
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -22231,6 +22246,16 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
22231
22246
|
* @throws {RequiredError}
|
|
22232
22247
|
*/
|
|
22233
22248
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasPost: (hospitalId: string, hospitalSpecialtyId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22249
|
+
/**
|
|
22250
|
+
*
|
|
22251
|
+
* @summary Update HospitalSpecialty.
|
|
22252
|
+
* @param {string} hospitalId
|
|
22253
|
+
* @param {string} hospitalSpecialtyId
|
|
22254
|
+
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
22255
|
+
* @param {*} [options] Override http request option.
|
|
22256
|
+
* @throws {RequiredError}
|
|
22257
|
+
*/
|
|
22258
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdPut: (hospitalId: string, hospitalSpecialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22234
22259
|
/**
|
|
22235
22260
|
*
|
|
22236
22261
|
* @summary Create HospitalSpecialty.
|
|
@@ -22273,35 +22298,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
22273
22298
|
* @throws {RequiredError}
|
|
22274
22299
|
*/
|
|
22275
22300
|
apiV1HospitalsHospitalIdSpecialtiesSlugGet: (hospitalId: string, slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22276
|
-
/**
|
|
22277
|
-
*
|
|
22278
|
-
* @summary Delete HospitalSpecialty.
|
|
22279
|
-
* @param {string} hospitalId
|
|
22280
|
-
* @param {string} specialtyId
|
|
22281
|
-
* @param {*} [options] Override http request option.
|
|
22282
|
-
* @throws {RequiredError}
|
|
22283
|
-
*/
|
|
22284
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete: (hospitalId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22285
|
-
/**
|
|
22286
|
-
*
|
|
22287
|
-
* @summary Get HospitalSpecialty.
|
|
22288
|
-
* @param {string} hospitalId
|
|
22289
|
-
* @param {string} specialtyId
|
|
22290
|
-
* @param {string} [languageCode]
|
|
22291
|
-
* @param {*} [options] Override http request option.
|
|
22292
|
-
* @throws {RequiredError}
|
|
22293
|
-
*/
|
|
22294
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22295
|
-
/**
|
|
22296
|
-
*
|
|
22297
|
-
* @summary Update HospitalSpecialty.
|
|
22298
|
-
* @param {string} hospitalId
|
|
22299
|
-
* @param {string} specialtyId
|
|
22300
|
-
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
22301
|
-
* @param {*} [options] Override http request option.
|
|
22302
|
-
* @throws {RequiredError}
|
|
22303
|
-
*/
|
|
22304
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut: (hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22305
22301
|
/**
|
|
22306
22302
|
*
|
|
22307
22303
|
* @summary Get all HospitalServices.
|
|
@@ -22940,6 +22936,25 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22940
22936
|
* @throws {RequiredError}
|
|
22941
22937
|
*/
|
|
22942
22938
|
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | 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<HospitalSpecialtiesModel>>;
|
|
22939
|
+
/**
|
|
22940
|
+
*
|
|
22941
|
+
* @summary Delete HospitalSpecialty.
|
|
22942
|
+
* @param {string} hospitalId
|
|
22943
|
+
* @param {string} hospitalSpecialtyId
|
|
22944
|
+
* @param {*} [options] Override http request option.
|
|
22945
|
+
* @throws {RequiredError}
|
|
22946
|
+
*/
|
|
22947
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdDelete(hospitalId: string, hospitalSpecialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
22948
|
+
/**
|
|
22949
|
+
*
|
|
22950
|
+
* @summary Get HospitalSpecialty.
|
|
22951
|
+
* @param {string} hospitalId
|
|
22952
|
+
* @param {string} hospitalSpecialtyId
|
|
22953
|
+
* @param {string} [languageCode]
|
|
22954
|
+
* @param {*} [options] Override http request option.
|
|
22955
|
+
* @throws {RequiredError}
|
|
22956
|
+
*/
|
|
22957
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdGet(hospitalId: string, hospitalSpecialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
22943
22958
|
/**
|
|
22944
22959
|
*
|
|
22945
22960
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -22995,6 +23010,16 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22995
23010
|
* @throws {RequiredError}
|
|
22996
23011
|
*/
|
|
22997
23012
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasPost(hospitalId: string, hospitalSpecialtyId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
23013
|
+
/**
|
|
23014
|
+
*
|
|
23015
|
+
* @summary Update HospitalSpecialty.
|
|
23016
|
+
* @param {string} hospitalId
|
|
23017
|
+
* @param {string} hospitalSpecialtyId
|
|
23018
|
+
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
23019
|
+
* @param {*} [options] Override http request option.
|
|
23020
|
+
* @throws {RequiredError}
|
|
23021
|
+
*/
|
|
23022
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdPut(hospitalId: string, hospitalSpecialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
22998
23023
|
/**
|
|
22999
23024
|
*
|
|
23000
23025
|
* @summary Create HospitalSpecialty.
|
|
@@ -23037,35 +23062,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
23037
23062
|
* @throws {RequiredError}
|
|
23038
23063
|
*/
|
|
23039
23064
|
apiV1HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
23040
|
-
/**
|
|
23041
|
-
*
|
|
23042
|
-
* @summary Delete HospitalSpecialty.
|
|
23043
|
-
* @param {string} hospitalId
|
|
23044
|
-
* @param {string} specialtyId
|
|
23045
|
-
* @param {*} [options] Override http request option.
|
|
23046
|
-
* @throws {RequiredError}
|
|
23047
|
-
*/
|
|
23048
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
23049
|
-
/**
|
|
23050
|
-
*
|
|
23051
|
-
* @summary Get HospitalSpecialty.
|
|
23052
|
-
* @param {string} hospitalId
|
|
23053
|
-
* @param {string} specialtyId
|
|
23054
|
-
* @param {string} [languageCode]
|
|
23055
|
-
* @param {*} [options] Override http request option.
|
|
23056
|
-
* @throws {RequiredError}
|
|
23057
|
-
*/
|
|
23058
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
23059
|
-
/**
|
|
23060
|
-
*
|
|
23061
|
-
* @summary Update HospitalSpecialty.
|
|
23062
|
-
* @param {string} hospitalId
|
|
23063
|
-
* @param {string} specialtyId
|
|
23064
|
-
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
23065
|
-
* @param {*} [options] Override http request option.
|
|
23066
|
-
* @throws {RequiredError}
|
|
23067
|
-
*/
|
|
23068
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
23069
23065
|
/**
|
|
23070
23066
|
*
|
|
23071
23067
|
* @summary Get all HospitalServices.
|
|
@@ -23704,6 +23700,25 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23704
23700
|
* @throws {RequiredError}
|
|
23705
23701
|
*/
|
|
23706
23702
|
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
|
|
23703
|
+
/**
|
|
23704
|
+
*
|
|
23705
|
+
* @summary Delete HospitalSpecialty.
|
|
23706
|
+
* @param {string} hospitalId
|
|
23707
|
+
* @param {string} hospitalSpecialtyId
|
|
23708
|
+
* @param {*} [options] Override http request option.
|
|
23709
|
+
* @throws {RequiredError}
|
|
23710
|
+
*/
|
|
23711
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdDelete(hospitalId: string, hospitalSpecialtyId: string, options?: any): AxiosPromise<boolean>;
|
|
23712
|
+
/**
|
|
23713
|
+
*
|
|
23714
|
+
* @summary Get HospitalSpecialty.
|
|
23715
|
+
* @param {string} hospitalId
|
|
23716
|
+
* @param {string} hospitalSpecialtyId
|
|
23717
|
+
* @param {string} [languageCode]
|
|
23718
|
+
* @param {*} [options] Override http request option.
|
|
23719
|
+
* @throws {RequiredError}
|
|
23720
|
+
*/
|
|
23721
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdGet(hospitalId: string, hospitalSpecialtyId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
23707
23722
|
/**
|
|
23708
23723
|
*
|
|
23709
23724
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -23759,6 +23774,16 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23759
23774
|
* @throws {RequiredError}
|
|
23760
23775
|
*/
|
|
23761
23776
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasPost(hospitalId: string, hospitalSpecialtyId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: any): AxiosPromise<MediaModel>;
|
|
23777
|
+
/**
|
|
23778
|
+
*
|
|
23779
|
+
* @summary Update HospitalSpecialty.
|
|
23780
|
+
* @param {string} hospitalId
|
|
23781
|
+
* @param {string} hospitalSpecialtyId
|
|
23782
|
+
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
23783
|
+
* @param {*} [options] Override http request option.
|
|
23784
|
+
* @throws {RequiredError}
|
|
23785
|
+
*/
|
|
23786
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdPut(hospitalId: string, hospitalSpecialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
23762
23787
|
/**
|
|
23763
23788
|
*
|
|
23764
23789
|
* @summary Create HospitalSpecialty.
|
|
@@ -23801,35 +23826,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23801
23826
|
* @throws {RequiredError}
|
|
23802
23827
|
*/
|
|
23803
23828
|
apiV1HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
23804
|
-
/**
|
|
23805
|
-
*
|
|
23806
|
-
* @summary Delete HospitalSpecialty.
|
|
23807
|
-
* @param {string} hospitalId
|
|
23808
|
-
* @param {string} specialtyId
|
|
23809
|
-
* @param {*} [options] Override http request option.
|
|
23810
|
-
* @throws {RequiredError}
|
|
23811
|
-
*/
|
|
23812
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete(hospitalId: string, specialtyId: string, options?: any): AxiosPromise<boolean>;
|
|
23813
|
-
/**
|
|
23814
|
-
*
|
|
23815
|
-
* @summary Get HospitalSpecialty.
|
|
23816
|
-
* @param {string} hospitalId
|
|
23817
|
-
* @param {string} specialtyId
|
|
23818
|
-
* @param {string} [languageCode]
|
|
23819
|
-
* @param {*} [options] Override http request option.
|
|
23820
|
-
* @throws {RequiredError}
|
|
23821
|
-
*/
|
|
23822
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
23823
|
-
/**
|
|
23824
|
-
*
|
|
23825
|
-
* @summary Update HospitalSpecialty.
|
|
23826
|
-
* @param {string} hospitalId
|
|
23827
|
-
* @param {string} specialtyId
|
|
23828
|
-
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
23829
|
-
* @param {*} [options] Override http request option.
|
|
23830
|
-
* @throws {RequiredError}
|
|
23831
|
-
*/
|
|
23832
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
|
|
23833
23829
|
/**
|
|
23834
23830
|
*
|
|
23835
23831
|
* @summary Get all HospitalServices.
|
|
@@ -24508,6 +24504,27 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
24508
24504
|
* @memberof HospitalsApi
|
|
24509
24505
|
*/
|
|
24510
24506
|
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel>>;
|
|
24507
|
+
/**
|
|
24508
|
+
*
|
|
24509
|
+
* @summary Delete HospitalSpecialty.
|
|
24510
|
+
* @param {string} hospitalId
|
|
24511
|
+
* @param {string} hospitalSpecialtyId
|
|
24512
|
+
* @param {*} [options] Override http request option.
|
|
24513
|
+
* @throws {RequiredError}
|
|
24514
|
+
* @memberof HospitalsApi
|
|
24515
|
+
*/
|
|
24516
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdDelete(hospitalId: string, hospitalSpecialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
24517
|
+
/**
|
|
24518
|
+
*
|
|
24519
|
+
* @summary Get HospitalSpecialty.
|
|
24520
|
+
* @param {string} hospitalId
|
|
24521
|
+
* @param {string} hospitalSpecialtyId
|
|
24522
|
+
* @param {string} [languageCode]
|
|
24523
|
+
* @param {*} [options] Override http request option.
|
|
24524
|
+
* @throws {RequiredError}
|
|
24525
|
+
* @memberof HospitalsApi
|
|
24526
|
+
*/
|
|
24527
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdGet(hospitalId: string, hospitalSpecialtyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
24511
24528
|
/**
|
|
24512
24529
|
*
|
|
24513
24530
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -24568,6 +24585,17 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
24568
24585
|
* @memberof HospitalsApi
|
|
24569
24586
|
*/
|
|
24570
24587
|
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdMediasPost(hospitalId: string, hospitalSpecialtyId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
24588
|
+
/**
|
|
24589
|
+
*
|
|
24590
|
+
* @summary Update HospitalSpecialty.
|
|
24591
|
+
* @param {string} hospitalId
|
|
24592
|
+
* @param {string} hospitalSpecialtyId
|
|
24593
|
+
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
24594
|
+
* @param {*} [options] Override http request option.
|
|
24595
|
+
* @throws {RequiredError}
|
|
24596
|
+
* @memberof HospitalsApi
|
|
24597
|
+
*/
|
|
24598
|
+
apiV1HospitalsHospitalIdSpecialtiesHospitalSpecialtyIdPut(hospitalId: string, hospitalSpecialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
24571
24599
|
/**
|
|
24572
24600
|
*
|
|
24573
24601
|
* @summary Create HospitalSpecialty.
|
|
@@ -24613,38 +24641,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
24613
24641
|
* @memberof HospitalsApi
|
|
24614
24642
|
*/
|
|
24615
24643
|
apiV1HospitalsHospitalIdSpecialtiesSlugGet(hospitalId: string, slug: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
24616
|
-
/**
|
|
24617
|
-
*
|
|
24618
|
-
* @summary Delete HospitalSpecialty.
|
|
24619
|
-
* @param {string} hospitalId
|
|
24620
|
-
* @param {string} specialtyId
|
|
24621
|
-
* @param {*} [options] Override http request option.
|
|
24622
|
-
* @throws {RequiredError}
|
|
24623
|
-
* @memberof HospitalsApi
|
|
24624
|
-
*/
|
|
24625
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdDelete(hospitalId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
24626
|
-
/**
|
|
24627
|
-
*
|
|
24628
|
-
* @summary Get HospitalSpecialty.
|
|
24629
|
-
* @param {string} hospitalId
|
|
24630
|
-
* @param {string} specialtyId
|
|
24631
|
-
* @param {string} [languageCode]
|
|
24632
|
-
* @param {*} [options] Override http request option.
|
|
24633
|
-
* @throws {RequiredError}
|
|
24634
|
-
* @memberof HospitalsApi
|
|
24635
|
-
*/
|
|
24636
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
24637
|
-
/**
|
|
24638
|
-
*
|
|
24639
|
-
* @summary Update HospitalSpecialty.
|
|
24640
|
-
* @param {string} hospitalId
|
|
24641
|
-
* @param {string} specialtyId
|
|
24642
|
-
* @param {UpdateHospitalSpecialtyCommand} [updateHospitalSpecialtyCommand]
|
|
24643
|
-
* @param {*} [options] Override http request option.
|
|
24644
|
-
* @throws {RequiredError}
|
|
24645
|
-
* @memberof HospitalsApi
|
|
24646
|
-
*/
|
|
24647
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdPut(hospitalId: string, specialtyId: string, updateHospitalSpecialtyCommand?: UpdateHospitalSpecialtyCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
24648
24644
|
/**
|
|
24649
24645
|
*
|
|
24650
24646
|
* @summary Get all HospitalServices.
|
|
@@ -26709,52 +26705,13 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
26709
26705
|
export declare const SearchApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
26710
26706
|
/**
|
|
26711
26707
|
*
|
|
26712
|
-
* @summary
|
|
26713
|
-
* @param {
|
|
26714
|
-
* @param {
|
|
26715
|
-
* @throws {RequiredError}
|
|
26716
|
-
*/
|
|
26717
|
-
apiV1SearchDealsPost: (updateDealsSearchIndexCommand?: UpdateDealsSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26718
|
-
/**
|
|
26719
|
-
*
|
|
26720
|
-
* @summary Update or Re-create doctors Azure Search Services Index
|
|
26721
|
-
* @param {UpdateDoctorsSearchIndexCommand} [updateDoctorsSearchIndexCommand]
|
|
26722
|
-
* @param {*} [options] Override http request option.
|
|
26723
|
-
* @throws {RequiredError}
|
|
26724
|
-
*/
|
|
26725
|
-
apiV1SearchDoctorsPost: (updateDoctorsSearchIndexCommand?: UpdateDoctorsSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26726
|
-
/**
|
|
26727
|
-
*
|
|
26728
|
-
* @summary Update or Re-create hospitals Azure Search Services Index
|
|
26729
|
-
* @param {UpdateHospitalsSearchIndexCommand} [updateHospitalsSearchIndexCommand]
|
|
26708
|
+
* @summary RecreateIndex
|
|
26709
|
+
* @param {SearchIndexType} [searchIndexType]
|
|
26710
|
+
* @param {UpdateSearchIndexCommand} [updateSearchIndexCommand]
|
|
26730
26711
|
* @param {*} [options] Override http request option.
|
|
26731
26712
|
* @throws {RequiredError}
|
|
26732
26713
|
*/
|
|
26733
|
-
|
|
26734
|
-
/**
|
|
26735
|
-
*
|
|
26736
|
-
* @summary Update or Re-create hospitalSpecialties Azure Search Services Index
|
|
26737
|
-
* @param {UpdateHospitalSpecialtiesSearchIndexCommand} [updateHospitalSpecialtiesSearchIndexCommand]
|
|
26738
|
-
* @param {*} [options] Override http request option.
|
|
26739
|
-
* @throws {RequiredError}
|
|
26740
|
-
*/
|
|
26741
|
-
apiV1SearchHospitalspecialtiesPost: (updateHospitalSpecialtiesSearchIndexCommand?: UpdateHospitalSpecialtiesSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26742
|
-
/**
|
|
26743
|
-
*
|
|
26744
|
-
* @summary Update or Re-create specialties Azure Search Services Index
|
|
26745
|
-
* @param {UpdateSpecialtiesSearchIndexCommand} [updateSpecialtiesSearchIndexCommand]
|
|
26746
|
-
* @param {*} [options] Override http request option.
|
|
26747
|
-
* @throws {RequiredError}
|
|
26748
|
-
*/
|
|
26749
|
-
apiV1SearchSpecialtiesPost: (updateSpecialtiesSearchIndexCommand?: UpdateSpecialtiesSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26750
|
-
/**
|
|
26751
|
-
*
|
|
26752
|
-
* @summary Update or Re-create specialtyTypes Azure Search Services Index
|
|
26753
|
-
* @param {UpdateSpecialtyTypesSearchIndexCommand} [updateSpecialtyTypesSearchIndexCommand]
|
|
26754
|
-
* @param {*} [options] Override http request option.
|
|
26755
|
-
* @throws {RequiredError}
|
|
26756
|
-
*/
|
|
26757
|
-
apiV1SearchSpecialtytypesPost: (updateSpecialtyTypesSearchIndexCommand?: UpdateSpecialtyTypesSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26714
|
+
apiV1SearchRecreatePost: (searchIndexType?: SearchIndexType | undefined, updateSearchIndexCommand?: UpdateSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26758
26715
|
};
|
|
26759
26716
|
/**
|
|
26760
26717
|
* SearchApi - functional programming interface
|
|
@@ -26763,52 +26720,13 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration
|
|
|
26763
26720
|
export declare const SearchApiFp: (configuration?: Configuration | undefined) => {
|
|
26764
26721
|
/**
|
|
26765
26722
|
*
|
|
26766
|
-
* @summary
|
|
26767
|
-
* @param {
|
|
26768
|
-
* @param {
|
|
26769
|
-
* @throws {RequiredError}
|
|
26770
|
-
*/
|
|
26771
|
-
apiV1SearchDealsPost(updateDealsSearchIndexCommand?: UpdateDealsSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
26772
|
-
/**
|
|
26773
|
-
*
|
|
26774
|
-
* @summary Update or Re-create doctors Azure Search Services Index
|
|
26775
|
-
* @param {UpdateDoctorsSearchIndexCommand} [updateDoctorsSearchIndexCommand]
|
|
26776
|
-
* @param {*} [options] Override http request option.
|
|
26777
|
-
* @throws {RequiredError}
|
|
26778
|
-
*/
|
|
26779
|
-
apiV1SearchDoctorsPost(updateDoctorsSearchIndexCommand?: UpdateDoctorsSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
26780
|
-
/**
|
|
26781
|
-
*
|
|
26782
|
-
* @summary Update or Re-create hospitals Azure Search Services Index
|
|
26783
|
-
* @param {UpdateHospitalsSearchIndexCommand} [updateHospitalsSearchIndexCommand]
|
|
26723
|
+
* @summary RecreateIndex
|
|
26724
|
+
* @param {SearchIndexType} [searchIndexType]
|
|
26725
|
+
* @param {UpdateSearchIndexCommand} [updateSearchIndexCommand]
|
|
26784
26726
|
* @param {*} [options] Override http request option.
|
|
26785
26727
|
* @throws {RequiredError}
|
|
26786
26728
|
*/
|
|
26787
|
-
|
|
26788
|
-
/**
|
|
26789
|
-
*
|
|
26790
|
-
* @summary Update or Re-create hospitalSpecialties Azure Search Services Index
|
|
26791
|
-
* @param {UpdateHospitalSpecialtiesSearchIndexCommand} [updateHospitalSpecialtiesSearchIndexCommand]
|
|
26792
|
-
* @param {*} [options] Override http request option.
|
|
26793
|
-
* @throws {RequiredError}
|
|
26794
|
-
*/
|
|
26795
|
-
apiV1SearchHospitalspecialtiesPost(updateHospitalSpecialtiesSearchIndexCommand?: UpdateHospitalSpecialtiesSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
26796
|
-
/**
|
|
26797
|
-
*
|
|
26798
|
-
* @summary Update or Re-create specialties Azure Search Services Index
|
|
26799
|
-
* @param {UpdateSpecialtiesSearchIndexCommand} [updateSpecialtiesSearchIndexCommand]
|
|
26800
|
-
* @param {*} [options] Override http request option.
|
|
26801
|
-
* @throws {RequiredError}
|
|
26802
|
-
*/
|
|
26803
|
-
apiV1SearchSpecialtiesPost(updateSpecialtiesSearchIndexCommand?: UpdateSpecialtiesSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
26804
|
-
/**
|
|
26805
|
-
*
|
|
26806
|
-
* @summary Update or Re-create specialtyTypes Azure Search Services Index
|
|
26807
|
-
* @param {UpdateSpecialtyTypesSearchIndexCommand} [updateSpecialtyTypesSearchIndexCommand]
|
|
26808
|
-
* @param {*} [options] Override http request option.
|
|
26809
|
-
* @throws {RequiredError}
|
|
26810
|
-
*/
|
|
26811
|
-
apiV1SearchSpecialtytypesPost(updateSpecialtyTypesSearchIndexCommand?: UpdateSpecialtyTypesSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
26729
|
+
apiV1SearchRecreatePost(searchIndexType?: SearchIndexType | undefined, updateSearchIndexCommand?: UpdateSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
26812
26730
|
};
|
|
26813
26731
|
/**
|
|
26814
26732
|
* SearchApi - factory interface
|
|
@@ -26817,52 +26735,13 @@ export declare const SearchApiFp: (configuration?: Configuration | undefined) =>
|
|
|
26817
26735
|
export declare const SearchApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
26818
26736
|
/**
|
|
26819
26737
|
*
|
|
26820
|
-
* @summary
|
|
26821
|
-
* @param {
|
|
26738
|
+
* @summary RecreateIndex
|
|
26739
|
+
* @param {SearchIndexType} [searchIndexType]
|
|
26740
|
+
* @param {UpdateSearchIndexCommand} [updateSearchIndexCommand]
|
|
26822
26741
|
* @param {*} [options] Override http request option.
|
|
26823
26742
|
* @throws {RequiredError}
|
|
26824
26743
|
*/
|
|
26825
|
-
|
|
26826
|
-
/**
|
|
26827
|
-
*
|
|
26828
|
-
* @summary Update or Re-create doctors Azure Search Services Index
|
|
26829
|
-
* @param {UpdateDoctorsSearchIndexCommand} [updateDoctorsSearchIndexCommand]
|
|
26830
|
-
* @param {*} [options] Override http request option.
|
|
26831
|
-
* @throws {RequiredError}
|
|
26832
|
-
*/
|
|
26833
|
-
apiV1SearchDoctorsPost(updateDoctorsSearchIndexCommand?: UpdateDoctorsSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
26834
|
-
/**
|
|
26835
|
-
*
|
|
26836
|
-
* @summary Update or Re-create hospitals Azure Search Services Index
|
|
26837
|
-
* @param {UpdateHospitalsSearchIndexCommand} [updateHospitalsSearchIndexCommand]
|
|
26838
|
-
* @param {*} [options] Override http request option.
|
|
26839
|
-
* @throws {RequiredError}
|
|
26840
|
-
*/
|
|
26841
|
-
apiV1SearchHospitalsPost(updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
26842
|
-
/**
|
|
26843
|
-
*
|
|
26844
|
-
* @summary Update or Re-create hospitalSpecialties Azure Search Services Index
|
|
26845
|
-
* @param {UpdateHospitalSpecialtiesSearchIndexCommand} [updateHospitalSpecialtiesSearchIndexCommand]
|
|
26846
|
-
* @param {*} [options] Override http request option.
|
|
26847
|
-
* @throws {RequiredError}
|
|
26848
|
-
*/
|
|
26849
|
-
apiV1SearchHospitalspecialtiesPost(updateHospitalSpecialtiesSearchIndexCommand?: UpdateHospitalSpecialtiesSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
26850
|
-
/**
|
|
26851
|
-
*
|
|
26852
|
-
* @summary Update or Re-create specialties Azure Search Services Index
|
|
26853
|
-
* @param {UpdateSpecialtiesSearchIndexCommand} [updateSpecialtiesSearchIndexCommand]
|
|
26854
|
-
* @param {*} [options] Override http request option.
|
|
26855
|
-
* @throws {RequiredError}
|
|
26856
|
-
*/
|
|
26857
|
-
apiV1SearchSpecialtiesPost(updateSpecialtiesSearchIndexCommand?: UpdateSpecialtiesSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
26858
|
-
/**
|
|
26859
|
-
*
|
|
26860
|
-
* @summary Update or Re-create specialtyTypes Azure Search Services Index
|
|
26861
|
-
* @param {UpdateSpecialtyTypesSearchIndexCommand} [updateSpecialtyTypesSearchIndexCommand]
|
|
26862
|
-
* @param {*} [options] Override http request option.
|
|
26863
|
-
* @throws {RequiredError}
|
|
26864
|
-
*/
|
|
26865
|
-
apiV1SearchSpecialtytypesPost(updateSpecialtyTypesSearchIndexCommand?: UpdateSpecialtyTypesSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
26744
|
+
apiV1SearchRecreatePost(searchIndexType?: SearchIndexType | undefined, updateSearchIndexCommand?: UpdateSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
26866
26745
|
};
|
|
26867
26746
|
/**
|
|
26868
26747
|
* SearchApi - object-oriented interface
|
|
@@ -26873,58 +26752,14 @@ export declare const SearchApiFactory: (configuration?: Configuration | undefine
|
|
|
26873
26752
|
export declare class SearchApi extends BaseAPI {
|
|
26874
26753
|
/**
|
|
26875
26754
|
*
|
|
26876
|
-
* @summary
|
|
26877
|
-
* @param {
|
|
26878
|
-
* @param {
|
|
26879
|
-
* @throws {RequiredError}
|
|
26880
|
-
* @memberof SearchApi
|
|
26881
|
-
*/
|
|
26882
|
-
apiV1SearchDealsPost(updateDealsSearchIndexCommand?: UpdateDealsSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
26883
|
-
/**
|
|
26884
|
-
*
|
|
26885
|
-
* @summary Update or Re-create doctors Azure Search Services Index
|
|
26886
|
-
* @param {UpdateDoctorsSearchIndexCommand} [updateDoctorsSearchIndexCommand]
|
|
26887
|
-
* @param {*} [options] Override http request option.
|
|
26888
|
-
* @throws {RequiredError}
|
|
26889
|
-
* @memberof SearchApi
|
|
26890
|
-
*/
|
|
26891
|
-
apiV1SearchDoctorsPost(updateDoctorsSearchIndexCommand?: UpdateDoctorsSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
26892
|
-
/**
|
|
26893
|
-
*
|
|
26894
|
-
* @summary Update or Re-create hospitals Azure Search Services Index
|
|
26895
|
-
* @param {UpdateHospitalsSearchIndexCommand} [updateHospitalsSearchIndexCommand]
|
|
26896
|
-
* @param {*} [options] Override http request option.
|
|
26897
|
-
* @throws {RequiredError}
|
|
26898
|
-
* @memberof SearchApi
|
|
26899
|
-
*/
|
|
26900
|
-
apiV1SearchHospitalsPost(updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
26901
|
-
/**
|
|
26902
|
-
*
|
|
26903
|
-
* @summary Update or Re-create hospitalSpecialties Azure Search Services Index
|
|
26904
|
-
* @param {UpdateHospitalSpecialtiesSearchIndexCommand} [updateHospitalSpecialtiesSearchIndexCommand]
|
|
26905
|
-
* @param {*} [options] Override http request option.
|
|
26906
|
-
* @throws {RequiredError}
|
|
26907
|
-
* @memberof SearchApi
|
|
26908
|
-
*/
|
|
26909
|
-
apiV1SearchHospitalspecialtiesPost(updateHospitalSpecialtiesSearchIndexCommand?: UpdateHospitalSpecialtiesSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
26910
|
-
/**
|
|
26911
|
-
*
|
|
26912
|
-
* @summary Update or Re-create specialties Azure Search Services Index
|
|
26913
|
-
* @param {UpdateSpecialtiesSearchIndexCommand} [updateSpecialtiesSearchIndexCommand]
|
|
26914
|
-
* @param {*} [options] Override http request option.
|
|
26915
|
-
* @throws {RequiredError}
|
|
26916
|
-
* @memberof SearchApi
|
|
26917
|
-
*/
|
|
26918
|
-
apiV1SearchSpecialtiesPost(updateSpecialtiesSearchIndexCommand?: UpdateSpecialtiesSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
26919
|
-
/**
|
|
26920
|
-
*
|
|
26921
|
-
* @summary Update or Re-create specialtyTypes Azure Search Services Index
|
|
26922
|
-
* @param {UpdateSpecialtyTypesSearchIndexCommand} [updateSpecialtyTypesSearchIndexCommand]
|
|
26755
|
+
* @summary RecreateIndex
|
|
26756
|
+
* @param {SearchIndexType} [searchIndexType]
|
|
26757
|
+
* @param {UpdateSearchIndexCommand} [updateSearchIndexCommand]
|
|
26923
26758
|
* @param {*} [options] Override http request option.
|
|
26924
26759
|
* @throws {RequiredError}
|
|
26925
26760
|
* @memberof SearchApi
|
|
26926
26761
|
*/
|
|
26927
|
-
|
|
26762
|
+
apiV1SearchRecreatePost(searchIndexType?: SearchIndexType, updateSearchIndexCommand?: UpdateSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
26928
26763
|
}
|
|
26929
26764
|
/**
|
|
26930
26765
|
* ServiceReviewsApi - axios parameter creator
|