ch-admin-api-client-typescript 4.8.4 → 4.8.6

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 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}
@@ -16657,19 +16663,6 @@ export interface UpdateProfileCommand {
16657
16663
  */
16658
16664
  'locations'?: Array<UserLocationModel> | null;
16659
16665
  }
16660
- /**
16661
- *
16662
- * @export
16663
- * @interface UpdateSearchIndexCommand
16664
- */
16665
- export interface UpdateSearchIndexCommand {
16666
- /**
16667
- *
16668
- * @type {boolean}
16669
- * @memberof UpdateSearchIndexCommand
16670
- */
16671
- 'reCreate'?: boolean | null;
16672
- }
16673
16666
  /**
16674
16667
  *
16675
16668
  * @export
@@ -32405,11 +32398,10 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
32405
32398
  *
32406
32399
  * @summary RecreateIndex
32407
32400
  * @param {SearchIndexType} [searchIndexType]
32408
- * @param {UpdateSearchIndexCommand} [updateSearchIndexCommand]
32409
32401
  * @param {*} [options] Override http request option.
32410
32402
  * @throws {RequiredError}
32411
32403
  */
32412
- apiV1SearchRecreatePost: (searchIndexType?: SearchIndexType, updateSearchIndexCommand?: UpdateSearchIndexCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
32404
+ apiV1SearchRecreatePost: (searchIndexType?: SearchIndexType, options?: AxiosRequestConfig) => Promise<RequestArgs>;
32413
32405
  };
32414
32406
  /**
32415
32407
  * SearchApi - functional programming interface
@@ -32420,11 +32412,10 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
32420
32412
  *
32421
32413
  * @summary RecreateIndex
32422
32414
  * @param {SearchIndexType} [searchIndexType]
32423
- * @param {UpdateSearchIndexCommand} [updateSearchIndexCommand]
32424
32415
  * @param {*} [options] Override http request option.
32425
32416
  * @throws {RequiredError}
32426
32417
  */
32427
- apiV1SearchRecreatePost(searchIndexType?: SearchIndexType, updateSearchIndexCommand?: UpdateSearchIndexCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
32418
+ apiV1SearchRecreatePost(searchIndexType?: SearchIndexType, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
32428
32419
  };
32429
32420
  /**
32430
32421
  * SearchApi - factory interface
@@ -32435,11 +32426,10 @@ export declare const SearchApiFactory: (configuration?: Configuration, basePath?
32435
32426
  *
32436
32427
  * @summary RecreateIndex
32437
32428
  * @param {SearchIndexType} [searchIndexType]
32438
- * @param {UpdateSearchIndexCommand} [updateSearchIndexCommand]
32439
32429
  * @param {*} [options] Override http request option.
32440
32430
  * @throws {RequiredError}
32441
32431
  */
32442
- apiV1SearchRecreatePost(searchIndexType?: SearchIndexType, updateSearchIndexCommand?: UpdateSearchIndexCommand, options?: any): AxiosPromise<string>;
32432
+ apiV1SearchRecreatePost(searchIndexType?: SearchIndexType, options?: any): AxiosPromise<string>;
32443
32433
  };
32444
32434
  /**
32445
32435
  * SearchApi - object-oriented interface
@@ -32452,12 +32442,11 @@ export declare class SearchApi extends BaseAPI {
32452
32442
  *
32453
32443
  * @summary RecreateIndex
32454
32444
  * @param {SearchIndexType} [searchIndexType]
32455
- * @param {UpdateSearchIndexCommand} [updateSearchIndexCommand]
32456
32445
  * @param {*} [options] Override http request option.
32457
32446
  * @throws {RequiredError}
32458
32447
  * @memberof SearchApi
32459
32448
  */
32460
- apiV1SearchRecreatePost(searchIndexType?: SearchIndexType, updateSearchIndexCommand?: UpdateSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
32449
+ apiV1SearchRecreatePost(searchIndexType?: SearchIndexType, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
32461
32450
  }
32462
32451
  /**
32463
32452
  * ServiceReviewsApi - axios parameter creator