@seekora-ai/admin-api 1.0.25 → 1.0.27
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 +5 -3
- package/api.ts +151 -35
- package/dist/api.d.ts +151 -35
- package/dist/api.js +28 -28
- package/dist/esm/api.d.ts +151 -35
- package/dist/esm/api.js +28 -28
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.27.tgz +0 -0
- package/seekora-ai-admin-api-1.0.25.tgz +0 -0
package/dist/esm/api.d.ts
CHANGED
|
@@ -413,12 +413,24 @@ export interface DataTypesAdminSearchRequest {
|
|
|
413
413
|
* @memberof DataTypesAdminSearchRequest
|
|
414
414
|
*/
|
|
415
415
|
'sort'?: string;
|
|
416
|
+
/**
|
|
417
|
+
* IDs of stopword sets to use
|
|
418
|
+
* @type {Array<string>}
|
|
419
|
+
* @memberof DataTypesAdminSearchRequest
|
|
420
|
+
*/
|
|
421
|
+
'stopword_sets'?: Array<string>;
|
|
416
422
|
/**
|
|
417
423
|
*
|
|
418
424
|
* @type {number}
|
|
419
425
|
* @memberof DataTypesAdminSearchRequest
|
|
420
426
|
*/
|
|
421
427
|
'suggestions_limit'?: number;
|
|
428
|
+
/**
|
|
429
|
+
* IDs of synonym sets to use
|
|
430
|
+
* @type {Array<string>}
|
|
431
|
+
* @memberof DataTypesAdminSearchRequest
|
|
432
|
+
*/
|
|
433
|
+
'synonym_sets'?: Array<string>;
|
|
422
434
|
}
|
|
423
435
|
/**
|
|
424
436
|
*
|
|
@@ -2179,6 +2191,18 @@ export interface DataTypesIndexConfig {
|
|
|
2179
2191
|
* @memberof DataTypesIndexConfig
|
|
2180
2192
|
*/
|
|
2181
2193
|
'collection_name'?: string;
|
|
2194
|
+
/**
|
|
2195
|
+
*
|
|
2196
|
+
* @type {string}
|
|
2197
|
+
* @memberof DataTypesIndexConfig
|
|
2198
|
+
*/
|
|
2199
|
+
'default_sorting_field'?: string;
|
|
2200
|
+
/**
|
|
2201
|
+
* Default stopwords set ID to use in searches
|
|
2202
|
+
* @type {string}
|
|
2203
|
+
* @memberof DataTypesIndexConfig
|
|
2204
|
+
*/
|
|
2205
|
+
'default_stopwords_set'?: string;
|
|
2182
2206
|
/**
|
|
2183
2207
|
*
|
|
2184
2208
|
* @type {number}
|
|
@@ -2443,12 +2467,36 @@ export interface DataTypesIndexConfig {
|
|
|
2443
2467
|
* @memberof DataTypesIndexConfig
|
|
2444
2468
|
*/
|
|
2445
2469
|
'sort_by'?: Array<DataTypesSortField>;
|
|
2470
|
+
/**
|
|
2471
|
+
* Flattened stopwords and synonyms fields
|
|
2472
|
+
* @type {Array<DataTypesStopwordEntry>}
|
|
2473
|
+
* @memberof DataTypesIndexConfig
|
|
2474
|
+
*/
|
|
2475
|
+
'stopwords'?: Array<DataTypesStopwordEntry>;
|
|
2476
|
+
/**
|
|
2477
|
+
*
|
|
2478
|
+
* @type {Array<string>}
|
|
2479
|
+
* @memberof DataTypesIndexConfig
|
|
2480
|
+
*/
|
|
2481
|
+
'symbols_to_index'?: Array<string>;
|
|
2482
|
+
/**
|
|
2483
|
+
*
|
|
2484
|
+
* @type {Array<DataTypesSynonymEntry>}
|
|
2485
|
+
* @memberof DataTypesIndexConfig
|
|
2486
|
+
*/
|
|
2487
|
+
'synonyms'?: Array<DataTypesSynonymEntry>;
|
|
2446
2488
|
/**
|
|
2447
2489
|
* Optional: Search-only scoped API key
|
|
2448
2490
|
* @type {string}
|
|
2449
2491
|
* @memberof DataTypesIndexConfig
|
|
2450
2492
|
*/
|
|
2451
2493
|
'token'?: string;
|
|
2494
|
+
/**
|
|
2495
|
+
*
|
|
2496
|
+
* @type {Array<string>}
|
|
2497
|
+
* @memberof DataTypesIndexConfig
|
|
2498
|
+
*/
|
|
2499
|
+
'token_separators'?: Array<string>;
|
|
2452
2500
|
/**
|
|
2453
2501
|
*
|
|
2454
2502
|
* @type {boolean}
|
|
@@ -2722,6 +2770,12 @@ export interface DataTypesLoginResponse {
|
|
|
2722
2770
|
* @memberof DataTypesLoginResponse
|
|
2723
2771
|
*/
|
|
2724
2772
|
'firstName'?: string;
|
|
2773
|
+
/**
|
|
2774
|
+
*
|
|
2775
|
+
* @type {string}
|
|
2776
|
+
* @memberof DataTypesLoginResponse
|
|
2777
|
+
*/
|
|
2778
|
+
'lastLogin'?: string;
|
|
2725
2779
|
/**
|
|
2726
2780
|
*
|
|
2727
2781
|
* @type {string}
|
|
@@ -4439,12 +4493,24 @@ export interface DataTypesPublicSearchRequest {
|
|
|
4439
4493
|
* @memberof DataTypesPublicSearchRequest
|
|
4440
4494
|
*/
|
|
4441
4495
|
'sort'?: string;
|
|
4496
|
+
/**
|
|
4497
|
+
* IDs of stopword sets to use
|
|
4498
|
+
* @type {Array<string>}
|
|
4499
|
+
* @memberof DataTypesPublicSearchRequest
|
|
4500
|
+
*/
|
|
4501
|
+
'stopword_sets'?: Array<string>;
|
|
4442
4502
|
/**
|
|
4443
4503
|
*
|
|
4444
4504
|
* @type {number}
|
|
4445
4505
|
* @memberof DataTypesPublicSearchRequest
|
|
4446
4506
|
*/
|
|
4447
4507
|
'suggestions_limit'?: number;
|
|
4508
|
+
/**
|
|
4509
|
+
* IDs of synonym sets to use
|
|
4510
|
+
* @type {Array<string>}
|
|
4511
|
+
* @memberof DataTypesPublicSearchRequest
|
|
4512
|
+
*/
|
|
4513
|
+
'synonym_sets'?: Array<string>;
|
|
4448
4514
|
}
|
|
4449
4515
|
/**
|
|
4450
4516
|
*
|
|
@@ -5431,6 +5497,31 @@ export interface DataTypesSourcesListResponse {
|
|
|
5431
5497
|
*/
|
|
5432
5498
|
'status'?: number;
|
|
5433
5499
|
}
|
|
5500
|
+
/**
|
|
5501
|
+
*
|
|
5502
|
+
* @export
|
|
5503
|
+
* @interface DataTypesStopwordEntry
|
|
5504
|
+
*/
|
|
5505
|
+
export interface DataTypesStopwordEntry {
|
|
5506
|
+
/**
|
|
5507
|
+
* Stopword set ID
|
|
5508
|
+
* @type {string}
|
|
5509
|
+
* @memberof DataTypesStopwordEntry
|
|
5510
|
+
*/
|
|
5511
|
+
'id'?: string;
|
|
5512
|
+
/**
|
|
5513
|
+
* Optional locale
|
|
5514
|
+
* @type {string}
|
|
5515
|
+
* @memberof DataTypesStopwordEntry
|
|
5516
|
+
*/
|
|
5517
|
+
'locale'?: string;
|
|
5518
|
+
/**
|
|
5519
|
+
* Array of stopwords
|
|
5520
|
+
* @type {Array<string>}
|
|
5521
|
+
* @memberof DataTypesStopwordEntry
|
|
5522
|
+
*/
|
|
5523
|
+
'stopwords'?: Array<string>;
|
|
5524
|
+
}
|
|
5434
5525
|
/**
|
|
5435
5526
|
*
|
|
5436
5527
|
* @export
|
|
@@ -5861,6 +5952,37 @@ export interface DataTypesSubscriptionsListResponse {
|
|
|
5861
5952
|
*/
|
|
5862
5953
|
'status'?: number;
|
|
5863
5954
|
}
|
|
5955
|
+
/**
|
|
5956
|
+
*
|
|
5957
|
+
* @export
|
|
5958
|
+
* @interface DataTypesSynonymEntry
|
|
5959
|
+
*/
|
|
5960
|
+
export interface DataTypesSynonymEntry {
|
|
5961
|
+
/**
|
|
5962
|
+
* Synonym set ID
|
|
5963
|
+
* @type {string}
|
|
5964
|
+
* @memberof DataTypesSynonymEntry
|
|
5965
|
+
*/
|
|
5966
|
+
'id'?: string;
|
|
5967
|
+
/**
|
|
5968
|
+
* Optional locale
|
|
5969
|
+
* @type {string}
|
|
5970
|
+
* @memberof DataTypesSynonymEntry
|
|
5971
|
+
*/
|
|
5972
|
+
'locale'?: string;
|
|
5973
|
+
/**
|
|
5974
|
+
* Optional root word
|
|
5975
|
+
* @type {string}
|
|
5976
|
+
* @memberof DataTypesSynonymEntry
|
|
5977
|
+
*/
|
|
5978
|
+
'root'?: string;
|
|
5979
|
+
/**
|
|
5980
|
+
* Array of synonyms
|
|
5981
|
+
* @type {Array<string>}
|
|
5982
|
+
* @memberof DataTypesSynonymEntry
|
|
5983
|
+
*/
|
|
5984
|
+
'synonyms'?: Array<string>;
|
|
5985
|
+
}
|
|
5864
5986
|
/**
|
|
5865
5987
|
*
|
|
5866
5988
|
* @export
|
|
@@ -6241,13 +6363,7 @@ export interface DataTypesUpdateProfileRequest {
|
|
|
6241
6363
|
*/
|
|
6242
6364
|
'useremailid': string;
|
|
6243
6365
|
/**
|
|
6244
|
-
*
|
|
6245
|
-
* @type {string}
|
|
6246
|
-
* @memberof DataTypesUpdateProfileRequest
|
|
6247
|
-
*/
|
|
6248
|
-
'username': string;
|
|
6249
|
-
/**
|
|
6250
|
-
*
|
|
6366
|
+
* UserName string `json:\"username\" validate:\"required\"`
|
|
6251
6367
|
* @type {string}
|
|
6252
6368
|
* @memberof DataTypesUpdateProfileRequest
|
|
6253
6369
|
*/
|
|
@@ -11534,10 +11650,10 @@ export declare class RolesApi extends BaseAPI {
|
|
|
11534
11650
|
*/
|
|
11535
11651
|
export declare const SearchApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
11536
11652
|
/**
|
|
11537
|
-
* Search documents with optional configuration override and
|
|
11653
|
+
* Search documents with optional configuration override, autocomplete suggestions, and configurable stopwords/synonyms
|
|
11538
11654
|
* @summary Admin Search API
|
|
11539
11655
|
* @param {string} xStoreID X-Store ID
|
|
11540
|
-
* @param {DataTypesAdminSearchRequest} body Admin search request
|
|
11656
|
+
* @param {DataTypesAdminSearchRequest} body Admin search request with optional stopword_sets and synonym_sets for granular control
|
|
11541
11657
|
* @param {*} [options] Override http request option.
|
|
11542
11658
|
* @throws {RequiredError}
|
|
11543
11659
|
*/
|
|
@@ -11586,11 +11702,11 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11586
11702
|
*/
|
|
11587
11703
|
v1IndexIndexnameDefaultsGet: (indexname: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11588
11704
|
/**
|
|
11589
|
-
* Search documents using store credentials with optional autocomplete suggestions
|
|
11705
|
+
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
|
|
11590
11706
|
* @summary Public Search API
|
|
11591
11707
|
* @param {string} xStoreid Store ID
|
|
11592
11708
|
* @param {string} xStoresecret Store Secret
|
|
11593
|
-
* @param {DataTypesPublicSearchRequest} body Search request
|
|
11709
|
+
* @param {DataTypesPublicSearchRequest} body Search request with optional stopword_sets and synonym_sets for granular control
|
|
11594
11710
|
* @param {*} [options] Override http request option.
|
|
11595
11711
|
* @throws {RequiredError}
|
|
11596
11712
|
*/
|
|
@@ -11602,10 +11718,10 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11602
11718
|
*/
|
|
11603
11719
|
export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
11604
11720
|
/**
|
|
11605
|
-
* Search documents with optional configuration override and
|
|
11721
|
+
* Search documents with optional configuration override, autocomplete suggestions, and configurable stopwords/synonyms
|
|
11606
11722
|
* @summary Admin Search API
|
|
11607
11723
|
* @param {string} xStoreID X-Store ID
|
|
11608
|
-
* @param {DataTypesAdminSearchRequest} body Admin search request
|
|
11724
|
+
* @param {DataTypesAdminSearchRequest} body Admin search request with optional stopword_sets and synonym_sets for granular control
|
|
11609
11725
|
* @param {*} [options] Override http request option.
|
|
11610
11726
|
* @throws {RequiredError}
|
|
11611
11727
|
*/
|
|
@@ -11654,11 +11770,11 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
|
11654
11770
|
*/
|
|
11655
11771
|
v1IndexIndexnameDefaultsGet(indexname: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSchemaBasedDefaultsResponseWrapper>>;
|
|
11656
11772
|
/**
|
|
11657
|
-
* Search documents using store credentials with optional autocomplete suggestions
|
|
11773
|
+
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
|
|
11658
11774
|
* @summary Public Search API
|
|
11659
11775
|
* @param {string} xStoreid Store ID
|
|
11660
11776
|
* @param {string} xStoresecret Store Secret
|
|
11661
|
-
* @param {DataTypesPublicSearchRequest} body Search request
|
|
11777
|
+
* @param {DataTypesPublicSearchRequest} body Search request with optional stopword_sets and synonym_sets for granular control
|
|
11662
11778
|
* @param {*} [options] Override http request option.
|
|
11663
11779
|
* @throws {RequiredError}
|
|
11664
11780
|
*/
|
|
@@ -11670,10 +11786,10 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
|
11670
11786
|
*/
|
|
11671
11787
|
export declare const SearchApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
11672
11788
|
/**
|
|
11673
|
-
* Search documents with optional configuration override and
|
|
11789
|
+
* Search documents with optional configuration override, autocomplete suggestions, and configurable stopwords/synonyms
|
|
11674
11790
|
* @summary Admin Search API
|
|
11675
11791
|
* @param {string} xStoreID X-Store ID
|
|
11676
|
-
* @param {DataTypesAdminSearchRequest} body Admin search request
|
|
11792
|
+
* @param {DataTypesAdminSearchRequest} body Admin search request with optional stopword_sets and synonym_sets for granular control
|
|
11677
11793
|
* @param {*} [options] Override http request option.
|
|
11678
11794
|
* @throws {RequiredError}
|
|
11679
11795
|
*/
|
|
@@ -11722,11 +11838,11 @@ export declare const SearchApiFactory: (configuration?: Configuration, basePath?
|
|
|
11722
11838
|
*/
|
|
11723
11839
|
v1IndexIndexnameDefaultsGet(indexname: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSchemaBasedDefaultsResponseWrapper>;
|
|
11724
11840
|
/**
|
|
11725
|
-
* Search documents using store credentials with optional autocomplete suggestions
|
|
11841
|
+
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
|
|
11726
11842
|
* @summary Public Search API
|
|
11727
11843
|
* @param {string} xStoreid Store ID
|
|
11728
11844
|
* @param {string} xStoresecret Store Secret
|
|
11729
|
-
* @param {DataTypesPublicSearchRequest} body Search request
|
|
11845
|
+
* @param {DataTypesPublicSearchRequest} body Search request with optional stopword_sets and synonym_sets for granular control
|
|
11730
11846
|
* @param {*} [options] Override http request option.
|
|
11731
11847
|
* @throws {RequiredError}
|
|
11732
11848
|
*/
|
|
@@ -11740,10 +11856,10 @@ export declare const SearchApiFactory: (configuration?: Configuration, basePath?
|
|
|
11740
11856
|
*/
|
|
11741
11857
|
export declare class SearchApi extends BaseAPI {
|
|
11742
11858
|
/**
|
|
11743
|
-
* Search documents with optional configuration override and
|
|
11859
|
+
* Search documents with optional configuration override, autocomplete suggestions, and configurable stopwords/synonyms
|
|
11744
11860
|
* @summary Admin Search API
|
|
11745
11861
|
* @param {string} xStoreID X-Store ID
|
|
11746
|
-
* @param {DataTypesAdminSearchRequest} body Admin search request
|
|
11862
|
+
* @param {DataTypesAdminSearchRequest} body Admin search request with optional stopword_sets and synonym_sets for granular control
|
|
11747
11863
|
* @param {*} [options] Override http request option.
|
|
11748
11864
|
* @throws {RequiredError}
|
|
11749
11865
|
* @memberof SearchApi
|
|
@@ -11798,11 +11914,11 @@ export declare class SearchApi extends BaseAPI {
|
|
|
11798
11914
|
*/
|
|
11799
11915
|
v1IndexIndexnameDefaultsGet(indexname: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSchemaBasedDefaultsResponseWrapper, any>>;
|
|
11800
11916
|
/**
|
|
11801
|
-
* Search documents using store credentials with optional autocomplete suggestions
|
|
11917
|
+
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
|
|
11802
11918
|
* @summary Public Search API
|
|
11803
11919
|
* @param {string} xStoreid Store ID
|
|
11804
11920
|
* @param {string} xStoresecret Store Secret
|
|
11805
|
-
* @param {DataTypesPublicSearchRequest} body Search request
|
|
11921
|
+
* @param {DataTypesPublicSearchRequest} body Search request with optional stopword_sets and synonym_sets for granular control
|
|
11806
11922
|
* @param {*} [options] Override http request option.
|
|
11807
11923
|
* @throws {RequiredError}
|
|
11808
11924
|
* @memberof SearchApi
|
|
@@ -11864,10 +11980,10 @@ export declare const StoresApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11864
11980
|
*/
|
|
11865
11981
|
adminStoresXStoreIDConfigGet: (xStoreID: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11866
11982
|
/**
|
|
11867
|
-
* Updates the store configuration using x-store ID
|
|
11868
|
-
* @summary Update Store Config
|
|
11983
|
+
* Updates the store configuration using x-store ID. Supports partial updates - you can update individual fields without providing all required fields. Now supports stopwords and synonyms configuration for enhanced search capabilities.
|
|
11984
|
+
* @summary Update Store Config (Partial)
|
|
11869
11985
|
* @param {string} xStoreID X-Store ID
|
|
11870
|
-
* @param {DataTypesIndexConfig} body Store configuration
|
|
11986
|
+
* @param {DataTypesIndexConfig} body Store configuration (partial updates supported) including stopwords and synonyms
|
|
11871
11987
|
* @param {*} [options] Override http request option.
|
|
11872
11988
|
* @throws {RequiredError}
|
|
11873
11989
|
*/
|
|
@@ -11944,10 +12060,10 @@ export declare const StoresApiFp: (configuration?: Configuration) => {
|
|
|
11944
12060
|
*/
|
|
11945
12061
|
adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesIndexConfigResponseWrapper>>;
|
|
11946
12062
|
/**
|
|
11947
|
-
* Updates the store configuration using x-store ID
|
|
11948
|
-
* @summary Update Store Config
|
|
12063
|
+
* Updates the store configuration using x-store ID. Supports partial updates - you can update individual fields without providing all required fields. Now supports stopwords and synonyms configuration for enhanced search capabilities.
|
|
12064
|
+
* @summary Update Store Config (Partial)
|
|
11949
12065
|
* @param {string} xStoreID X-Store ID
|
|
11950
|
-
* @param {DataTypesIndexConfig} body Store configuration
|
|
12066
|
+
* @param {DataTypesIndexConfig} body Store configuration (partial updates supported) including stopwords and synonyms
|
|
11951
12067
|
* @param {*} [options] Override http request option.
|
|
11952
12068
|
* @throws {RequiredError}
|
|
11953
12069
|
*/
|
|
@@ -12024,10 +12140,10 @@ export declare const StoresApiFactory: (configuration?: Configuration, basePath?
|
|
|
12024
12140
|
*/
|
|
12025
12141
|
adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesIndexConfigResponseWrapper>;
|
|
12026
12142
|
/**
|
|
12027
|
-
* Updates the store configuration using x-store ID
|
|
12028
|
-
* @summary Update Store Config
|
|
12143
|
+
* Updates the store configuration using x-store ID. Supports partial updates - you can update individual fields without providing all required fields. Now supports stopwords and synonyms configuration for enhanced search capabilities.
|
|
12144
|
+
* @summary Update Store Config (Partial)
|
|
12029
12145
|
* @param {string} xStoreID X-Store ID
|
|
12030
|
-
* @param {DataTypesIndexConfig} body Store configuration
|
|
12146
|
+
* @param {DataTypesIndexConfig} body Store configuration (partial updates supported) including stopwords and synonyms
|
|
12031
12147
|
* @param {*} [options] Override http request option.
|
|
12032
12148
|
* @throws {RequiredError}
|
|
12033
12149
|
*/
|
|
@@ -12112,10 +12228,10 @@ export declare class StoresApi extends BaseAPI {
|
|
|
12112
12228
|
*/
|
|
12113
12229
|
adminStoresXStoreIDConfigGet(xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any>>;
|
|
12114
12230
|
/**
|
|
12115
|
-
* Updates the store configuration using x-store ID
|
|
12116
|
-
* @summary Update Store Config
|
|
12231
|
+
* Updates the store configuration using x-store ID. Supports partial updates - you can update individual fields without providing all required fields. Now supports stopwords and synonyms configuration for enhanced search capabilities.
|
|
12232
|
+
* @summary Update Store Config (Partial)
|
|
12117
12233
|
* @param {string} xStoreID X-Store ID
|
|
12118
|
-
* @param {DataTypesIndexConfig} body Store configuration
|
|
12234
|
+
* @param {DataTypesIndexConfig} body Store configuration (partial updates supported) including stopwords and synonyms
|
|
12119
12235
|
* @param {*} [options] Override http request option.
|
|
12120
12236
|
* @throws {RequiredError}
|
|
12121
12237
|
* @memberof StoresApi
|
package/dist/esm/api.js
CHANGED
|
@@ -9306,10 +9306,10 @@ export class RolesApi extends BaseAPI {
|
|
|
9306
9306
|
export const SearchApiAxiosParamCreator = function (configuration) {
|
|
9307
9307
|
return {
|
|
9308
9308
|
/**
|
|
9309
|
-
* Search documents with optional configuration override and
|
|
9309
|
+
* Search documents with optional configuration override, autocomplete suggestions, and configurable stopwords/synonyms
|
|
9310
9310
|
* @summary Admin Search API
|
|
9311
9311
|
* @param {string} xStoreID X-Store ID
|
|
9312
|
-
* @param {DataTypesAdminSearchRequest} body Admin search request
|
|
9312
|
+
* @param {DataTypesAdminSearchRequest} body Admin search request with optional stopword_sets and synonym_sets for granular control
|
|
9313
9313
|
* @param {*} [options] Override http request option.
|
|
9314
9314
|
* @throws {RequiredError}
|
|
9315
9315
|
*/
|
|
@@ -9501,11 +9501,11 @@ export const SearchApiAxiosParamCreator = function (configuration) {
|
|
|
9501
9501
|
};
|
|
9502
9502
|
}),
|
|
9503
9503
|
/**
|
|
9504
|
-
* Search documents using store credentials with optional autocomplete suggestions
|
|
9504
|
+
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
|
|
9505
9505
|
* @summary Public Search API
|
|
9506
9506
|
* @param {string} xStoreid Store ID
|
|
9507
9507
|
* @param {string} xStoresecret Store Secret
|
|
9508
|
-
* @param {DataTypesPublicSearchRequest} body Search request
|
|
9508
|
+
* @param {DataTypesPublicSearchRequest} body Search request with optional stopword_sets and synonym_sets for granular control
|
|
9509
9509
|
* @param {*} [options] Override http request option.
|
|
9510
9510
|
* @throws {RequiredError}
|
|
9511
9511
|
*/
|
|
@@ -9552,10 +9552,10 @@ export const SearchApiFp = function (configuration) {
|
|
|
9552
9552
|
const localVarAxiosParamCreator = SearchApiAxiosParamCreator(configuration);
|
|
9553
9553
|
return {
|
|
9554
9554
|
/**
|
|
9555
|
-
* Search documents with optional configuration override and
|
|
9555
|
+
* Search documents with optional configuration override, autocomplete suggestions, and configurable stopwords/synonyms
|
|
9556
9556
|
* @summary Admin Search API
|
|
9557
9557
|
* @param {string} xStoreID X-Store ID
|
|
9558
|
-
* @param {DataTypesAdminSearchRequest} body Admin search request
|
|
9558
|
+
* @param {DataTypesAdminSearchRequest} body Admin search request with optional stopword_sets and synonym_sets for granular control
|
|
9559
9559
|
* @param {*} [options] Override http request option.
|
|
9560
9560
|
* @throws {RequiredError}
|
|
9561
9561
|
*/
|
|
@@ -9652,11 +9652,11 @@ export const SearchApiFp = function (configuration) {
|
|
|
9652
9652
|
});
|
|
9653
9653
|
},
|
|
9654
9654
|
/**
|
|
9655
|
-
* Search documents using store credentials with optional autocomplete suggestions
|
|
9655
|
+
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
|
|
9656
9656
|
* @summary Public Search API
|
|
9657
9657
|
* @param {string} xStoreid Store ID
|
|
9658
9658
|
* @param {string} xStoresecret Store Secret
|
|
9659
|
-
* @param {DataTypesPublicSearchRequest} body Search request
|
|
9659
|
+
* @param {DataTypesPublicSearchRequest} body Search request with optional stopword_sets and synonym_sets for granular control
|
|
9660
9660
|
* @param {*} [options] Override http request option.
|
|
9661
9661
|
* @throws {RequiredError}
|
|
9662
9662
|
*/
|
|
@@ -9679,10 +9679,10 @@ export const SearchApiFactory = function (configuration, basePath, axios) {
|
|
|
9679
9679
|
const localVarFp = SearchApiFp(configuration);
|
|
9680
9680
|
return {
|
|
9681
9681
|
/**
|
|
9682
|
-
* Search documents with optional configuration override and
|
|
9682
|
+
* Search documents with optional configuration override, autocomplete suggestions, and configurable stopwords/synonyms
|
|
9683
9683
|
* @summary Admin Search API
|
|
9684
9684
|
* @param {string} xStoreID X-Store ID
|
|
9685
|
-
* @param {DataTypesAdminSearchRequest} body Admin search request
|
|
9685
|
+
* @param {DataTypesAdminSearchRequest} body Admin search request with optional stopword_sets and synonym_sets for granular control
|
|
9686
9686
|
* @param {*} [options] Override http request option.
|
|
9687
9687
|
* @throws {RequiredError}
|
|
9688
9688
|
*/
|
|
@@ -9743,11 +9743,11 @@ export const SearchApiFactory = function (configuration, basePath, axios) {
|
|
|
9743
9743
|
return localVarFp.v1IndexIndexnameDefaultsGet(indexname, options).then((request) => request(axios, basePath));
|
|
9744
9744
|
},
|
|
9745
9745
|
/**
|
|
9746
|
-
* Search documents using store credentials with optional autocomplete suggestions
|
|
9746
|
+
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
|
|
9747
9747
|
* @summary Public Search API
|
|
9748
9748
|
* @param {string} xStoreid Store ID
|
|
9749
9749
|
* @param {string} xStoresecret Store Secret
|
|
9750
|
-
* @param {DataTypesPublicSearchRequest} body Search request
|
|
9750
|
+
* @param {DataTypesPublicSearchRequest} body Search request with optional stopword_sets and synonym_sets for granular control
|
|
9751
9751
|
* @param {*} [options] Override http request option.
|
|
9752
9752
|
* @throws {RequiredError}
|
|
9753
9753
|
*/
|
|
@@ -9764,10 +9764,10 @@ export const SearchApiFactory = function (configuration, basePath, axios) {
|
|
|
9764
9764
|
*/
|
|
9765
9765
|
export class SearchApi extends BaseAPI {
|
|
9766
9766
|
/**
|
|
9767
|
-
* Search documents with optional configuration override and
|
|
9767
|
+
* Search documents with optional configuration override, autocomplete suggestions, and configurable stopwords/synonyms
|
|
9768
9768
|
* @summary Admin Search API
|
|
9769
9769
|
* @param {string} xStoreID X-Store ID
|
|
9770
|
-
* @param {DataTypesAdminSearchRequest} body Admin search request
|
|
9770
|
+
* @param {DataTypesAdminSearchRequest} body Admin search request with optional stopword_sets and synonym_sets for granular control
|
|
9771
9771
|
* @param {*} [options] Override http request option.
|
|
9772
9772
|
* @throws {RequiredError}
|
|
9773
9773
|
* @memberof SearchApi
|
|
@@ -9834,11 +9834,11 @@ export class SearchApi extends BaseAPI {
|
|
|
9834
9834
|
return SearchApiFp(this.configuration).v1IndexIndexnameDefaultsGet(indexname, options).then((request) => request(this.axios, this.basePath));
|
|
9835
9835
|
}
|
|
9836
9836
|
/**
|
|
9837
|
-
* Search documents using store credentials with optional autocomplete suggestions
|
|
9837
|
+
* Search documents using store credentials with optional autocomplete suggestions and configurable stopwords/synonyms
|
|
9838
9838
|
* @summary Public Search API
|
|
9839
9839
|
* @param {string} xStoreid Store ID
|
|
9840
9840
|
* @param {string} xStoresecret Store Secret
|
|
9841
|
-
* @param {DataTypesPublicSearchRequest} body Search request
|
|
9841
|
+
* @param {DataTypesPublicSearchRequest} body Search request with optional stopword_sets and synonym_sets for granular control
|
|
9842
9842
|
* @param {*} [options] Override http request option.
|
|
9843
9843
|
* @throws {RequiredError}
|
|
9844
9844
|
* @memberof SearchApi
|
|
@@ -10046,10 +10046,10 @@ export const StoresApiAxiosParamCreator = function (configuration) {
|
|
|
10046
10046
|
};
|
|
10047
10047
|
}),
|
|
10048
10048
|
/**
|
|
10049
|
-
* Updates the store configuration using x-store ID
|
|
10050
|
-
* @summary Update Store Config
|
|
10049
|
+
* Updates the store configuration using x-store ID. Supports partial updates - you can update individual fields without providing all required fields. Now supports stopwords and synonyms configuration for enhanced search capabilities.
|
|
10050
|
+
* @summary Update Store Config (Partial)
|
|
10051
10051
|
* @param {string} xStoreID X-Store ID
|
|
10052
|
-
* @param {DataTypesIndexConfig} body Store configuration
|
|
10052
|
+
* @param {DataTypesIndexConfig} body Store configuration (partial updates supported) including stopwords and synonyms
|
|
10053
10053
|
* @param {*} [options] Override http request option.
|
|
10054
10054
|
* @throws {RequiredError}
|
|
10055
10055
|
*/
|
|
@@ -10250,10 +10250,10 @@ export const StoresApiFp = function (configuration) {
|
|
|
10250
10250
|
});
|
|
10251
10251
|
},
|
|
10252
10252
|
/**
|
|
10253
|
-
* Updates the store configuration using x-store ID
|
|
10254
|
-
* @summary Update Store Config
|
|
10253
|
+
* Updates the store configuration using x-store ID. Supports partial updates - you can update individual fields without providing all required fields. Now supports stopwords and synonyms configuration for enhanced search capabilities.
|
|
10254
|
+
* @summary Update Store Config (Partial)
|
|
10255
10255
|
* @param {string} xStoreID X-Store ID
|
|
10256
|
-
* @param {DataTypesIndexConfig} body Store configuration
|
|
10256
|
+
* @param {DataTypesIndexConfig} body Store configuration (partial updates supported) including stopwords and synonyms
|
|
10257
10257
|
* @param {*} [options] Override http request option.
|
|
10258
10258
|
* @throws {RequiredError}
|
|
10259
10259
|
*/
|
|
@@ -10369,10 +10369,10 @@ export const StoresApiFactory = function (configuration, basePath, axios) {
|
|
|
10369
10369
|
return localVarFp.adminStoresXStoreIDConfigGet(xStoreID, options).then((request) => request(axios, basePath));
|
|
10370
10370
|
},
|
|
10371
10371
|
/**
|
|
10372
|
-
* Updates the store configuration using x-store ID
|
|
10373
|
-
* @summary Update Store Config
|
|
10372
|
+
* Updates the store configuration using x-store ID. Supports partial updates - you can update individual fields without providing all required fields. Now supports stopwords and synonyms configuration for enhanced search capabilities.
|
|
10373
|
+
* @summary Update Store Config (Partial)
|
|
10374
10374
|
* @param {string} xStoreID X-Store ID
|
|
10375
|
-
* @param {DataTypesIndexConfig} body Store configuration
|
|
10375
|
+
* @param {DataTypesIndexConfig} body Store configuration (partial updates supported) including stopwords and synonyms
|
|
10376
10376
|
* @param {*} [options] Override http request option.
|
|
10377
10377
|
* @throws {RequiredError}
|
|
10378
10378
|
*/
|
|
@@ -10476,10 +10476,10 @@ export class StoresApi extends BaseAPI {
|
|
|
10476
10476
|
return StoresApiFp(this.configuration).adminStoresXStoreIDConfigGet(xStoreID, options).then((request) => request(this.axios, this.basePath));
|
|
10477
10477
|
}
|
|
10478
10478
|
/**
|
|
10479
|
-
* Updates the store configuration using x-store ID
|
|
10480
|
-
* @summary Update Store Config
|
|
10479
|
+
* Updates the store configuration using x-store ID. Supports partial updates - you can update individual fields without providing all required fields. Now supports stopwords and synonyms configuration for enhanced search capabilities.
|
|
10480
|
+
* @summary Update Store Config (Partial)
|
|
10481
10481
|
* @param {string} xStoreID X-Store ID
|
|
10482
|
-
* @param {DataTypesIndexConfig} body Store configuration
|
|
10482
|
+
* @param {DataTypesIndexConfig} body Store configuration (partial updates supported) including stopwords and synonyms
|
|
10483
10483
|
* @param {*} [options] Override http request option.
|
|
10484
10484
|
* @throws {RequiredError}
|
|
10485
10485
|
* @memberof StoresApi
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|