ch-admin-api-client-typescript 4.8.5 → 4.8.7-test
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 +10 -8
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +7 -13
- package/package.json +1 -1
package/lib/api.d.ts
CHANGED
|
@@ -16596,6 +16596,12 @@ export interface UpdatePlanHospitalCommand {
|
|
|
16596
16596
|
* @interface UpdateProfileCommand
|
|
16597
16597
|
*/
|
|
16598
16598
|
export interface UpdateProfileCommand {
|
|
16599
|
+
/**
|
|
16600
|
+
*
|
|
16601
|
+
* @type {string}
|
|
16602
|
+
* @memberof UpdateProfileCommand
|
|
16603
|
+
*/
|
|
16604
|
+
'email'?: string | null;
|
|
16599
16605
|
/**
|
|
16600
16606
|
*
|
|
16601
16607
|
* @type {string}
|
|
@@ -32392,11 +32398,10 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
32392
32398
|
*
|
|
32393
32399
|
* @summary RecreateIndex
|
|
32394
32400
|
* @param {SearchIndexType} [searchIndexType]
|
|
32395
|
-
* @param {object} [body]
|
|
32396
32401
|
* @param {*} [options] Override http request option.
|
|
32397
32402
|
* @throws {RequiredError}
|
|
32398
32403
|
*/
|
|
32399
|
-
apiV1SearchRecreatePost: (searchIndexType?: SearchIndexType,
|
|
32404
|
+
apiV1SearchRecreatePost: (searchIndexType?: SearchIndexType, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32400
32405
|
};
|
|
32401
32406
|
/**
|
|
32402
32407
|
* SearchApi - functional programming interface
|
|
@@ -32407,11 +32412,10 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
|
32407
32412
|
*
|
|
32408
32413
|
* @summary RecreateIndex
|
|
32409
32414
|
* @param {SearchIndexType} [searchIndexType]
|
|
32410
|
-
* @param {object} [body]
|
|
32411
32415
|
* @param {*} [options] Override http request option.
|
|
32412
32416
|
* @throws {RequiredError}
|
|
32413
32417
|
*/
|
|
32414
|
-
apiV1SearchRecreatePost(searchIndexType?: SearchIndexType,
|
|
32418
|
+
apiV1SearchRecreatePost(searchIndexType?: SearchIndexType, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
32415
32419
|
};
|
|
32416
32420
|
/**
|
|
32417
32421
|
* SearchApi - factory interface
|
|
@@ -32422,11 +32426,10 @@ export declare const SearchApiFactory: (configuration?: Configuration, basePath?
|
|
|
32422
32426
|
*
|
|
32423
32427
|
* @summary RecreateIndex
|
|
32424
32428
|
* @param {SearchIndexType} [searchIndexType]
|
|
32425
|
-
* @param {object} [body]
|
|
32426
32429
|
* @param {*} [options] Override http request option.
|
|
32427
32430
|
* @throws {RequiredError}
|
|
32428
32431
|
*/
|
|
32429
|
-
apiV1SearchRecreatePost(searchIndexType?: SearchIndexType,
|
|
32432
|
+
apiV1SearchRecreatePost(searchIndexType?: SearchIndexType, options?: any): AxiosPromise<string>;
|
|
32430
32433
|
};
|
|
32431
32434
|
/**
|
|
32432
32435
|
* SearchApi - object-oriented interface
|
|
@@ -32439,12 +32442,11 @@ export declare class SearchApi extends BaseAPI {
|
|
|
32439
32442
|
*
|
|
32440
32443
|
* @summary RecreateIndex
|
|
32441
32444
|
* @param {SearchIndexType} [searchIndexType]
|
|
32442
|
-
* @param {object} [body]
|
|
32443
32445
|
* @param {*} [options] Override http request option.
|
|
32444
32446
|
* @throws {RequiredError}
|
|
32445
32447
|
* @memberof SearchApi
|
|
32446
32448
|
*/
|
|
32447
|
-
apiV1SearchRecreatePost(searchIndexType?: SearchIndexType,
|
|
32449
|
+
apiV1SearchRecreatePost(searchIndexType?: SearchIndexType, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
32448
32450
|
}
|
|
32449
32451
|
/**
|
|
32450
32452
|
* ServiceReviewsApi - axios parameter creator
|