ch-admin-api-client-typescript 2.7.4 → 2.7.5
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 +721 -4
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1334 -8
- package/package.json +1 -1
- package/src/api.ts +1368 -7
package/lib/api.d.ts
CHANGED
|
@@ -771,6 +771,43 @@ export interface AwardModel {
|
|
|
771
771
|
*/
|
|
772
772
|
'date'?: Date;
|
|
773
773
|
}
|
|
774
|
+
/**
|
|
775
|
+
*
|
|
776
|
+
* @export
|
|
777
|
+
* @interface AzureSearchModel
|
|
778
|
+
*/
|
|
779
|
+
export interface AzureSearchModel {
|
|
780
|
+
/**
|
|
781
|
+
*
|
|
782
|
+
* @type {number}
|
|
783
|
+
* @memberof AzureSearchModel
|
|
784
|
+
*/
|
|
785
|
+
'hospitals'?: number;
|
|
786
|
+
/**
|
|
787
|
+
*
|
|
788
|
+
* @type {number}
|
|
789
|
+
* @memberof AzureSearchModel
|
|
790
|
+
*/
|
|
791
|
+
'doctors'?: number;
|
|
792
|
+
/**
|
|
793
|
+
*
|
|
794
|
+
* @type {number}
|
|
795
|
+
* @memberof AzureSearchModel
|
|
796
|
+
*/
|
|
797
|
+
'deals'?: number;
|
|
798
|
+
/**
|
|
799
|
+
*
|
|
800
|
+
* @type {number}
|
|
801
|
+
* @memberof AzureSearchModel
|
|
802
|
+
*/
|
|
803
|
+
'specialties'?: number;
|
|
804
|
+
/**
|
|
805
|
+
*
|
|
806
|
+
* @type {number}
|
|
807
|
+
* @memberof AzureSearchModel
|
|
808
|
+
*/
|
|
809
|
+
'specialtyTypes'?: number;
|
|
810
|
+
}
|
|
774
811
|
/**
|
|
775
812
|
*
|
|
776
813
|
* @export
|
|
@@ -10514,6 +10551,25 @@ export interface UpdateDealServiceCommand {
|
|
|
10514
10551
|
*/
|
|
10515
10552
|
'order'?: number;
|
|
10516
10553
|
}
|
|
10554
|
+
/**
|
|
10555
|
+
*
|
|
10556
|
+
* @export
|
|
10557
|
+
* @interface UpdateDealsSearchIndexCommand
|
|
10558
|
+
*/
|
|
10559
|
+
export interface UpdateDealsSearchIndexCommand {
|
|
10560
|
+
/**
|
|
10561
|
+
*
|
|
10562
|
+
* @type {number}
|
|
10563
|
+
* @memberof UpdateDealsSearchIndexCommand
|
|
10564
|
+
*/
|
|
10565
|
+
'batchSize'?: number | null;
|
|
10566
|
+
/**
|
|
10567
|
+
*
|
|
10568
|
+
* @type {boolean}
|
|
10569
|
+
* @memberof UpdateDealsSearchIndexCommand
|
|
10570
|
+
*/
|
|
10571
|
+
'reCreate'?: boolean | null;
|
|
10572
|
+
}
|
|
10517
10573
|
/**
|
|
10518
10574
|
*
|
|
10519
10575
|
* @export
|
|
@@ -10729,6 +10785,25 @@ export interface UpdateDoctorSpecialtyCommand {
|
|
|
10729
10785
|
*/
|
|
10730
10786
|
'order'?: number;
|
|
10731
10787
|
}
|
|
10788
|
+
/**
|
|
10789
|
+
*
|
|
10790
|
+
* @export
|
|
10791
|
+
* @interface UpdateDoctorsSearchIndexCommand
|
|
10792
|
+
*/
|
|
10793
|
+
export interface UpdateDoctorsSearchIndexCommand {
|
|
10794
|
+
/**
|
|
10795
|
+
*
|
|
10796
|
+
* @type {number}
|
|
10797
|
+
* @memberof UpdateDoctorsSearchIndexCommand
|
|
10798
|
+
*/
|
|
10799
|
+
'batchSize'?: number | null;
|
|
10800
|
+
/**
|
|
10801
|
+
*
|
|
10802
|
+
* @type {boolean}
|
|
10803
|
+
* @memberof UpdateDoctorsSearchIndexCommand
|
|
10804
|
+
*/
|
|
10805
|
+
'reCreate'?: boolean | null;
|
|
10806
|
+
}
|
|
10732
10807
|
/**
|
|
10733
10808
|
*
|
|
10734
10809
|
* @export
|
|
@@ -11065,6 +11140,25 @@ export interface UpdateHospitalSpecialtyCommand {
|
|
|
11065
11140
|
*/
|
|
11066
11141
|
'order'?: number;
|
|
11067
11142
|
}
|
|
11143
|
+
/**
|
|
11144
|
+
*
|
|
11145
|
+
* @export
|
|
11146
|
+
* @interface UpdateHospitalsSearchIndexCommand
|
|
11147
|
+
*/
|
|
11148
|
+
export interface UpdateHospitalsSearchIndexCommand {
|
|
11149
|
+
/**
|
|
11150
|
+
*
|
|
11151
|
+
* @type {number}
|
|
11152
|
+
* @memberof UpdateHospitalsSearchIndexCommand
|
|
11153
|
+
*/
|
|
11154
|
+
'batchSize'?: number | null;
|
|
11155
|
+
/**
|
|
11156
|
+
*
|
|
11157
|
+
* @type {boolean}
|
|
11158
|
+
* @memberof UpdateHospitalsSearchIndexCommand
|
|
11159
|
+
*/
|
|
11160
|
+
'reCreate'?: boolean | null;
|
|
11161
|
+
}
|
|
11068
11162
|
/**
|
|
11069
11163
|
*
|
|
11070
11164
|
* @export
|
|
@@ -11446,6 +11540,25 @@ export interface UpdateServiceReviewCommand {
|
|
|
11446
11540
|
*/
|
|
11447
11541
|
'rate'?: number | null;
|
|
11448
11542
|
}
|
|
11543
|
+
/**
|
|
11544
|
+
*
|
|
11545
|
+
* @export
|
|
11546
|
+
* @interface UpdateSpecialtiesSearchIndexCommand
|
|
11547
|
+
*/
|
|
11548
|
+
export interface UpdateSpecialtiesSearchIndexCommand {
|
|
11549
|
+
/**
|
|
11550
|
+
*
|
|
11551
|
+
* @type {number}
|
|
11552
|
+
* @memberof UpdateSpecialtiesSearchIndexCommand
|
|
11553
|
+
*/
|
|
11554
|
+
'batchSize'?: number | null;
|
|
11555
|
+
/**
|
|
11556
|
+
*
|
|
11557
|
+
* @type {boolean}
|
|
11558
|
+
* @memberof UpdateSpecialtiesSearchIndexCommand
|
|
11559
|
+
*/
|
|
11560
|
+
'reCreate'?: boolean | null;
|
|
11561
|
+
}
|
|
11449
11562
|
/**
|
|
11450
11563
|
*
|
|
11451
11564
|
* @export
|
|
@@ -11568,6 +11681,25 @@ export interface UpdateSpecialtyTypeCommand {
|
|
|
11568
11681
|
*/
|
|
11569
11682
|
'languageCode'?: string | null;
|
|
11570
11683
|
}
|
|
11684
|
+
/**
|
|
11685
|
+
*
|
|
11686
|
+
* @export
|
|
11687
|
+
* @interface UpdateSpecialtyTypesSearchIndexCommand
|
|
11688
|
+
*/
|
|
11689
|
+
export interface UpdateSpecialtyTypesSearchIndexCommand {
|
|
11690
|
+
/**
|
|
11691
|
+
*
|
|
11692
|
+
* @type {number}
|
|
11693
|
+
* @memberof UpdateSpecialtyTypesSearchIndexCommand
|
|
11694
|
+
*/
|
|
11695
|
+
'batchSize'?: number | null;
|
|
11696
|
+
/**
|
|
11697
|
+
*
|
|
11698
|
+
* @type {boolean}
|
|
11699
|
+
* @memberof UpdateSpecialtyTypesSearchIndexCommand
|
|
11700
|
+
*/
|
|
11701
|
+
'reCreate'?: boolean | null;
|
|
11702
|
+
}
|
|
11571
11703
|
/**
|
|
11572
11704
|
*
|
|
11573
11705
|
* @export
|
|
@@ -16541,6 +16673,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16541
16673
|
* @param {string} [hospitalId]
|
|
16542
16674
|
* @param {string} [languageCode]
|
|
16543
16675
|
* @param {boolean} [returnDefaultValue]
|
|
16676
|
+
* @param {Array<string>} [ids]
|
|
16544
16677
|
* @param {string} [id]
|
|
16545
16678
|
* @param {string} [fullname]
|
|
16546
16679
|
* @param {string} [email]
|
|
@@ -16554,7 +16687,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16554
16687
|
* @param {*} [options] Override http request option.
|
|
16555
16688
|
* @throws {RequiredError}
|
|
16556
16689
|
*/
|
|
16557
|
-
apiV1DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16690
|
+
apiV1DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16558
16691
|
/**
|
|
16559
16692
|
*
|
|
16560
16693
|
* @summary Create a Doctor.
|
|
@@ -16906,6 +17039,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16906
17039
|
* @param {string} [hospitalId]
|
|
16907
17040
|
* @param {string} [languageCode]
|
|
16908
17041
|
* @param {boolean} [returnDefaultValue]
|
|
17042
|
+
* @param {Array<string>} [ids]
|
|
16909
17043
|
* @param {string} [id]
|
|
16910
17044
|
* @param {string} [fullname]
|
|
16911
17045
|
* @param {string} [email]
|
|
@@ -16919,7 +17053,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16919
17053
|
* @param {*} [options] Override http request option.
|
|
16920
17054
|
* @throws {RequiredError}
|
|
16921
17055
|
*/
|
|
16922
|
-
apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
|
|
17056
|
+
apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
|
|
16923
17057
|
/**
|
|
16924
17058
|
*
|
|
16925
17059
|
* @summary Create a Doctor.
|
|
@@ -17271,6 +17405,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17271
17405
|
* @param {string} [hospitalId]
|
|
17272
17406
|
* @param {string} [languageCode]
|
|
17273
17407
|
* @param {boolean} [returnDefaultValue]
|
|
17408
|
+
* @param {Array<string>} [ids]
|
|
17274
17409
|
* @param {string} [id]
|
|
17275
17410
|
* @param {string} [fullname]
|
|
17276
17411
|
* @param {string} [email]
|
|
@@ -17284,7 +17419,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
17284
17419
|
* @param {*} [options] Override http request option.
|
|
17285
17420
|
* @throws {RequiredError}
|
|
17286
17421
|
*/
|
|
17287
|
-
apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
|
|
17422
|
+
apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
|
|
17288
17423
|
/**
|
|
17289
17424
|
*
|
|
17290
17425
|
* @summary Create a Doctor.
|
|
@@ -17670,6 +17805,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17670
17805
|
* @param {string} [hospitalId]
|
|
17671
17806
|
* @param {string} [languageCode]
|
|
17672
17807
|
* @param {boolean} [returnDefaultValue]
|
|
17808
|
+
* @param {Array<string>} [ids]
|
|
17673
17809
|
* @param {string} [id]
|
|
17674
17810
|
* @param {string} [fullname]
|
|
17675
17811
|
* @param {string} [email]
|
|
@@ -17684,7 +17820,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17684
17820
|
* @throws {RequiredError}
|
|
17685
17821
|
* @memberof DoctorsApi
|
|
17686
17822
|
*/
|
|
17687
|
-
apiV1DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
|
|
17823
|
+
apiV1DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
|
|
17688
17824
|
/**
|
|
17689
17825
|
*
|
|
17690
17826
|
* @summary Create a Doctor.
|
|
@@ -22706,6 +22842,587 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
22706
22842
|
*/
|
|
22707
22843
|
apiV1ProfilesPut(updateProfileCommand?: UpdateProfileCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel>>;
|
|
22708
22844
|
}
|
|
22845
|
+
/**
|
|
22846
|
+
* SearchApi - axios parameter creator
|
|
22847
|
+
* @export
|
|
22848
|
+
*/
|
|
22849
|
+
export declare const SearchApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
22850
|
+
/**
|
|
22851
|
+
*
|
|
22852
|
+
* @summary Search deals using Azure Search Service
|
|
22853
|
+
* @param {string} [searchTerm]
|
|
22854
|
+
* @param {boolean} [countOnly]
|
|
22855
|
+
* @param {string} [countryId]
|
|
22856
|
+
* @param {string} [hospitalId]
|
|
22857
|
+
* @param {MarketingType} [marketingType]
|
|
22858
|
+
* @param {string} [languageCode]
|
|
22859
|
+
* @param {number} [page]
|
|
22860
|
+
* @param {number} [limit]
|
|
22861
|
+
* @param {Date} [lastRetrieved]
|
|
22862
|
+
* @param {*} [options] Override http request option.
|
|
22863
|
+
* @throws {RequiredError}
|
|
22864
|
+
*/
|
|
22865
|
+
apiV1SearchDealsGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22866
|
+
/**
|
|
22867
|
+
*
|
|
22868
|
+
* @summary Update or Re-create deals Azure Search Services Index
|
|
22869
|
+
* @param {UpdateDealsSearchIndexCommand} [updateDealsSearchIndexCommand]
|
|
22870
|
+
* @param {*} [options] Override http request option.
|
|
22871
|
+
* @throws {RequiredError}
|
|
22872
|
+
*/
|
|
22873
|
+
apiV1SearchDealsPost: (updateDealsSearchIndexCommand?: UpdateDealsSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22874
|
+
/**
|
|
22875
|
+
*
|
|
22876
|
+
* @summary Search doctors using Azure Search Services
|
|
22877
|
+
* @param {string} [searchTerm]
|
|
22878
|
+
* @param {boolean} [countOnly]
|
|
22879
|
+
* @param {string} [countryId]
|
|
22880
|
+
* @param {string} [hospitalId]
|
|
22881
|
+
* @param {MarketingType} [marketingType]
|
|
22882
|
+
* @param {string} [languageCode]
|
|
22883
|
+
* @param {number} [page]
|
|
22884
|
+
* @param {number} [limit]
|
|
22885
|
+
* @param {Date} [lastRetrieved]
|
|
22886
|
+
* @param {*} [options] Override http request option.
|
|
22887
|
+
* @throws {RequiredError}
|
|
22888
|
+
*/
|
|
22889
|
+
apiV1SearchDoctorsGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22890
|
+
/**
|
|
22891
|
+
*
|
|
22892
|
+
* @summary Update or Re-create doctors Azure Search Services Index
|
|
22893
|
+
* @param {UpdateDoctorsSearchIndexCommand} [updateDoctorsSearchIndexCommand]
|
|
22894
|
+
* @param {*} [options] Override http request option.
|
|
22895
|
+
* @throws {RequiredError}
|
|
22896
|
+
*/
|
|
22897
|
+
apiV1SearchDoctorsPost: (updateDoctorsSearchIndexCommand?: UpdateDoctorsSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22898
|
+
/**
|
|
22899
|
+
*
|
|
22900
|
+
* @summary Get the number of items in each search index
|
|
22901
|
+
* @param {string} [searchTerm]
|
|
22902
|
+
* @param {boolean} [countOnly]
|
|
22903
|
+
* @param {string} [countryId]
|
|
22904
|
+
* @param {string} [hospitalId]
|
|
22905
|
+
* @param {MarketingType} [marketingType]
|
|
22906
|
+
* @param {string} [languageCode]
|
|
22907
|
+
* @param {number} [page]
|
|
22908
|
+
* @param {number} [limit]
|
|
22909
|
+
* @param {Date} [lastRetrieved]
|
|
22910
|
+
* @param {*} [options] Override http request option.
|
|
22911
|
+
* @throws {RequiredError}
|
|
22912
|
+
*/
|
|
22913
|
+
apiV1SearchGetcountGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22914
|
+
/**
|
|
22915
|
+
*
|
|
22916
|
+
* @summary Search hospitals using Azure Search Services
|
|
22917
|
+
* @param {string} [searchTerm]
|
|
22918
|
+
* @param {boolean} [countOnly]
|
|
22919
|
+
* @param {string} [countryId]
|
|
22920
|
+
* @param {string} [hospitalId]
|
|
22921
|
+
* @param {MarketingType} [marketingType]
|
|
22922
|
+
* @param {string} [languageCode]
|
|
22923
|
+
* @param {number} [page]
|
|
22924
|
+
* @param {number} [limit]
|
|
22925
|
+
* @param {Date} [lastRetrieved]
|
|
22926
|
+
* @param {*} [options] Override http request option.
|
|
22927
|
+
* @throws {RequiredError}
|
|
22928
|
+
*/
|
|
22929
|
+
apiV1SearchHospitalsGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22930
|
+
/**
|
|
22931
|
+
*
|
|
22932
|
+
* @summary Update or Re-create hospitals Azure Search Services Index
|
|
22933
|
+
* @param {UpdateHospitalsSearchIndexCommand} [updateHospitalsSearchIndexCommand]
|
|
22934
|
+
* @param {*} [options] Override http request option.
|
|
22935
|
+
* @throws {RequiredError}
|
|
22936
|
+
*/
|
|
22937
|
+
apiV1SearchHospitalsPost: (updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22938
|
+
/**
|
|
22939
|
+
*
|
|
22940
|
+
* @summary Search specialties using Azure Search Service
|
|
22941
|
+
* @param {string} [searchTerm]
|
|
22942
|
+
* @param {boolean} [countOnly]
|
|
22943
|
+
* @param {string} [countryId]
|
|
22944
|
+
* @param {string} [hospitalId]
|
|
22945
|
+
* @param {MarketingType} [marketingType]
|
|
22946
|
+
* @param {string} [languageCode]
|
|
22947
|
+
* @param {number} [page]
|
|
22948
|
+
* @param {number} [limit]
|
|
22949
|
+
* @param {Date} [lastRetrieved]
|
|
22950
|
+
* @param {*} [options] Override http request option.
|
|
22951
|
+
* @throws {RequiredError}
|
|
22952
|
+
*/
|
|
22953
|
+
apiV1SearchSpecialtiesGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22954
|
+
/**
|
|
22955
|
+
*
|
|
22956
|
+
* @summary Update or Re-create specialties Azure Search Services Index
|
|
22957
|
+
* @param {UpdateSpecialtiesSearchIndexCommand} [updateSpecialtiesSearchIndexCommand]
|
|
22958
|
+
* @param {*} [options] Override http request option.
|
|
22959
|
+
* @throws {RequiredError}
|
|
22960
|
+
*/
|
|
22961
|
+
apiV1SearchSpecialtiesPost: (updateSpecialtiesSearchIndexCommand?: UpdateSpecialtiesSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22962
|
+
/**
|
|
22963
|
+
*
|
|
22964
|
+
* @summary Search specialtyTypes using Azure Search Services
|
|
22965
|
+
* @param {string} [searchTerm]
|
|
22966
|
+
* @param {boolean} [countOnly]
|
|
22967
|
+
* @param {string} [countryId]
|
|
22968
|
+
* @param {string} [hospitalId]
|
|
22969
|
+
* @param {MarketingType} [marketingType]
|
|
22970
|
+
* @param {string} [languageCode]
|
|
22971
|
+
* @param {number} [page]
|
|
22972
|
+
* @param {number} [limit]
|
|
22973
|
+
* @param {Date} [lastRetrieved]
|
|
22974
|
+
* @param {*} [options] Override http request option.
|
|
22975
|
+
* @throws {RequiredError}
|
|
22976
|
+
*/
|
|
22977
|
+
apiV1SearchSpecialtytypesGet: (searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22978
|
+
/**
|
|
22979
|
+
*
|
|
22980
|
+
* @summary Update or Re-create specialtyTypes Azure Search Services Index
|
|
22981
|
+
* @param {UpdateSpecialtyTypesSearchIndexCommand} [updateSpecialtyTypesSearchIndexCommand]
|
|
22982
|
+
* @param {*} [options] Override http request option.
|
|
22983
|
+
* @throws {RequiredError}
|
|
22984
|
+
*/
|
|
22985
|
+
apiV1SearchSpecialtytypesPost: (updateSpecialtyTypesSearchIndexCommand?: UpdateSpecialtyTypesSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22986
|
+
};
|
|
22987
|
+
/**
|
|
22988
|
+
* SearchApi - functional programming interface
|
|
22989
|
+
* @export
|
|
22990
|
+
*/
|
|
22991
|
+
export declare const SearchApiFp: (configuration?: Configuration | undefined) => {
|
|
22992
|
+
/**
|
|
22993
|
+
*
|
|
22994
|
+
* @summary Search deals using Azure Search Service
|
|
22995
|
+
* @param {string} [searchTerm]
|
|
22996
|
+
* @param {boolean} [countOnly]
|
|
22997
|
+
* @param {string} [countryId]
|
|
22998
|
+
* @param {string} [hospitalId]
|
|
22999
|
+
* @param {MarketingType} [marketingType]
|
|
23000
|
+
* @param {string} [languageCode]
|
|
23001
|
+
* @param {number} [page]
|
|
23002
|
+
* @param {number} [limit]
|
|
23003
|
+
* @param {Date} [lastRetrieved]
|
|
23004
|
+
* @param {*} [options] Override http request option.
|
|
23005
|
+
* @throws {RequiredError}
|
|
23006
|
+
*/
|
|
23007
|
+
apiV1SearchDealsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
|
|
23008
|
+
/**
|
|
23009
|
+
*
|
|
23010
|
+
* @summary Update or Re-create deals Azure Search Services Index
|
|
23011
|
+
* @param {UpdateDealsSearchIndexCommand} [updateDealsSearchIndexCommand]
|
|
23012
|
+
* @param {*} [options] Override http request option.
|
|
23013
|
+
* @throws {RequiredError}
|
|
23014
|
+
*/
|
|
23015
|
+
apiV1SearchDealsPost(updateDealsSearchIndexCommand?: UpdateDealsSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
23016
|
+
/**
|
|
23017
|
+
*
|
|
23018
|
+
* @summary Search doctors using Azure Search Services
|
|
23019
|
+
* @param {string} [searchTerm]
|
|
23020
|
+
* @param {boolean} [countOnly]
|
|
23021
|
+
* @param {string} [countryId]
|
|
23022
|
+
* @param {string} [hospitalId]
|
|
23023
|
+
* @param {MarketingType} [marketingType]
|
|
23024
|
+
* @param {string} [languageCode]
|
|
23025
|
+
* @param {number} [page]
|
|
23026
|
+
* @param {number} [limit]
|
|
23027
|
+
* @param {Date} [lastRetrieved]
|
|
23028
|
+
* @param {*} [options] Override http request option.
|
|
23029
|
+
* @throws {RequiredError}
|
|
23030
|
+
*/
|
|
23031
|
+
apiV1SearchDoctorsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
|
|
23032
|
+
/**
|
|
23033
|
+
*
|
|
23034
|
+
* @summary Update or Re-create doctors Azure Search Services Index
|
|
23035
|
+
* @param {UpdateDoctorsSearchIndexCommand} [updateDoctorsSearchIndexCommand]
|
|
23036
|
+
* @param {*} [options] Override http request option.
|
|
23037
|
+
* @throws {RequiredError}
|
|
23038
|
+
*/
|
|
23039
|
+
apiV1SearchDoctorsPost(updateDoctorsSearchIndexCommand?: UpdateDoctorsSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
23040
|
+
/**
|
|
23041
|
+
*
|
|
23042
|
+
* @summary Get the number of items in each search index
|
|
23043
|
+
* @param {string} [searchTerm]
|
|
23044
|
+
* @param {boolean} [countOnly]
|
|
23045
|
+
* @param {string} [countryId]
|
|
23046
|
+
* @param {string} [hospitalId]
|
|
23047
|
+
* @param {MarketingType} [marketingType]
|
|
23048
|
+
* @param {string} [languageCode]
|
|
23049
|
+
* @param {number} [page]
|
|
23050
|
+
* @param {number} [limit]
|
|
23051
|
+
* @param {Date} [lastRetrieved]
|
|
23052
|
+
* @param {*} [options] Override http request option.
|
|
23053
|
+
* @throws {RequiredError}
|
|
23054
|
+
*/
|
|
23055
|
+
apiV1SearchGetcountGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AzureSearchModel>>;
|
|
23056
|
+
/**
|
|
23057
|
+
*
|
|
23058
|
+
* @summary Search hospitals using Azure Search Services
|
|
23059
|
+
* @param {string} [searchTerm]
|
|
23060
|
+
* @param {boolean} [countOnly]
|
|
23061
|
+
* @param {string} [countryId]
|
|
23062
|
+
* @param {string} [hospitalId]
|
|
23063
|
+
* @param {MarketingType} [marketingType]
|
|
23064
|
+
* @param {string} [languageCode]
|
|
23065
|
+
* @param {number} [page]
|
|
23066
|
+
* @param {number} [limit]
|
|
23067
|
+
* @param {Date} [lastRetrieved]
|
|
23068
|
+
* @param {*} [options] Override http request option.
|
|
23069
|
+
* @throws {RequiredError}
|
|
23070
|
+
*/
|
|
23071
|
+
apiV1SearchHospitalsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
|
|
23072
|
+
/**
|
|
23073
|
+
*
|
|
23074
|
+
* @summary Update or Re-create hospitals Azure Search Services Index
|
|
23075
|
+
* @param {UpdateHospitalsSearchIndexCommand} [updateHospitalsSearchIndexCommand]
|
|
23076
|
+
* @param {*} [options] Override http request option.
|
|
23077
|
+
* @throws {RequiredError}
|
|
23078
|
+
*/
|
|
23079
|
+
apiV1SearchHospitalsPost(updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
23080
|
+
/**
|
|
23081
|
+
*
|
|
23082
|
+
* @summary Search specialties using Azure Search Service
|
|
23083
|
+
* @param {string} [searchTerm]
|
|
23084
|
+
* @param {boolean} [countOnly]
|
|
23085
|
+
* @param {string} [countryId]
|
|
23086
|
+
* @param {string} [hospitalId]
|
|
23087
|
+
* @param {MarketingType} [marketingType]
|
|
23088
|
+
* @param {string} [languageCode]
|
|
23089
|
+
* @param {number} [page]
|
|
23090
|
+
* @param {number} [limit]
|
|
23091
|
+
* @param {Date} [lastRetrieved]
|
|
23092
|
+
* @param {*} [options] Override http request option.
|
|
23093
|
+
* @throws {RequiredError}
|
|
23094
|
+
*/
|
|
23095
|
+
apiV1SearchSpecialtiesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesModel>>;
|
|
23096
|
+
/**
|
|
23097
|
+
*
|
|
23098
|
+
* @summary Update or Re-create specialties Azure Search Services Index
|
|
23099
|
+
* @param {UpdateSpecialtiesSearchIndexCommand} [updateSpecialtiesSearchIndexCommand]
|
|
23100
|
+
* @param {*} [options] Override http request option.
|
|
23101
|
+
* @throws {RequiredError}
|
|
23102
|
+
*/
|
|
23103
|
+
apiV1SearchSpecialtiesPost(updateSpecialtiesSearchIndexCommand?: UpdateSpecialtiesSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
23104
|
+
/**
|
|
23105
|
+
*
|
|
23106
|
+
* @summary Search specialtyTypes using Azure Search Services
|
|
23107
|
+
* @param {string} [searchTerm]
|
|
23108
|
+
* @param {boolean} [countOnly]
|
|
23109
|
+
* @param {string} [countryId]
|
|
23110
|
+
* @param {string} [hospitalId]
|
|
23111
|
+
* @param {MarketingType} [marketingType]
|
|
23112
|
+
* @param {string} [languageCode]
|
|
23113
|
+
* @param {number} [page]
|
|
23114
|
+
* @param {number} [limit]
|
|
23115
|
+
* @param {Date} [lastRetrieved]
|
|
23116
|
+
* @param {*} [options] Override http request option.
|
|
23117
|
+
* @throws {RequiredError}
|
|
23118
|
+
*/
|
|
23119
|
+
apiV1SearchSpecialtytypesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypesModel>>;
|
|
23120
|
+
/**
|
|
23121
|
+
*
|
|
23122
|
+
* @summary Update or Re-create specialtyTypes Azure Search Services Index
|
|
23123
|
+
* @param {UpdateSpecialtyTypesSearchIndexCommand} [updateSpecialtyTypesSearchIndexCommand]
|
|
23124
|
+
* @param {*} [options] Override http request option.
|
|
23125
|
+
* @throws {RequiredError}
|
|
23126
|
+
*/
|
|
23127
|
+
apiV1SearchSpecialtytypesPost(updateSpecialtyTypesSearchIndexCommand?: UpdateSpecialtyTypesSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
23128
|
+
};
|
|
23129
|
+
/**
|
|
23130
|
+
* SearchApi - factory interface
|
|
23131
|
+
* @export
|
|
23132
|
+
*/
|
|
23133
|
+
export declare const SearchApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
23134
|
+
/**
|
|
23135
|
+
*
|
|
23136
|
+
* @summary Search deals using Azure Search Service
|
|
23137
|
+
* @param {string} [searchTerm]
|
|
23138
|
+
* @param {boolean} [countOnly]
|
|
23139
|
+
* @param {string} [countryId]
|
|
23140
|
+
* @param {string} [hospitalId]
|
|
23141
|
+
* @param {MarketingType} [marketingType]
|
|
23142
|
+
* @param {string} [languageCode]
|
|
23143
|
+
* @param {number} [page]
|
|
23144
|
+
* @param {number} [limit]
|
|
23145
|
+
* @param {Date} [lastRetrieved]
|
|
23146
|
+
* @param {*} [options] Override http request option.
|
|
23147
|
+
* @throws {RequiredError}
|
|
23148
|
+
*/
|
|
23149
|
+
apiV1SearchDealsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
|
|
23150
|
+
/**
|
|
23151
|
+
*
|
|
23152
|
+
* @summary Update or Re-create deals Azure Search Services Index
|
|
23153
|
+
* @param {UpdateDealsSearchIndexCommand} [updateDealsSearchIndexCommand]
|
|
23154
|
+
* @param {*} [options] Override http request option.
|
|
23155
|
+
* @throws {RequiredError}
|
|
23156
|
+
*/
|
|
23157
|
+
apiV1SearchDealsPost(updateDealsSearchIndexCommand?: UpdateDealsSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
23158
|
+
/**
|
|
23159
|
+
*
|
|
23160
|
+
* @summary Search doctors using Azure Search Services
|
|
23161
|
+
* @param {string} [searchTerm]
|
|
23162
|
+
* @param {boolean} [countOnly]
|
|
23163
|
+
* @param {string} [countryId]
|
|
23164
|
+
* @param {string} [hospitalId]
|
|
23165
|
+
* @param {MarketingType} [marketingType]
|
|
23166
|
+
* @param {string} [languageCode]
|
|
23167
|
+
* @param {number} [page]
|
|
23168
|
+
* @param {number} [limit]
|
|
23169
|
+
* @param {Date} [lastRetrieved]
|
|
23170
|
+
* @param {*} [options] Override http request option.
|
|
23171
|
+
* @throws {RequiredError}
|
|
23172
|
+
*/
|
|
23173
|
+
apiV1SearchDoctorsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
|
|
23174
|
+
/**
|
|
23175
|
+
*
|
|
23176
|
+
* @summary Update or Re-create doctors Azure Search Services Index
|
|
23177
|
+
* @param {UpdateDoctorsSearchIndexCommand} [updateDoctorsSearchIndexCommand]
|
|
23178
|
+
* @param {*} [options] Override http request option.
|
|
23179
|
+
* @throws {RequiredError}
|
|
23180
|
+
*/
|
|
23181
|
+
apiV1SearchDoctorsPost(updateDoctorsSearchIndexCommand?: UpdateDoctorsSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
23182
|
+
/**
|
|
23183
|
+
*
|
|
23184
|
+
* @summary Get the number of items in each search index
|
|
23185
|
+
* @param {string} [searchTerm]
|
|
23186
|
+
* @param {boolean} [countOnly]
|
|
23187
|
+
* @param {string} [countryId]
|
|
23188
|
+
* @param {string} [hospitalId]
|
|
23189
|
+
* @param {MarketingType} [marketingType]
|
|
23190
|
+
* @param {string} [languageCode]
|
|
23191
|
+
* @param {number} [page]
|
|
23192
|
+
* @param {number} [limit]
|
|
23193
|
+
* @param {Date} [lastRetrieved]
|
|
23194
|
+
* @param {*} [options] Override http request option.
|
|
23195
|
+
* @throws {RequiredError}
|
|
23196
|
+
*/
|
|
23197
|
+
apiV1SearchGetcountGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<AzureSearchModel>;
|
|
23198
|
+
/**
|
|
23199
|
+
*
|
|
23200
|
+
* @summary Search hospitals using Azure Search Services
|
|
23201
|
+
* @param {string} [searchTerm]
|
|
23202
|
+
* @param {boolean} [countOnly]
|
|
23203
|
+
* @param {string} [countryId]
|
|
23204
|
+
* @param {string} [hospitalId]
|
|
23205
|
+
* @param {MarketingType} [marketingType]
|
|
23206
|
+
* @param {string} [languageCode]
|
|
23207
|
+
* @param {number} [page]
|
|
23208
|
+
* @param {number} [limit]
|
|
23209
|
+
* @param {Date} [lastRetrieved]
|
|
23210
|
+
* @param {*} [options] Override http request option.
|
|
23211
|
+
* @throws {RequiredError}
|
|
23212
|
+
*/
|
|
23213
|
+
apiV1SearchHospitalsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsModel>;
|
|
23214
|
+
/**
|
|
23215
|
+
*
|
|
23216
|
+
* @summary Update or Re-create hospitals Azure Search Services Index
|
|
23217
|
+
* @param {UpdateHospitalsSearchIndexCommand} [updateHospitalsSearchIndexCommand]
|
|
23218
|
+
* @param {*} [options] Override http request option.
|
|
23219
|
+
* @throws {RequiredError}
|
|
23220
|
+
*/
|
|
23221
|
+
apiV1SearchHospitalsPost(updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
23222
|
+
/**
|
|
23223
|
+
*
|
|
23224
|
+
* @summary Search specialties using Azure Search Service
|
|
23225
|
+
* @param {string} [searchTerm]
|
|
23226
|
+
* @param {boolean} [countOnly]
|
|
23227
|
+
* @param {string} [countryId]
|
|
23228
|
+
* @param {string} [hospitalId]
|
|
23229
|
+
* @param {MarketingType} [marketingType]
|
|
23230
|
+
* @param {string} [languageCode]
|
|
23231
|
+
* @param {number} [page]
|
|
23232
|
+
* @param {number} [limit]
|
|
23233
|
+
* @param {Date} [lastRetrieved]
|
|
23234
|
+
* @param {*} [options] Override http request option.
|
|
23235
|
+
* @throws {RequiredError}
|
|
23236
|
+
*/
|
|
23237
|
+
apiV1SearchSpecialtiesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtiesModel>;
|
|
23238
|
+
/**
|
|
23239
|
+
*
|
|
23240
|
+
* @summary Update or Re-create specialties Azure Search Services Index
|
|
23241
|
+
* @param {UpdateSpecialtiesSearchIndexCommand} [updateSpecialtiesSearchIndexCommand]
|
|
23242
|
+
* @param {*} [options] Override http request option.
|
|
23243
|
+
* @throws {RequiredError}
|
|
23244
|
+
*/
|
|
23245
|
+
apiV1SearchSpecialtiesPost(updateSpecialtiesSearchIndexCommand?: UpdateSpecialtiesSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
23246
|
+
/**
|
|
23247
|
+
*
|
|
23248
|
+
* @summary Search specialtyTypes using Azure Search Services
|
|
23249
|
+
* @param {string} [searchTerm]
|
|
23250
|
+
* @param {boolean} [countOnly]
|
|
23251
|
+
* @param {string} [countryId]
|
|
23252
|
+
* @param {string} [hospitalId]
|
|
23253
|
+
* @param {MarketingType} [marketingType]
|
|
23254
|
+
* @param {string} [languageCode]
|
|
23255
|
+
* @param {number} [page]
|
|
23256
|
+
* @param {number} [limit]
|
|
23257
|
+
* @param {Date} [lastRetrieved]
|
|
23258
|
+
* @param {*} [options] Override http request option.
|
|
23259
|
+
* @throws {RequiredError}
|
|
23260
|
+
*/
|
|
23261
|
+
apiV1SearchSpecialtytypesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtyTypesModel>;
|
|
23262
|
+
/**
|
|
23263
|
+
*
|
|
23264
|
+
* @summary Update or Re-create specialtyTypes Azure Search Services Index
|
|
23265
|
+
* @param {UpdateSpecialtyTypesSearchIndexCommand} [updateSpecialtyTypesSearchIndexCommand]
|
|
23266
|
+
* @param {*} [options] Override http request option.
|
|
23267
|
+
* @throws {RequiredError}
|
|
23268
|
+
*/
|
|
23269
|
+
apiV1SearchSpecialtytypesPost(updateSpecialtyTypesSearchIndexCommand?: UpdateSpecialtyTypesSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
23270
|
+
};
|
|
23271
|
+
/**
|
|
23272
|
+
* SearchApi - object-oriented interface
|
|
23273
|
+
* @export
|
|
23274
|
+
* @class SearchApi
|
|
23275
|
+
* @extends {BaseAPI}
|
|
23276
|
+
*/
|
|
23277
|
+
export declare class SearchApi extends BaseAPI {
|
|
23278
|
+
/**
|
|
23279
|
+
*
|
|
23280
|
+
* @summary Search deals using Azure Search Service
|
|
23281
|
+
* @param {string} [searchTerm]
|
|
23282
|
+
* @param {boolean} [countOnly]
|
|
23283
|
+
* @param {string} [countryId]
|
|
23284
|
+
* @param {string} [hospitalId]
|
|
23285
|
+
* @param {MarketingType} [marketingType]
|
|
23286
|
+
* @param {string} [languageCode]
|
|
23287
|
+
* @param {number} [page]
|
|
23288
|
+
* @param {number} [limit]
|
|
23289
|
+
* @param {Date} [lastRetrieved]
|
|
23290
|
+
* @param {*} [options] Override http request option.
|
|
23291
|
+
* @throws {RequiredError}
|
|
23292
|
+
* @memberof SearchApi
|
|
23293
|
+
*/
|
|
23294
|
+
apiV1SearchDealsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
|
|
23295
|
+
/**
|
|
23296
|
+
*
|
|
23297
|
+
* @summary Update or Re-create deals Azure Search Services Index
|
|
23298
|
+
* @param {UpdateDealsSearchIndexCommand} [updateDealsSearchIndexCommand]
|
|
23299
|
+
* @param {*} [options] Override http request option.
|
|
23300
|
+
* @throws {RequiredError}
|
|
23301
|
+
* @memberof SearchApi
|
|
23302
|
+
*/
|
|
23303
|
+
apiV1SearchDealsPost(updateDealsSearchIndexCommand?: UpdateDealsSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
23304
|
+
/**
|
|
23305
|
+
*
|
|
23306
|
+
* @summary Search doctors using Azure Search Services
|
|
23307
|
+
* @param {string} [searchTerm]
|
|
23308
|
+
* @param {boolean} [countOnly]
|
|
23309
|
+
* @param {string} [countryId]
|
|
23310
|
+
* @param {string} [hospitalId]
|
|
23311
|
+
* @param {MarketingType} [marketingType]
|
|
23312
|
+
* @param {string} [languageCode]
|
|
23313
|
+
* @param {number} [page]
|
|
23314
|
+
* @param {number} [limit]
|
|
23315
|
+
* @param {Date} [lastRetrieved]
|
|
23316
|
+
* @param {*} [options] Override http request option.
|
|
23317
|
+
* @throws {RequiredError}
|
|
23318
|
+
* @memberof SearchApi
|
|
23319
|
+
*/
|
|
23320
|
+
apiV1SearchDoctorsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
|
|
23321
|
+
/**
|
|
23322
|
+
*
|
|
23323
|
+
* @summary Update or Re-create doctors Azure Search Services Index
|
|
23324
|
+
* @param {UpdateDoctorsSearchIndexCommand} [updateDoctorsSearchIndexCommand]
|
|
23325
|
+
* @param {*} [options] Override http request option.
|
|
23326
|
+
* @throws {RequiredError}
|
|
23327
|
+
* @memberof SearchApi
|
|
23328
|
+
*/
|
|
23329
|
+
apiV1SearchDoctorsPost(updateDoctorsSearchIndexCommand?: UpdateDoctorsSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
23330
|
+
/**
|
|
23331
|
+
*
|
|
23332
|
+
* @summary Get the number of items in each search index
|
|
23333
|
+
* @param {string} [searchTerm]
|
|
23334
|
+
* @param {boolean} [countOnly]
|
|
23335
|
+
* @param {string} [countryId]
|
|
23336
|
+
* @param {string} [hospitalId]
|
|
23337
|
+
* @param {MarketingType} [marketingType]
|
|
23338
|
+
* @param {string} [languageCode]
|
|
23339
|
+
* @param {number} [page]
|
|
23340
|
+
* @param {number} [limit]
|
|
23341
|
+
* @param {Date} [lastRetrieved]
|
|
23342
|
+
* @param {*} [options] Override http request option.
|
|
23343
|
+
* @throws {RequiredError}
|
|
23344
|
+
* @memberof SearchApi
|
|
23345
|
+
*/
|
|
23346
|
+
apiV1SearchGetcountGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AzureSearchModel>>;
|
|
23347
|
+
/**
|
|
23348
|
+
*
|
|
23349
|
+
* @summary Search hospitals using Azure Search Services
|
|
23350
|
+
* @param {string} [searchTerm]
|
|
23351
|
+
* @param {boolean} [countOnly]
|
|
23352
|
+
* @param {string} [countryId]
|
|
23353
|
+
* @param {string} [hospitalId]
|
|
23354
|
+
* @param {MarketingType} [marketingType]
|
|
23355
|
+
* @param {string} [languageCode]
|
|
23356
|
+
* @param {number} [page]
|
|
23357
|
+
* @param {number} [limit]
|
|
23358
|
+
* @param {Date} [lastRetrieved]
|
|
23359
|
+
* @param {*} [options] Override http request option.
|
|
23360
|
+
* @throws {RequiredError}
|
|
23361
|
+
* @memberof SearchApi
|
|
23362
|
+
*/
|
|
23363
|
+
apiV1SearchHospitalsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel>>;
|
|
23364
|
+
/**
|
|
23365
|
+
*
|
|
23366
|
+
* @summary Update or Re-create hospitals Azure Search Services Index
|
|
23367
|
+
* @param {UpdateHospitalsSearchIndexCommand} [updateHospitalsSearchIndexCommand]
|
|
23368
|
+
* @param {*} [options] Override http request option.
|
|
23369
|
+
* @throws {RequiredError}
|
|
23370
|
+
* @memberof SearchApi
|
|
23371
|
+
*/
|
|
23372
|
+
apiV1SearchHospitalsPost(updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
23373
|
+
/**
|
|
23374
|
+
*
|
|
23375
|
+
* @summary Search specialties using Azure Search Service
|
|
23376
|
+
* @param {string} [searchTerm]
|
|
23377
|
+
* @param {boolean} [countOnly]
|
|
23378
|
+
* @param {string} [countryId]
|
|
23379
|
+
* @param {string} [hospitalId]
|
|
23380
|
+
* @param {MarketingType} [marketingType]
|
|
23381
|
+
* @param {string} [languageCode]
|
|
23382
|
+
* @param {number} [page]
|
|
23383
|
+
* @param {number} [limit]
|
|
23384
|
+
* @param {Date} [lastRetrieved]
|
|
23385
|
+
* @param {*} [options] Override http request option.
|
|
23386
|
+
* @throws {RequiredError}
|
|
23387
|
+
* @memberof SearchApi
|
|
23388
|
+
*/
|
|
23389
|
+
apiV1SearchSpecialtiesGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesModel>>;
|
|
23390
|
+
/**
|
|
23391
|
+
*
|
|
23392
|
+
* @summary Update or Re-create specialties Azure Search Services Index
|
|
23393
|
+
* @param {UpdateSpecialtiesSearchIndexCommand} [updateSpecialtiesSearchIndexCommand]
|
|
23394
|
+
* @param {*} [options] Override http request option.
|
|
23395
|
+
* @throws {RequiredError}
|
|
23396
|
+
* @memberof SearchApi
|
|
23397
|
+
*/
|
|
23398
|
+
apiV1SearchSpecialtiesPost(updateSpecialtiesSearchIndexCommand?: UpdateSpecialtiesSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
23399
|
+
/**
|
|
23400
|
+
*
|
|
23401
|
+
* @summary Search specialtyTypes using Azure Search Services
|
|
23402
|
+
* @param {string} [searchTerm]
|
|
23403
|
+
* @param {boolean} [countOnly]
|
|
23404
|
+
* @param {string} [countryId]
|
|
23405
|
+
* @param {string} [hospitalId]
|
|
23406
|
+
* @param {MarketingType} [marketingType]
|
|
23407
|
+
* @param {string} [languageCode]
|
|
23408
|
+
* @param {number} [page]
|
|
23409
|
+
* @param {number} [limit]
|
|
23410
|
+
* @param {Date} [lastRetrieved]
|
|
23411
|
+
* @param {*} [options] Override http request option.
|
|
23412
|
+
* @throws {RequiredError}
|
|
23413
|
+
* @memberof SearchApi
|
|
23414
|
+
*/
|
|
23415
|
+
apiV1SearchSpecialtytypesGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypesModel>>;
|
|
23416
|
+
/**
|
|
23417
|
+
*
|
|
23418
|
+
* @summary Update or Re-create specialtyTypes Azure Search Services Index
|
|
23419
|
+
* @param {UpdateSpecialtyTypesSearchIndexCommand} [updateSpecialtyTypesSearchIndexCommand]
|
|
23420
|
+
* @param {*} [options] Override http request option.
|
|
23421
|
+
* @throws {RequiredError}
|
|
23422
|
+
* @memberof SearchApi
|
|
23423
|
+
*/
|
|
23424
|
+
apiV1SearchSpecialtytypesPost(updateSpecialtyTypesSearchIndexCommand?: UpdateSpecialtyTypesSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
23425
|
+
}
|
|
22709
23426
|
/**
|
|
22710
23427
|
* ServiceReviewsApi - axios parameter creator
|
|
22711
23428
|
* @export
|