ch-admin-api-client-typescript 4.8.3 → 4.8.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 CHANGED
@@ -16657,19 +16657,6 @@ export interface UpdateProfileCommand {
16657
16657
  */
16658
16658
  'locations'?: Array<UserLocationModel> | null;
16659
16659
  }
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
16660
  /**
16674
16661
  *
16675
16662
  * @export
@@ -32405,11 +32392,11 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
32405
32392
  *
32406
32393
  * @summary RecreateIndex
32407
32394
  * @param {SearchIndexType} [searchIndexType]
32408
- * @param {UpdateSearchIndexCommand} [updateSearchIndexCommand]
32395
+ * @param {object} [body]
32409
32396
  * @param {*} [options] Override http request option.
32410
32397
  * @throws {RequiredError}
32411
32398
  */
32412
- apiV1SearchRecreatePost: (searchIndexType?: SearchIndexType, updateSearchIndexCommand?: UpdateSearchIndexCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
32399
+ apiV1SearchRecreatePost: (searchIndexType?: SearchIndexType, body?: object, options?: AxiosRequestConfig) => Promise<RequestArgs>;
32413
32400
  };
32414
32401
  /**
32415
32402
  * SearchApi - functional programming interface
@@ -32420,11 +32407,11 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
32420
32407
  *
32421
32408
  * @summary RecreateIndex
32422
32409
  * @param {SearchIndexType} [searchIndexType]
32423
- * @param {UpdateSearchIndexCommand} [updateSearchIndexCommand]
32410
+ * @param {object} [body]
32424
32411
  * @param {*} [options] Override http request option.
32425
32412
  * @throws {RequiredError}
32426
32413
  */
32427
- apiV1SearchRecreatePost(searchIndexType?: SearchIndexType, updateSearchIndexCommand?: UpdateSearchIndexCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
32414
+ apiV1SearchRecreatePost(searchIndexType?: SearchIndexType, body?: object, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
32428
32415
  };
32429
32416
  /**
32430
32417
  * SearchApi - factory interface
@@ -32435,11 +32422,11 @@ export declare const SearchApiFactory: (configuration?: Configuration, basePath?
32435
32422
  *
32436
32423
  * @summary RecreateIndex
32437
32424
  * @param {SearchIndexType} [searchIndexType]
32438
- * @param {UpdateSearchIndexCommand} [updateSearchIndexCommand]
32425
+ * @param {object} [body]
32439
32426
  * @param {*} [options] Override http request option.
32440
32427
  * @throws {RequiredError}
32441
32428
  */
32442
- apiV1SearchRecreatePost(searchIndexType?: SearchIndexType, updateSearchIndexCommand?: UpdateSearchIndexCommand, options?: any): AxiosPromise<string>;
32429
+ apiV1SearchRecreatePost(searchIndexType?: SearchIndexType, body?: object, options?: any): AxiosPromise<string>;
32443
32430
  };
32444
32431
  /**
32445
32432
  * SearchApi - object-oriented interface
@@ -32452,12 +32439,12 @@ export declare class SearchApi extends BaseAPI {
32452
32439
  *
32453
32440
  * @summary RecreateIndex
32454
32441
  * @param {SearchIndexType} [searchIndexType]
32455
- * @param {UpdateSearchIndexCommand} [updateSearchIndexCommand]
32442
+ * @param {object} [body]
32456
32443
  * @param {*} [options] Override http request option.
32457
32444
  * @throws {RequiredError}
32458
32445
  * @memberof SearchApi
32459
32446
  */
32460
- apiV1SearchRecreatePost(searchIndexType?: SearchIndexType, updateSearchIndexCommand?: UpdateSearchIndexCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
32447
+ apiV1SearchRecreatePost(searchIndexType?: SearchIndexType, body?: object, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
32461
32448
  }
32462
32449
  /**
32463
32450
  * ServiceReviewsApi - axios parameter creator