@seekora-ai/admin-api 1.1.78 → 1.1.79
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 +7 -3
- package/api.ts +448 -96
- package/dist/api.d.ts +227 -45
- package/dist/api.js +429 -95
- package/dist/esm/api.d.ts +227 -45
- package/dist/esm/api.js +419 -89
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.79.tgz +0 -0
- package/seekora-ai-admin-api-1.1.78.tgz +0 -0
package/dist/api.d.ts
CHANGED
|
@@ -48580,6 +48580,57 @@ export declare class DataQualityApi extends BaseAPI {
|
|
|
48580
48580
|
[key: string]: any;
|
|
48581
48581
|
}, any, {}>>;
|
|
48582
48582
|
}
|
|
48583
|
+
/**
|
|
48584
|
+
* DefaultApi - axios parameter creator
|
|
48585
|
+
* @export
|
|
48586
|
+
*/
|
|
48587
|
+
export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
48588
|
+
/**
|
|
48589
|
+
*
|
|
48590
|
+
* @param {*} [options] Override http request option.
|
|
48591
|
+
* @throws {RequiredError}
|
|
48592
|
+
*/
|
|
48593
|
+
adminStoresXStoreIDSearchGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
48594
|
+
};
|
|
48595
|
+
/**
|
|
48596
|
+
* DefaultApi - functional programming interface
|
|
48597
|
+
* @export
|
|
48598
|
+
*/
|
|
48599
|
+
export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
48600
|
+
/**
|
|
48601
|
+
*
|
|
48602
|
+
* @param {*} [options] Override http request option.
|
|
48603
|
+
* @throws {RequiredError}
|
|
48604
|
+
*/
|
|
48605
|
+
adminStoresXStoreIDSearchGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
48606
|
+
};
|
|
48607
|
+
/**
|
|
48608
|
+
* DefaultApi - factory interface
|
|
48609
|
+
* @export
|
|
48610
|
+
*/
|
|
48611
|
+
export declare const DefaultApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
48612
|
+
/**
|
|
48613
|
+
*
|
|
48614
|
+
* @param {*} [options] Override http request option.
|
|
48615
|
+
* @throws {RequiredError}
|
|
48616
|
+
*/
|
|
48617
|
+
adminStoresXStoreIDSearchGet(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
48618
|
+
};
|
|
48619
|
+
/**
|
|
48620
|
+
* DefaultApi - object-oriented interface
|
|
48621
|
+
* @export
|
|
48622
|
+
* @class DefaultApi
|
|
48623
|
+
* @extends {BaseAPI}
|
|
48624
|
+
*/
|
|
48625
|
+
export declare class DefaultApi extends BaseAPI {
|
|
48626
|
+
/**
|
|
48627
|
+
*
|
|
48628
|
+
* @param {*} [options] Override http request option.
|
|
48629
|
+
* @throws {RequiredError}
|
|
48630
|
+
* @memberof DefaultApi
|
|
48631
|
+
*/
|
|
48632
|
+
adminStoresXStoreIDSearchGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
48633
|
+
}
|
|
48583
48634
|
/**
|
|
48584
48635
|
* DefaultMenuManagementApi - axios parameter creator
|
|
48585
48636
|
* @export
|
|
@@ -48696,6 +48747,22 @@ export declare const DocumentationApiAxiosParamCreator: (configuration?: Configu
|
|
|
48696
48747
|
v1DocsIndexPost: (xDocsAPIKey: string, requestBody: {
|
|
48697
48748
|
[key: string]: any;
|
|
48698
48749
|
}, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
48750
|
+
/**
|
|
48751
|
+
* Creates the \"docs\" Typesense collection with the correct schema if missing or outdated. No DB change; store must already have index \"docs\". Requires X-Docs-API-Key header.
|
|
48752
|
+
* @summary Create or fix docs collection
|
|
48753
|
+
* @param {string} xDocsAPIKey Documentation API Secret Key
|
|
48754
|
+
* @param {*} [options] Override http request option.
|
|
48755
|
+
* @throws {RequiredError}
|
|
48756
|
+
*/
|
|
48757
|
+
v1DocsInitCollectionPost: (xDocsAPIKey: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
48758
|
+
/**
|
|
48759
|
+
* Deletes the existing docs collection and the collection the alias \"docs\" points to (if any). Run the scraper (POST /v1/docs/scrape) against DOCS_URL (e.g. stage-docs.seekora.ai) to create a new collection with infix enabled. Requires X-Docs-API-Key header.
|
|
48760
|
+
* @summary Recreate docs collection for infix search
|
|
48761
|
+
* @param {string} xDocsAPIKey Documentation API Secret Key
|
|
48762
|
+
* @param {*} [options] Override http request option.
|
|
48763
|
+
* @throws {RequiredError}
|
|
48764
|
+
*/
|
|
48765
|
+
v1DocsRecreateCollectionPost: (xDocsAPIKey: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
48699
48766
|
/**
|
|
48700
48767
|
* Scrapes the documentation site and indexes all pages in Typesense. Requires X-Docs-API-Key header. Returns 404 if API key is missing or invalid.
|
|
48701
48768
|
* @summary Scrape and index documentation
|
|
@@ -48759,6 +48826,26 @@ export declare const DocumentationApiFp: (configuration?: Configuration) => {
|
|
|
48759
48826
|
}, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
48760
48827
|
[key: string]: any;
|
|
48761
48828
|
}>>;
|
|
48829
|
+
/**
|
|
48830
|
+
* Creates the \"docs\" Typesense collection with the correct schema if missing or outdated. No DB change; store must already have index \"docs\". Requires X-Docs-API-Key header.
|
|
48831
|
+
* @summary Create or fix docs collection
|
|
48832
|
+
* @param {string} xDocsAPIKey Documentation API Secret Key
|
|
48833
|
+
* @param {*} [options] Override http request option.
|
|
48834
|
+
* @throws {RequiredError}
|
|
48835
|
+
*/
|
|
48836
|
+
v1DocsInitCollectionPost(xDocsAPIKey: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
48837
|
+
[key: string]: any;
|
|
48838
|
+
}>>;
|
|
48839
|
+
/**
|
|
48840
|
+
* Deletes the existing docs collection and the collection the alias \"docs\" points to (if any). Run the scraper (POST /v1/docs/scrape) against DOCS_URL (e.g. stage-docs.seekora.ai) to create a new collection with infix enabled. Requires X-Docs-API-Key header.
|
|
48841
|
+
* @summary Recreate docs collection for infix search
|
|
48842
|
+
* @param {string} xDocsAPIKey Documentation API Secret Key
|
|
48843
|
+
* @param {*} [options] Override http request option.
|
|
48844
|
+
* @throws {RequiredError}
|
|
48845
|
+
*/
|
|
48846
|
+
v1DocsRecreateCollectionPost(xDocsAPIKey: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
48847
|
+
[key: string]: any;
|
|
48848
|
+
}>>;
|
|
48762
48849
|
/**
|
|
48763
48850
|
* Scrapes the documentation site and indexes all pages in Typesense. Requires X-Docs-API-Key header. Returns 404 if API key is missing or invalid.
|
|
48764
48851
|
* @summary Scrape and index documentation
|
|
@@ -48830,6 +48917,26 @@ export declare const DocumentationApiFactory: (configuration?: Configuration, ba
|
|
|
48830
48917
|
}, options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
48831
48918
|
[key: string]: any;
|
|
48832
48919
|
}>;
|
|
48920
|
+
/**
|
|
48921
|
+
* Creates the \"docs\" Typesense collection with the correct schema if missing or outdated. No DB change; store must already have index \"docs\". Requires X-Docs-API-Key header.
|
|
48922
|
+
* @summary Create or fix docs collection
|
|
48923
|
+
* @param {string} xDocsAPIKey Documentation API Secret Key
|
|
48924
|
+
* @param {*} [options] Override http request option.
|
|
48925
|
+
* @throws {RequiredError}
|
|
48926
|
+
*/
|
|
48927
|
+
v1DocsInitCollectionPost(xDocsAPIKey: string, options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
48928
|
+
[key: string]: any;
|
|
48929
|
+
}>;
|
|
48930
|
+
/**
|
|
48931
|
+
* Deletes the existing docs collection and the collection the alias \"docs\" points to (if any). Run the scraper (POST /v1/docs/scrape) against DOCS_URL (e.g. stage-docs.seekora.ai) to create a new collection with infix enabled. Requires X-Docs-API-Key header.
|
|
48932
|
+
* @summary Recreate docs collection for infix search
|
|
48933
|
+
* @param {string} xDocsAPIKey Documentation API Secret Key
|
|
48934
|
+
* @param {*} [options] Override http request option.
|
|
48935
|
+
* @throws {RequiredError}
|
|
48936
|
+
*/
|
|
48937
|
+
v1DocsRecreateCollectionPost(xDocsAPIKey: string, options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
48938
|
+
[key: string]: any;
|
|
48939
|
+
}>;
|
|
48833
48940
|
/**
|
|
48834
48941
|
* Scrapes the documentation site and indexes all pages in Typesense. Requires X-Docs-API-Key header. Returns 404 if API key is missing or invalid.
|
|
48835
48942
|
* @summary Scrape and index documentation
|
|
@@ -48905,6 +49012,28 @@ export declare class DocumentationApi extends BaseAPI {
|
|
|
48905
49012
|
}, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
48906
49013
|
[key: string]: any;
|
|
48907
49014
|
}, any, {}>>;
|
|
49015
|
+
/**
|
|
49016
|
+
* Creates the \"docs\" Typesense collection with the correct schema if missing or outdated. No DB change; store must already have index \"docs\". Requires X-Docs-API-Key header.
|
|
49017
|
+
* @summary Create or fix docs collection
|
|
49018
|
+
* @param {string} xDocsAPIKey Documentation API Secret Key
|
|
49019
|
+
* @param {*} [options] Override http request option.
|
|
49020
|
+
* @throws {RequiredError}
|
|
49021
|
+
* @memberof DocumentationApi
|
|
49022
|
+
*/
|
|
49023
|
+
v1DocsInitCollectionPost(xDocsAPIKey: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
49024
|
+
[key: string]: any;
|
|
49025
|
+
}, any, {}>>;
|
|
49026
|
+
/**
|
|
49027
|
+
* Deletes the existing docs collection and the collection the alias \"docs\" points to (if any). Run the scraper (POST /v1/docs/scrape) against DOCS_URL (e.g. stage-docs.seekora.ai) to create a new collection with infix enabled. Requires X-Docs-API-Key header.
|
|
49028
|
+
* @summary Recreate docs collection for infix search
|
|
49029
|
+
* @param {string} xDocsAPIKey Documentation API Secret Key
|
|
49030
|
+
* @param {*} [options] Override http request option.
|
|
49031
|
+
* @throws {RequiredError}
|
|
49032
|
+
* @memberof DocumentationApi
|
|
49033
|
+
*/
|
|
49034
|
+
v1DocsRecreateCollectionPost(xDocsAPIKey: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
49035
|
+
[key: string]: any;
|
|
49036
|
+
}, any, {}>>;
|
|
48908
49037
|
/**
|
|
48909
49038
|
* Scrapes the documentation site and indexes all pages in Typesense. Requires X-Docs-API-Key header. Returns 404 if API key is missing or invalid.
|
|
48910
49039
|
* @summary Scrape and index documentation
|
|
@@ -59996,6 +60125,30 @@ export declare const StoresApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
59996
60125
|
* @throws {RequiredError}
|
|
59997
60126
|
*/
|
|
59998
60127
|
adminStoresXStoreIDApiUsageGet: (xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, statusCode?: string, endpointType?: string, responseTime?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
60128
|
+
/**
|
|
60129
|
+
* Perform search on a specific store by xStoreID. Empty query string returns all results. Invalidates Redis caches for the store (store_by_xstoreid, store_search_config, store_creation_progress_config). Use after updating store creation steps so search and config reads see fresh data.
|
|
60130
|
+
* @summary Invalidate store caches
|
|
60131
|
+
* @param {string} xStoreID X-Store ID
|
|
60132
|
+
* @param {string} xStoreID2 X-Store ID
|
|
60133
|
+
* @param {string} [query] Search query (empty returns all results)
|
|
60134
|
+
* @param {number} [page] Page number
|
|
60135
|
+
* @param {number} [pageSize] Page size
|
|
60136
|
+
* @param {*} [options] Override http request option.
|
|
60137
|
+
* @throws {RequiredError}
|
|
60138
|
+
*/
|
|
60139
|
+
adminStoresXStoreIDCacheInvalidatePost: (xStoreID: string, xStoreID2: string, query?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
60140
|
+
/**
|
|
60141
|
+
* Perform search on a specific store by xStoreID. Empty query string returns all results. Invalidates Redis caches for the store (store_by_xstoreid, store_search_config, store_creation_progress_config). Use after updating store creation steps so search and config reads see fresh data.
|
|
60142
|
+
* @summary Invalidate store caches
|
|
60143
|
+
* @param {string} xStoreID X-Store ID
|
|
60144
|
+
* @param {string} xStoreID2 X-Store ID
|
|
60145
|
+
* @param {string} [query] Search query (empty returns all results)
|
|
60146
|
+
* @param {number} [page] Page number
|
|
60147
|
+
* @param {number} [pageSize] Page size
|
|
60148
|
+
* @param {*} [options] Override http request option.
|
|
60149
|
+
* @throws {RequiredError}
|
|
60150
|
+
*/
|
|
60151
|
+
adminStoresXStoreIDCacheInvalidatePost_1: (xStoreID: string, xStoreID2: string, query?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
59999
60152
|
/**
|
|
60000
60153
|
* Retrieves the store configuration using x-store ID, including onboarding status validation
|
|
60001
60154
|
* @summary Get Store Config
|
|
@@ -60055,17 +60208,6 @@ export declare const StoresApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
60055
60208
|
* @throws {RequiredError}
|
|
60056
60209
|
*/
|
|
60057
60210
|
adminStoresXStoreIDSchemaOptionsGet: (xStoreID: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
60058
|
-
/**
|
|
60059
|
-
* Perform search on a specific store by xStoreID. Empty query string returns all results.
|
|
60060
|
-
* @summary Get store search results
|
|
60061
|
-
* @param {string} xStoreID X-Store ID
|
|
60062
|
-
* @param {string} [query] Search query (empty returns all results)
|
|
60063
|
-
* @param {number} [page] Page number
|
|
60064
|
-
* @param {number} [pageSize] Page size
|
|
60065
|
-
* @param {*} [options] Override http request option.
|
|
60066
|
-
* @throws {RequiredError}
|
|
60067
|
-
*/
|
|
60068
|
-
adminStoresXStoreIDSearchGet: (xStoreID: string, query?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
60069
60211
|
/**
|
|
60070
60212
|
* Update store configuration for specific steps (displayAttributes, searchableAttributes, relevancyOrder)
|
|
60071
60213
|
* @summary Update store step configuration
|
|
@@ -60211,6 +60353,30 @@ export declare const StoresApiFp: (configuration?: Configuration) => {
|
|
|
60211
60353
|
* @throws {RequiredError}
|
|
60212
60354
|
*/
|
|
60213
60355
|
adminStoresXStoreIDApiUsageGet(xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, statusCode?: string, endpointType?: string, responseTime?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StoreRouteAPIUsageListResponse>>;
|
|
60356
|
+
/**
|
|
60357
|
+
* Perform search on a specific store by xStoreID. Empty query string returns all results. Invalidates Redis caches for the store (store_by_xstoreid, store_search_config, store_creation_progress_config). Use after updating store creation steps so search and config reads see fresh data.
|
|
60358
|
+
* @summary Invalidate store caches
|
|
60359
|
+
* @param {string} xStoreID X-Store ID
|
|
60360
|
+
* @param {string} xStoreID2 X-Store ID
|
|
60361
|
+
* @param {string} [query] Search query (empty returns all results)
|
|
60362
|
+
* @param {number} [page] Page number
|
|
60363
|
+
* @param {number} [pageSize] Page size
|
|
60364
|
+
* @param {*} [options] Override http request option.
|
|
60365
|
+
* @throws {RequiredError}
|
|
60366
|
+
*/
|
|
60367
|
+
adminStoresXStoreIDCacheInvalidatePost(xStoreID: string, xStoreID2: string, query?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
60368
|
+
/**
|
|
60369
|
+
* Perform search on a specific store by xStoreID. Empty query string returns all results. Invalidates Redis caches for the store (store_by_xstoreid, store_search_config, store_creation_progress_config). Use after updating store creation steps so search and config reads see fresh data.
|
|
60370
|
+
* @summary Invalidate store caches
|
|
60371
|
+
* @param {string} xStoreID X-Store ID
|
|
60372
|
+
* @param {string} xStoreID2 X-Store ID
|
|
60373
|
+
* @param {string} [query] Search query (empty returns all results)
|
|
60374
|
+
* @param {number} [page] Page number
|
|
60375
|
+
* @param {number} [pageSize] Page size
|
|
60376
|
+
* @param {*} [options] Override http request option.
|
|
60377
|
+
* @throws {RequiredError}
|
|
60378
|
+
*/
|
|
60379
|
+
adminStoresXStoreIDCacheInvalidatePost_1(xStoreID: string, xStoreID2: string, query?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
60214
60380
|
/**
|
|
60215
60381
|
* Retrieves the store configuration using x-store ID, including onboarding status validation
|
|
60216
60382
|
* @summary Get Store Config
|
|
@@ -60270,17 +60436,6 @@ export declare const StoresApiFp: (configuration?: Configuration) => {
|
|
|
60270
60436
|
* @throws {RequiredError}
|
|
60271
60437
|
*/
|
|
60272
60438
|
adminStoresXStoreIDSchemaOptionsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSchemaOptionsResponseWrapper>>;
|
|
60273
|
-
/**
|
|
60274
|
-
* Perform search on a specific store by xStoreID. Empty query string returns all results.
|
|
60275
|
-
* @summary Get store search results
|
|
60276
|
-
* @param {string} xStoreID X-Store ID
|
|
60277
|
-
* @param {string} [query] Search query (empty returns all results)
|
|
60278
|
-
* @param {number} [page] Page number
|
|
60279
|
-
* @param {number} [pageSize] Page size
|
|
60280
|
-
* @param {*} [options] Override http request option.
|
|
60281
|
-
* @throws {RequiredError}
|
|
60282
|
-
*/
|
|
60283
|
-
adminStoresXStoreIDSearchGet(xStoreID: string, query?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOnboardingTestSearchResponseWrapper>>;
|
|
60284
60439
|
/**
|
|
60285
60440
|
* Update store configuration for specific steps (displayAttributes, searchableAttributes, relevancyOrder)
|
|
60286
60441
|
* @summary Update store step configuration
|
|
@@ -60426,6 +60581,30 @@ export declare const StoresApiFactory: (configuration?: Configuration, basePath?
|
|
|
60426
60581
|
* @throws {RequiredError}
|
|
60427
60582
|
*/
|
|
60428
60583
|
adminStoresXStoreIDApiUsageGet(xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, statusCode?: string, endpointType?: string, responseTime?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): AxiosPromise<StoreRouteAPIUsageListResponse>;
|
|
60584
|
+
/**
|
|
60585
|
+
* Perform search on a specific store by xStoreID. Empty query string returns all results. Invalidates Redis caches for the store (store_by_xstoreid, store_search_config, store_creation_progress_config). Use after updating store creation steps so search and config reads see fresh data.
|
|
60586
|
+
* @summary Invalidate store caches
|
|
60587
|
+
* @param {string} xStoreID X-Store ID
|
|
60588
|
+
* @param {string} xStoreID2 X-Store ID
|
|
60589
|
+
* @param {string} [query] Search query (empty returns all results)
|
|
60590
|
+
* @param {number} [page] Page number
|
|
60591
|
+
* @param {number} [pageSize] Page size
|
|
60592
|
+
* @param {*} [options] Override http request option.
|
|
60593
|
+
* @throws {RequiredError}
|
|
60594
|
+
*/
|
|
60595
|
+
adminStoresXStoreIDCacheInvalidatePost(xStoreID: string, xStoreID2: string, query?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
60596
|
+
/**
|
|
60597
|
+
* Perform search on a specific store by xStoreID. Empty query string returns all results. Invalidates Redis caches for the store (store_by_xstoreid, store_search_config, store_creation_progress_config). Use after updating store creation steps so search and config reads see fresh data.
|
|
60598
|
+
* @summary Invalidate store caches
|
|
60599
|
+
* @param {string} xStoreID X-Store ID
|
|
60600
|
+
* @param {string} xStoreID2 X-Store ID
|
|
60601
|
+
* @param {string} [query] Search query (empty returns all results)
|
|
60602
|
+
* @param {number} [page] Page number
|
|
60603
|
+
* @param {number} [pageSize] Page size
|
|
60604
|
+
* @param {*} [options] Override http request option.
|
|
60605
|
+
* @throws {RequiredError}
|
|
60606
|
+
*/
|
|
60607
|
+
adminStoresXStoreIDCacheInvalidatePost_1(xStoreID: string, xStoreID2: string, query?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
60429
60608
|
/**
|
|
60430
60609
|
* Retrieves the store configuration using x-store ID, including onboarding status validation
|
|
60431
60610
|
* @summary Get Store Config
|
|
@@ -60485,17 +60664,6 @@ export declare const StoresApiFactory: (configuration?: Configuration, basePath?
|
|
|
60485
60664
|
* @throws {RequiredError}
|
|
60486
60665
|
*/
|
|
60487
60666
|
adminStoresXStoreIDSchemaOptionsGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSchemaOptionsResponseWrapper>;
|
|
60488
|
-
/**
|
|
60489
|
-
* Perform search on a specific store by xStoreID. Empty query string returns all results.
|
|
60490
|
-
* @summary Get store search results
|
|
60491
|
-
* @param {string} xStoreID X-Store ID
|
|
60492
|
-
* @param {string} [query] Search query (empty returns all results)
|
|
60493
|
-
* @param {number} [page] Page number
|
|
60494
|
-
* @param {number} [pageSize] Page size
|
|
60495
|
-
* @param {*} [options] Override http request option.
|
|
60496
|
-
* @throws {RequiredError}
|
|
60497
|
-
*/
|
|
60498
|
-
adminStoresXStoreIDSearchGet(xStoreID: string, query?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOnboardingTestSearchResponseWrapper>;
|
|
60499
60667
|
/**
|
|
60500
60668
|
* Update store configuration for specific steps (displayAttributes, searchableAttributes, relevancyOrder)
|
|
60501
60669
|
* @summary Update store step configuration
|
|
@@ -60656,6 +60824,32 @@ export declare class StoresApi extends BaseAPI {
|
|
|
60656
60824
|
* @memberof StoresApi
|
|
60657
60825
|
*/
|
|
60658
60826
|
adminStoresXStoreIDApiUsageGet(xStoreID: string, startDate?: string, endDate?: string, method?: string, path?: string, statusCode?: string, endpointType?: string, responseTime?: string, page?: number, perPage?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StoreRouteAPIUsageListResponse, any, {}>>;
|
|
60827
|
+
/**
|
|
60828
|
+
* Perform search on a specific store by xStoreID. Empty query string returns all results. Invalidates Redis caches for the store (store_by_xstoreid, store_search_config, store_creation_progress_config). Use after updating store creation steps so search and config reads see fresh data.
|
|
60829
|
+
* @summary Invalidate store caches
|
|
60830
|
+
* @param {string} xStoreID X-Store ID
|
|
60831
|
+
* @param {string} xStoreID2 X-Store ID
|
|
60832
|
+
* @param {string} [query] Search query (empty returns all results)
|
|
60833
|
+
* @param {number} [page] Page number
|
|
60834
|
+
* @param {number} [pageSize] Page size
|
|
60835
|
+
* @param {*} [options] Override http request option.
|
|
60836
|
+
* @throws {RequiredError}
|
|
60837
|
+
* @memberof StoresApi
|
|
60838
|
+
*/
|
|
60839
|
+
adminStoresXStoreIDCacheInvalidatePost(xStoreID: string, xStoreID2: string, query?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
60840
|
+
/**
|
|
60841
|
+
* Perform search on a specific store by xStoreID. Empty query string returns all results. Invalidates Redis caches for the store (store_by_xstoreid, store_search_config, store_creation_progress_config). Use after updating store creation steps so search and config reads see fresh data.
|
|
60842
|
+
* @summary Invalidate store caches
|
|
60843
|
+
* @param {string} xStoreID X-Store ID
|
|
60844
|
+
* @param {string} xStoreID2 X-Store ID
|
|
60845
|
+
* @param {string} [query] Search query (empty returns all results)
|
|
60846
|
+
* @param {number} [page] Page number
|
|
60847
|
+
* @param {number} [pageSize] Page size
|
|
60848
|
+
* @param {*} [options] Override http request option.
|
|
60849
|
+
* @throws {RequiredError}
|
|
60850
|
+
* @memberof StoresApi
|
|
60851
|
+
*/
|
|
60852
|
+
adminStoresXStoreIDCacheInvalidatePost_1(xStoreID: string, xStoreID2: string, query?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
60659
60853
|
/**
|
|
60660
60854
|
* Retrieves the store configuration using x-store ID, including onboarding status validation
|
|
60661
60855
|
* @summary Get Store Config
|
|
@@ -60722,18 +60916,6 @@ export declare class StoresApi extends BaseAPI {
|
|
|
60722
60916
|
* @memberof StoresApi
|
|
60723
60917
|
*/
|
|
60724
60918
|
adminStoresXStoreIDSchemaOptionsGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaOptionsResponseWrapper, any, {}>>;
|
|
60725
|
-
/**
|
|
60726
|
-
* Perform search on a specific store by xStoreID. Empty query string returns all results.
|
|
60727
|
-
* @summary Get store search results
|
|
60728
|
-
* @param {string} xStoreID X-Store ID
|
|
60729
|
-
* @param {string} [query] Search query (empty returns all results)
|
|
60730
|
-
* @param {number} [page] Page number
|
|
60731
|
-
* @param {number} [pageSize] Page size
|
|
60732
|
-
* @param {*} [options] Override http request option.
|
|
60733
|
-
* @throws {RequiredError}
|
|
60734
|
-
* @memberof StoresApi
|
|
60735
|
-
*/
|
|
60736
|
-
adminStoresXStoreIDSearchGet(xStoreID: string, query?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOnboardingTestSearchResponseWrapper, any, {}>>;
|
|
60737
60919
|
/**
|
|
60738
60920
|
* Update store configuration for specific steps (displayAttributes, searchableAttributes, relevancyOrder)
|
|
60739
60921
|
* @summary Update store step configuration
|