ch-admin-api-client-typescript 3.5.1 → 3.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api.d.ts +52 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +84 -0
- package/package.json +1 -1
- package/src/api.ts +90 -0
package/lib/api.d.ts
CHANGED
|
@@ -12689,6 +12689,25 @@ export interface UpdateHospitalSnsHandleCommand {
|
|
|
12689
12689
|
*/
|
|
12690
12690
|
'handle'?: string | null;
|
|
12691
12691
|
}
|
|
12692
|
+
/**
|
|
12693
|
+
*
|
|
12694
|
+
* @export
|
|
12695
|
+
* @interface UpdateHospitalSpecialtiesSearchIndexCommand
|
|
12696
|
+
*/
|
|
12697
|
+
export interface UpdateHospitalSpecialtiesSearchIndexCommand {
|
|
12698
|
+
/**
|
|
12699
|
+
*
|
|
12700
|
+
* @type {number}
|
|
12701
|
+
* @memberof UpdateHospitalSpecialtiesSearchIndexCommand
|
|
12702
|
+
*/
|
|
12703
|
+
'batchSize'?: number | null;
|
|
12704
|
+
/**
|
|
12705
|
+
*
|
|
12706
|
+
* @type {boolean}
|
|
12707
|
+
* @memberof UpdateHospitalSpecialtiesSearchIndexCommand
|
|
12708
|
+
*/
|
|
12709
|
+
'reCreate'?: boolean | null;
|
|
12710
|
+
}
|
|
12692
12711
|
/**
|
|
12693
12712
|
*
|
|
12694
12713
|
* @export
|
|
@@ -26782,6 +26801,14 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration
|
|
|
26782
26801
|
* @throws {RequiredError}
|
|
26783
26802
|
*/
|
|
26784
26803
|
apiV1SearchHospitalsPost: (updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26804
|
+
/**
|
|
26805
|
+
*
|
|
26806
|
+
* @summary Update or Re-create hospitalSpecialties Azure Search Services Index
|
|
26807
|
+
* @param {UpdateHospitalSpecialtiesSearchIndexCommand} [updateHospitalSpecialtiesSearchIndexCommand]
|
|
26808
|
+
* @param {*} [options] Override http request option.
|
|
26809
|
+
* @throws {RequiredError}
|
|
26810
|
+
*/
|
|
26811
|
+
apiV1SearchHospitalspecialtiesPost: (updateHospitalSpecialtiesSearchIndexCommand?: UpdateHospitalSpecialtiesSearchIndexCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26785
26812
|
/**
|
|
26786
26813
|
*
|
|
26787
26814
|
* @summary Update or Re-create specialties Azure Search Services Index
|
|
@@ -26828,6 +26855,14 @@ export declare const SearchApiFp: (configuration?: Configuration | undefined) =>
|
|
|
26828
26855
|
* @throws {RequiredError}
|
|
26829
26856
|
*/
|
|
26830
26857
|
apiV1SearchHospitalsPost(updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
26858
|
+
/**
|
|
26859
|
+
*
|
|
26860
|
+
* @summary Update or Re-create hospitalSpecialties Azure Search Services Index
|
|
26861
|
+
* @param {UpdateHospitalSpecialtiesSearchIndexCommand} [updateHospitalSpecialtiesSearchIndexCommand]
|
|
26862
|
+
* @param {*} [options] Override http request option.
|
|
26863
|
+
* @throws {RequiredError}
|
|
26864
|
+
*/
|
|
26865
|
+
apiV1SearchHospitalspecialtiesPost(updateHospitalSpecialtiesSearchIndexCommand?: UpdateHospitalSpecialtiesSearchIndexCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
26831
26866
|
/**
|
|
26832
26867
|
*
|
|
26833
26868
|
* @summary Update or Re-create specialties Azure Search Services Index
|
|
@@ -26874,6 +26909,14 @@ export declare const SearchApiFactory: (configuration?: Configuration | undefine
|
|
|
26874
26909
|
* @throws {RequiredError}
|
|
26875
26910
|
*/
|
|
26876
26911
|
apiV1SearchHospitalsPost(updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
26912
|
+
/**
|
|
26913
|
+
*
|
|
26914
|
+
* @summary Update or Re-create hospitalSpecialties Azure Search Services Index
|
|
26915
|
+
* @param {UpdateHospitalSpecialtiesSearchIndexCommand} [updateHospitalSpecialtiesSearchIndexCommand]
|
|
26916
|
+
* @param {*} [options] Override http request option.
|
|
26917
|
+
* @throws {RequiredError}
|
|
26918
|
+
*/
|
|
26919
|
+
apiV1SearchHospitalspecialtiesPost(updateHospitalSpecialtiesSearchIndexCommand?: UpdateHospitalSpecialtiesSearchIndexCommand | undefined, options?: any): AxiosPromise<string>;
|
|
26877
26920
|
/**
|
|
26878
26921
|
*
|
|
26879
26922
|
* @summary Update or Re-create specialties Azure Search Services Index
|
|
@@ -26925,6 +26968,15 @@ export declare class SearchApi extends BaseAPI {
|
|
|
26925
26968
|
* @memberof SearchApi
|
|
26926
26969
|
*/
|
|
26927
26970
|
apiV1SearchHospitalsPost(updateHospitalsSearchIndexCommand?: UpdateHospitalsSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
26971
|
+
/**
|
|
26972
|
+
*
|
|
26973
|
+
* @summary Update or Re-create hospitalSpecialties Azure Search Services Index
|
|
26974
|
+
* @param {UpdateHospitalSpecialtiesSearchIndexCommand} [updateHospitalSpecialtiesSearchIndexCommand]
|
|
26975
|
+
* @param {*} [options] Override http request option.
|
|
26976
|
+
* @throws {RequiredError}
|
|
26977
|
+
* @memberof SearchApi
|
|
26978
|
+
*/
|
|
26979
|
+
apiV1SearchHospitalspecialtiesPost(updateHospitalSpecialtiesSearchIndexCommand?: UpdateHospitalSpecialtiesSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
26928
26980
|
/**
|
|
26929
26981
|
*
|
|
26930
26982
|
* @summary Update or Re-create specialties Azure Search Services Index
|