@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 +3 -3
- package/api.ts +16 -16
- package/dist/api.d.ts +17 -17
- package/dist/api.js +8 -8
- package/dist/esm/api.d.ts +17 -17
- package/dist/esm/api.js +8 -8
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.67.tgz +0 -0
- package/seekora-ai-admin-api-1.0.66.tgz +0 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @seekora-ai/admin-api@1.0.
|
|
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.
|
|
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
|
|
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
|
-
*
|
|
5986
|
-
* @type {string}
|
|
5985
|
+
* Languages for duplicate removal (singular/plural)
|
|
5986
|
+
* @type {Array<string>}
|
|
5987
5987
|
* @memberof AnalyticsQuerySuggestionConfig
|
|
5988
5988
|
*/
|
|
5989
|
-
'
|
|
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
|
-
*
|
|
6827
|
-
* @type {string}
|
|
6826
|
+
* Languages for duplicate removal
|
|
6827
|
+
* @type {Array<string>}
|
|
6828
6828
|
* @memberof AnalyticsUpdateSuggestionConfigRequest
|
|
6829
6829
|
*/
|
|
6830
|
-
'
|
|
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
|
-
*
|
|
35936
|
-
* @summary Get Query Suggestions Status
|
|
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
|
-
*
|
|
36592
|
-
* @summary Get Query Suggestions Status
|
|
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<
|
|
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
|
-
*
|
|
36953
|
-
* @summary Get Query Suggestions Status
|
|
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<
|
|
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
|
-
*
|
|
37332
|
-
* @summary Get Query Suggestions Status
|
|
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
|
-
*
|
|
5994
|
-
* @type {string}
|
|
5993
|
+
* Languages for duplicate removal (singular/plural)
|
|
5994
|
+
* @type {Array<string>}
|
|
5995
5995
|
* @memberof AnalyticsQuerySuggestionConfig
|
|
5996
5996
|
*/
|
|
5997
|
-
'
|
|
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
|
-
*
|
|
6827
|
-
* @type {string}
|
|
6826
|
+
* Languages for duplicate removal
|
|
6827
|
+
* @type {Array<string>}
|
|
6828
6828
|
* @memberof AnalyticsUpdateSuggestionConfigRequest
|
|
6829
6829
|
*/
|
|
6830
|
-
'
|
|
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
|
-
*
|
|
26481
|
-
* @summary Get Query Suggestions Status
|
|
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
|
-
*
|
|
26756
|
-
* @summary Get Query Suggestions Status
|
|
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<
|
|
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
|
-
*
|
|
27031
|
-
* @summary Get Query Suggestions Status
|
|
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<
|
|
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
|
-
*
|
|
27329
|
-
* @summary Get Query Suggestions Status
|
|
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<
|
|
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
|
-
*
|
|
17012
|
-
* @summary Get Query Suggestions Status
|
|
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
|
-
*
|
|
17677
|
-
* @summary Get Query Suggestions Status
|
|
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
|
-
*
|
|
18062
|
-
* @summary Get Query Suggestions Status
|
|
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
|
-
*
|
|
18420
|
-
* @summary Get Query Suggestions Status
|
|
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
|
-
*
|
|
5994
|
-
* @type {string}
|
|
5993
|
+
* Languages for duplicate removal (singular/plural)
|
|
5994
|
+
* @type {Array<string>}
|
|
5995
5995
|
* @memberof AnalyticsQuerySuggestionConfig
|
|
5996
5996
|
*/
|
|
5997
|
-
'
|
|
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
|
-
*
|
|
6827
|
-
* @type {string}
|
|
6826
|
+
* Languages for duplicate removal
|
|
6827
|
+
* @type {Array<string>}
|
|
6828
6828
|
* @memberof AnalyticsUpdateSuggestionConfigRequest
|
|
6829
6829
|
*/
|
|
6830
|
-
'
|
|
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
|
-
*
|
|
26481
|
-
* @summary Get Query Suggestions Status
|
|
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
|
-
*
|
|
26756
|
-
* @summary Get Query Suggestions Status
|
|
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<
|
|
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
|
-
*
|
|
27031
|
-
* @summary Get Query Suggestions Status
|
|
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<
|
|
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
|
-
*
|
|
27329
|
-
* @summary Get Query Suggestions Status
|
|
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<
|
|
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
|
-
*
|
|
16905
|
-
* @summary Get Query Suggestions Status
|
|
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
|
-
*
|
|
17569
|
-
* @summary Get Query Suggestions Status
|
|
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
|
-
*
|
|
17953
|
-
* @summary Get Query Suggestions Status
|
|
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
|
-
*
|
|
18310
|
-
* @summary Get Query Suggestions Status
|
|
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
|
Binary file
|
|
Binary file
|