@seekora-ai/admin-api 1.0.66 → 1.0.67

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @seekora-ai/admin-api@1.0.66
1
+ ## @seekora-ai/admin-api@1.0.67
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @seekora-ai/admin-api@1.0.66 --save
39
+ npm install @seekora-ai/admin-api@1.0.67 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -240,7 +240,7 @@ Class | Method | HTTP request | Description
240
240
  *QuerySuggestionsManagementApi* | [**adminV1QuerySuggestionsXStoreIDPromotePost**](docs/QuerySuggestionsManagementApi.md#adminv1querysuggestionsxstoreidpromotepost) | **POST** /admin/v1/query-suggestions/{xStoreID}/promote | Promote Cached Suggestions to Management Table
241
241
  *QuerySuggestionsManagementApi* | [**adminV1QuerySuggestionsXStoreIDRefreshPost**](docs/QuerySuggestionsManagementApi.md#adminv1querysuggestionsxstoreidrefreshpost) | **POST** /admin/v1/query-suggestions/{xStoreID}/refresh | Refresh Auto-Generated Suggestions
242
242
  *QuerySuggestionsManagementApi* | [**adminV1QuerySuggestionsXStoreIDStatsGet**](docs/QuerySuggestionsManagementApi.md#adminv1querysuggestionsxstoreidstatsget) | **GET** /admin/v1/query-suggestions/{xStoreID}/stats | Get Suggestion Statistics
243
- *QuerySuggestionsManagementApi* | [**adminV1QuerySuggestionsXStoreIDStatusGet**](docs/QuerySuggestionsManagementApi.md#adminv1querysuggestionsxstoreidstatusget) | **GET** /admin/v1/query-suggestions/{xStoreID}/status | Get Query Suggestions Status for Store
243
+ *QuerySuggestionsManagementApi* | [**adminV1QuerySuggestionsXStoreIDStatusGet**](docs/QuerySuggestionsManagementApi.md#adminv1querysuggestionsxstoreidstatusget) | **GET** /admin/v1/query-suggestions/{xStoreID}/status | Get Query Suggestions Status
244
244
  *QuerySuggestionsManagementApi* | [**adminV1QuerySuggestionsXStoreIDSuggestionIDDelete**](docs/QuerySuggestionsManagementApi.md#adminv1querysuggestionsxstoreidsuggestioniddelete) | **DELETE** /admin/v1/query-suggestions/{xStoreID}/{suggestionID} | Delete Query Suggestion by ID
245
245
  *QuerySuggestionsManagementApi* | [**adminV1QuerySuggestionsXStoreIDSuggestionIDGet**](docs/QuerySuggestionsManagementApi.md#adminv1querysuggestionsxstoreidsuggestionidget) | **GET** /admin/v1/query-suggestions/{xStoreID}/{suggestionID} | Get Query Suggestion by ID
246
246
  *QuerySuggestionsManagementApi* | [**adminV1QuerySuggestionsXStoreIDSuggestionIDPut**](docs/QuerySuggestionsManagementApi.md#adminv1querysuggestionsxstoreidsuggestionidput) | **PUT** /admin/v1/query-suggestions/{xStoreID}/{suggestionID} | Update Query Suggestion by ID
package/api.ts CHANGED
@@ -5982,11 +5982,11 @@ export interface AnalyticsQuerySuggestionConfig {
5982
5982
  */
5983
5983
  'facet_combination_limit'?: number;
5984
5984
  /**
5985
- * Language for duplicate removal (singular/plural)
5986
- * @type {string}
5985
+ * Languages for duplicate removal (singular/plural)
5986
+ * @type {Array<string>}
5987
5987
  * @memberof AnalyticsQuerySuggestionConfig
5988
5988
  */
5989
- 'language'?: string;
5989
+ 'languages'?: Array<string>;
5990
5990
  /**
5991
5991
  * Maximum number of suggestions to return
5992
5992
  * @type {number}
@@ -6823,11 +6823,11 @@ export interface AnalyticsUpdateSuggestionConfigRequest {
6823
6823
  */
6824
6824
  'facet_combination_limit'?: number;
6825
6825
  /**
6826
- * Language for duplicate removal
6827
- * @type {string}
6826
+ * Languages for duplicate removal
6827
+ * @type {Array<string>}
6828
6828
  * @memberof AnalyticsUpdateSuggestionConfigRequest
6829
6829
  */
6830
- 'language'?: string;
6830
+ 'languages'?: Array<string>;
6831
6831
  /**
6832
6832
  * Minimum hits for suggestions
6833
6833
  * @type {number}
@@ -35932,8 +35932,8 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
35932
35932
  };
35933
35933
  },
35934
35934
  /**
35935
- * Get the current enabled/disabled status of query suggestions for a specific store
35936
- * @summary Get Query Suggestions Status for Store
35935
+ * Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
35936
+ * @summary Get Query Suggestions Status
35937
35937
  * @param {string} xStoreID Store ID
35938
35938
  * @param {*} [options] Override http request option.
35939
35939
  * @throws {RequiredError}
@@ -36588,13 +36588,13 @@ export const QuerySuggestionsManagementApiFp = function(configuration?: Configur
36588
36588
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
36589
36589
  },
36590
36590
  /**
36591
- * Get the current enabled/disabled status of query suggestions for a specific store
36592
- * @summary Get Query Suggestions Status for Store
36591
+ * Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
36592
+ * @summary Get Query Suggestions Status
36593
36593
  * @param {string} xStoreID Store ID
36594
36594
  * @param {*} [options] Override http request option.
36595
36595
  * @throws {RequiredError}
36596
36596
  */
36597
- async adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminV1QuerySuggestionsXStoreIDPromoteAllPost200Response>> {
36597
+ async adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response>> {
36598
36598
  const localVarAxiosArgs = await localVarAxiosParamCreator.adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID, options);
36599
36599
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
36600
36600
  const localVarOperationServerBasePath = operationServerMap['QuerySuggestionsManagementApi.adminV1QuerySuggestionsXStoreIDStatusGet']?.[localVarOperationServerIndex]?.url;
@@ -36949,13 +36949,13 @@ export const QuerySuggestionsManagementApiFactory = function (configuration?: Co
36949
36949
  return localVarFp.adminV1QuerySuggestionsXStoreIDStatsGet(xStoreID, options).then((request) => request(axios, basePath));
36950
36950
  },
36951
36951
  /**
36952
- * Get the current enabled/disabled status of query suggestions for a specific store
36953
- * @summary Get Query Suggestions Status for Store
36952
+ * Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
36953
+ * @summary Get Query Suggestions Status
36954
36954
  * @param {string} xStoreID Store ID
36955
36955
  * @param {*} [options] Override http request option.
36956
36956
  * @throws {RequiredError}
36957
36957
  */
36958
- adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminV1QuerySuggestionsXStoreIDPromoteAllPost200Response> {
36958
+ adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response> {
36959
36959
  return localVarFp.adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID, options).then((request) => request(axios, basePath));
36960
36960
  },
36961
36961
  /**
@@ -37328,8 +37328,8 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
37328
37328
  }
37329
37329
 
37330
37330
  /**
37331
- * Get the current enabled/disabled status of query suggestions for a specific store
37332
- * @summary Get Query Suggestions Status for Store
37331
+ * Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
37332
+ * @summary Get Query Suggestions Status
37333
37333
  * @param {string} xStoreID Store ID
37334
37334
  * @param {*} [options] Override http request option.
37335
37335
  * @throws {RequiredError}
package/dist/api.d.ts CHANGED
@@ -5990,11 +5990,11 @@ export interface AnalyticsQuerySuggestionConfig {
5990
5990
  */
5991
5991
  'facet_combination_limit'?: number;
5992
5992
  /**
5993
- * Language for duplicate removal (singular/plural)
5994
- * @type {string}
5993
+ * Languages for duplicate removal (singular/plural)
5994
+ * @type {Array<string>}
5995
5995
  * @memberof AnalyticsQuerySuggestionConfig
5996
5996
  */
5997
- 'language'?: string;
5997
+ 'languages'?: Array<string>;
5998
5998
  /**
5999
5999
  * Maximum number of suggestions to return
6000
6000
  * @type {number}
@@ -6823,11 +6823,11 @@ export interface AnalyticsUpdateSuggestionConfigRequest {
6823
6823
  */
6824
6824
  'facet_combination_limit'?: number;
6825
6825
  /**
6826
- * Language for duplicate removal
6827
- * @type {string}
6826
+ * Languages for duplicate removal
6827
+ * @type {Array<string>}
6828
6828
  * @memberof AnalyticsUpdateSuggestionConfigRequest
6829
6829
  */
6830
- 'language'?: string;
6830
+ 'languages'?: Array<string>;
6831
6831
  /**
6832
6832
  * Minimum hits for suggestions
6833
6833
  * @type {number}
@@ -26477,8 +26477,8 @@ export declare const QuerySuggestionsManagementApiAxiosParamCreator: (configurat
26477
26477
  */
26478
26478
  adminV1QuerySuggestionsXStoreIDStatsGet: (xStoreID: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26479
26479
  /**
26480
- * Get the current enabled/disabled status of query suggestions for a specific store
26481
- * @summary Get Query Suggestions Status for Store
26480
+ * Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
26481
+ * @summary Get Query Suggestions Status
26482
26482
  * @param {string} xStoreID Store ID
26483
26483
  * @param {*} [options] Override http request option.
26484
26484
  * @throws {RequiredError}
@@ -26752,13 +26752,13 @@ export declare const QuerySuggestionsManagementApiFp: (configuration?: Configura
26752
26752
  */
26753
26753
  adminV1QuerySuggestionsXStoreIDStatsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminV1QuerySuggestionsXStoreIDStatsGet200Response>>;
26754
26754
  /**
26755
- * Get the current enabled/disabled status of query suggestions for a specific store
26756
- * @summary Get Query Suggestions Status for Store
26755
+ * Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
26756
+ * @summary Get Query Suggestions Status
26757
26757
  * @param {string} xStoreID Store ID
26758
26758
  * @param {*} [options] Override http request option.
26759
26759
  * @throws {RequiredError}
26760
26760
  */
26761
- adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminV1QuerySuggestionsXStoreIDPromoteAllPost200Response>>;
26761
+ adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response>>;
26762
26762
  /**
26763
26763
  * Delete a single query suggestion by its ID
26764
26764
  * @summary Delete Query Suggestion by ID
@@ -27027,13 +27027,13 @@ export declare const QuerySuggestionsManagementApiFactory: (configuration?: Conf
27027
27027
  */
27028
27028
  adminV1QuerySuggestionsXStoreIDStatsGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminV1QuerySuggestionsXStoreIDStatsGet200Response>;
27029
27029
  /**
27030
- * Get the current enabled/disabled status of query suggestions for a specific store
27031
- * @summary Get Query Suggestions Status for Store
27030
+ * Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
27031
+ * @summary Get Query Suggestions Status
27032
27032
  * @param {string} xStoreID Store ID
27033
27033
  * @param {*} [options] Override http request option.
27034
27034
  * @throws {RequiredError}
27035
27035
  */
27036
- adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminV1QuerySuggestionsXStoreIDPromoteAllPost200Response>;
27036
+ adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response>;
27037
27037
  /**
27038
27038
  * Delete a single query suggestion by its ID
27039
27039
  * @summary Delete Query Suggestion by ID
@@ -27325,14 +27325,14 @@ export declare class QuerySuggestionsManagementApi extends BaseAPI {
27325
27325
  */
27326
27326
  adminV1QuerySuggestionsXStoreIDStatsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminV1QuerySuggestionsXStoreIDStatsGet200Response, any, {}>>;
27327
27327
  /**
27328
- * Get the current enabled/disabled status of query suggestions for a specific store
27329
- * @summary Get Query Suggestions Status for Store
27328
+ * Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
27329
+ * @summary Get Query Suggestions Status
27330
27330
  * @param {string} xStoreID Store ID
27331
27331
  * @param {*} [options] Override http request option.
27332
27332
  * @throws {RequiredError}
27333
27333
  * @memberof QuerySuggestionsManagementApi
27334
27334
  */
27335
- adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminV1QuerySuggestionsXStoreIDPromoteAllPost200Response, any, {}>>;
27335
+ adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response, any, {}>>;
27336
27336
  /**
27337
27337
  * Delete a single query suggestion by its ID
27338
27338
  * @summary Delete Query Suggestion by ID
package/dist/api.js CHANGED
@@ -17008,8 +17008,8 @@ const QuerySuggestionsManagementApiAxiosParamCreator = function (configuration)
17008
17008
  };
17009
17009
  }),
17010
17010
  /**
17011
- * Get the current enabled/disabled status of query suggestions for a specific store
17012
- * @summary Get Query Suggestions Status for Store
17011
+ * Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
17012
+ * @summary Get Query Suggestions Status
17013
17013
  * @param {string} xStoreID Store ID
17014
17014
  * @param {*} [options] Override http request option.
17015
17015
  * @throws {RequiredError}
@@ -17673,8 +17673,8 @@ const QuerySuggestionsManagementApiFp = function (configuration) {
17673
17673
  });
17674
17674
  },
17675
17675
  /**
17676
- * Get the current enabled/disabled status of query suggestions for a specific store
17677
- * @summary Get Query Suggestions Status for Store
17676
+ * Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
17677
+ * @summary Get Query Suggestions Status
17678
17678
  * @param {string} xStoreID Store ID
17679
17679
  * @param {*} [options] Override http request option.
17680
17680
  * @throws {RequiredError}
@@ -18058,8 +18058,8 @@ const QuerySuggestionsManagementApiFactory = function (configuration, basePath,
18058
18058
  return localVarFp.adminV1QuerySuggestionsXStoreIDStatsGet(xStoreID, options).then((request) => request(axios, basePath));
18059
18059
  },
18060
18060
  /**
18061
- * Get the current enabled/disabled status of query suggestions for a specific store
18062
- * @summary Get Query Suggestions Status for Store
18061
+ * Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
18062
+ * @summary Get Query Suggestions Status
18063
18063
  * @param {string} xStoreID Store ID
18064
18064
  * @param {*} [options] Override http request option.
18065
18065
  * @throws {RequiredError}
@@ -18416,8 +18416,8 @@ class QuerySuggestionsManagementApi extends base_1.BaseAPI {
18416
18416
  return (0, exports.QuerySuggestionsManagementApiFp)(this.configuration).adminV1QuerySuggestionsXStoreIDStatsGet(xStoreID, options).then((request) => request(this.axios, this.basePath));
18417
18417
  }
18418
18418
  /**
18419
- * Get the current enabled/disabled status of query suggestions for a specific store
18420
- * @summary Get Query Suggestions Status for Store
18419
+ * Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
18420
+ * @summary Get Query Suggestions Status
18421
18421
  * @param {string} xStoreID Store ID
18422
18422
  * @param {*} [options] Override http request option.
18423
18423
  * @throws {RequiredError}
package/dist/esm/api.d.ts CHANGED
@@ -5990,11 +5990,11 @@ export interface AnalyticsQuerySuggestionConfig {
5990
5990
  */
5991
5991
  'facet_combination_limit'?: number;
5992
5992
  /**
5993
- * Language for duplicate removal (singular/plural)
5994
- * @type {string}
5993
+ * Languages for duplicate removal (singular/plural)
5994
+ * @type {Array<string>}
5995
5995
  * @memberof AnalyticsQuerySuggestionConfig
5996
5996
  */
5997
- 'language'?: string;
5997
+ 'languages'?: Array<string>;
5998
5998
  /**
5999
5999
  * Maximum number of suggestions to return
6000
6000
  * @type {number}
@@ -6823,11 +6823,11 @@ export interface AnalyticsUpdateSuggestionConfigRequest {
6823
6823
  */
6824
6824
  'facet_combination_limit'?: number;
6825
6825
  /**
6826
- * Language for duplicate removal
6827
- * @type {string}
6826
+ * Languages for duplicate removal
6827
+ * @type {Array<string>}
6828
6828
  * @memberof AnalyticsUpdateSuggestionConfigRequest
6829
6829
  */
6830
- 'language'?: string;
6830
+ 'languages'?: Array<string>;
6831
6831
  /**
6832
6832
  * Minimum hits for suggestions
6833
6833
  * @type {number}
@@ -26477,8 +26477,8 @@ export declare const QuerySuggestionsManagementApiAxiosParamCreator: (configurat
26477
26477
  */
26478
26478
  adminV1QuerySuggestionsXStoreIDStatsGet: (xStoreID: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26479
26479
  /**
26480
- * Get the current enabled/disabled status of query suggestions for a specific store
26481
- * @summary Get Query Suggestions Status for Store
26480
+ * Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
26481
+ * @summary Get Query Suggestions Status
26482
26482
  * @param {string} xStoreID Store ID
26483
26483
  * @param {*} [options] Override http request option.
26484
26484
  * @throws {RequiredError}
@@ -26752,13 +26752,13 @@ export declare const QuerySuggestionsManagementApiFp: (configuration?: Configura
26752
26752
  */
26753
26753
  adminV1QuerySuggestionsXStoreIDStatsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminV1QuerySuggestionsXStoreIDStatsGet200Response>>;
26754
26754
  /**
26755
- * Get the current enabled/disabled status of query suggestions for a specific store
26756
- * @summary Get Query Suggestions Status for Store
26755
+ * Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
26756
+ * @summary Get Query Suggestions Status
26757
26757
  * @param {string} xStoreID Store ID
26758
26758
  * @param {*} [options] Override http request option.
26759
26759
  * @throws {RequiredError}
26760
26760
  */
26761
- adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminV1QuerySuggestionsXStoreIDPromoteAllPost200Response>>;
26761
+ adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response>>;
26762
26762
  /**
26763
26763
  * Delete a single query suggestion by its ID
26764
26764
  * @summary Delete Query Suggestion by ID
@@ -27027,13 +27027,13 @@ export declare const QuerySuggestionsManagementApiFactory: (configuration?: Conf
27027
27027
  */
27028
27028
  adminV1QuerySuggestionsXStoreIDStatsGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminV1QuerySuggestionsXStoreIDStatsGet200Response>;
27029
27029
  /**
27030
- * Get the current enabled/disabled status of query suggestions for a specific store
27031
- * @summary Get Query Suggestions Status for Store
27030
+ * Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
27031
+ * @summary Get Query Suggestions Status
27032
27032
  * @param {string} xStoreID Store ID
27033
27033
  * @param {*} [options] Override http request option.
27034
27034
  * @throws {RequiredError}
27035
27035
  */
27036
- adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminV1QuerySuggestionsXStoreIDPromoteAllPost200Response>;
27036
+ adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response>;
27037
27037
  /**
27038
27038
  * Delete a single query suggestion by its ID
27039
27039
  * @summary Delete Query Suggestion by ID
@@ -27325,14 +27325,14 @@ export declare class QuerySuggestionsManagementApi extends BaseAPI {
27325
27325
  */
27326
27326
  adminV1QuerySuggestionsXStoreIDStatsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminV1QuerySuggestionsXStoreIDStatsGet200Response, any, {}>>;
27327
27327
  /**
27328
- * Get the current enabled/disabled status of query suggestions for a specific store
27329
- * @summary Get Query Suggestions Status for Store
27328
+ * Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
27329
+ * @summary Get Query Suggestions Status
27330
27330
  * @param {string} xStoreID Store ID
27331
27331
  * @param {*} [options] Override http request option.
27332
27332
  * @throws {RequiredError}
27333
27333
  * @memberof QuerySuggestionsManagementApi
27334
27334
  */
27335
- adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminV1QuerySuggestionsXStoreIDPromoteAllPost200Response, any, {}>>;
27335
+ adminV1QuerySuggestionsXStoreIDStatusGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminAnalyticsStoreXStoreIDQueriesNoClicksGet200Response, any, {}>>;
27336
27336
  /**
27337
27337
  * Delete a single query suggestion by its ID
27338
27338
  * @summary Delete Query Suggestion by ID
package/dist/esm/api.js CHANGED
@@ -16901,8 +16901,8 @@ export const QuerySuggestionsManagementApiAxiosParamCreator = function (configur
16901
16901
  };
16902
16902
  }),
16903
16903
  /**
16904
- * Get the current enabled/disabled status of query suggestions for a specific store
16905
- * @summary Get Query Suggestions Status for Store
16904
+ * Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
16905
+ * @summary Get Query Suggestions Status
16906
16906
  * @param {string} xStoreID Store ID
16907
16907
  * @param {*} [options] Override http request option.
16908
16908
  * @throws {RequiredError}
@@ -17565,8 +17565,8 @@ export const QuerySuggestionsManagementApiFp = function (configuration) {
17565
17565
  });
17566
17566
  },
17567
17567
  /**
17568
- * Get the current enabled/disabled status of query suggestions for a specific store
17569
- * @summary Get Query Suggestions Status for Store
17568
+ * Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
17569
+ * @summary Get Query Suggestions Status
17570
17570
  * @param {string} xStoreID Store ID
17571
17571
  * @param {*} [options] Override http request option.
17572
17572
  * @throws {RequiredError}
@@ -17949,8 +17949,8 @@ export const QuerySuggestionsManagementApiFactory = function (configuration, bas
17949
17949
  return localVarFp.adminV1QuerySuggestionsXStoreIDStatsGet(xStoreID, options).then((request) => request(axios, basePath));
17950
17950
  },
17951
17951
  /**
17952
- * Get the current enabled/disabled status of query suggestions for a specific store
17953
- * @summary Get Query Suggestions Status for Store
17952
+ * Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
17953
+ * @summary Get Query Suggestions Status
17954
17954
  * @param {string} xStoreID Store ID
17955
17955
  * @param {*} [options] Override http request option.
17956
17956
  * @throws {RequiredError}
@@ -18306,8 +18306,8 @@ export class QuerySuggestionsManagementApi extends BaseAPI {
18306
18306
  return QuerySuggestionsManagementApiFp(this.configuration).adminV1QuerySuggestionsXStoreIDStatsGet(xStoreID, options).then((request) => request(this.axios, this.basePath));
18307
18307
  }
18308
18308
  /**
18309
- * Get the current enabled/disabled status of query suggestions for a specific store
18310
- * @summary Get Query Suggestions Status for Store
18309
+ * Retrieve the current status of query suggestions for a store including index readiness and last sync timestamp
18310
+ * @summary Get Query Suggestions Status
18311
18311
  * @param {string} xStoreID Store ID
18312
18312
  * @param {*} [options] Override http request option.
18313
18313
  * @throws {RequiredError}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seekora-ai/admin-api",
3
- "version": "1.0.66",
3
+ "version": "1.0.67",
4
4
  "description": "OpenAPI client for @seekora-ai/admin-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
Binary file
Binary file