@seekora-ai/admin-api 1.0.13 → 1.0.15
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 +16 -5
- package/api.ts +689 -167
- package/dist/api.d.ts +570 -97
- package/dist/api.js +242 -152
- package/dist/esm/api.d.ts +570 -97
- package/dist/esm/api.js +242 -152
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.0.15.tgz +0 -0
- package/seekora-ai-admin-api-1.0.13.tgz +0 -0
package/dist/api.d.ts
CHANGED
|
@@ -13,19 +13,6 @@ import type { Configuration } from './configuration';
|
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import type { RequestArgs } from './base';
|
|
15
15
|
import { BaseAPI } from './base';
|
|
16
|
-
/**
|
|
17
|
-
*
|
|
18
|
-
* @export
|
|
19
|
-
* @interface AdminV1UsersOnboardingUploaddataPostRequest
|
|
20
|
-
*/
|
|
21
|
-
export interface AdminV1UsersOnboardingUploaddataPostRequest {
|
|
22
|
-
/**
|
|
23
|
-
* File
|
|
24
|
-
* @type {File}
|
|
25
|
-
* @memberof AdminV1UsersOnboardingUploaddataPostRequest
|
|
26
|
-
*/
|
|
27
|
-
'File': File;
|
|
28
|
-
}
|
|
29
16
|
/**
|
|
30
17
|
*
|
|
31
18
|
* @export
|
|
@@ -117,6 +104,12 @@ export interface ApiSearchResultHit {
|
|
|
117
104
|
* @memberof ApiSearchResultHit
|
|
118
105
|
*/
|
|
119
106
|
'text_match'?: number;
|
|
107
|
+
/**
|
|
108
|
+
*
|
|
109
|
+
* @type {ApiSearchResultHitTextMatchInfo}
|
|
110
|
+
* @memberof ApiSearchResultHit
|
|
111
|
+
*/
|
|
112
|
+
'text_match_info'?: ApiSearchResultHitTextMatchInfo;
|
|
120
113
|
/**
|
|
121
114
|
* VectorDistance Distance between the query vector and matching document\'s vector value
|
|
122
115
|
* @type {number}
|
|
@@ -124,6 +117,55 @@ export interface ApiSearchResultHit {
|
|
|
124
117
|
*/
|
|
125
118
|
'vector_distance'?: number;
|
|
126
119
|
}
|
|
120
|
+
/**
|
|
121
|
+
*
|
|
122
|
+
* @export
|
|
123
|
+
* @interface ApiSearchResultHitTextMatchInfo
|
|
124
|
+
*/
|
|
125
|
+
export interface ApiSearchResultHitTextMatchInfo {
|
|
126
|
+
/**
|
|
127
|
+
*
|
|
128
|
+
* @type {string}
|
|
129
|
+
* @memberof ApiSearchResultHitTextMatchInfo
|
|
130
|
+
*/
|
|
131
|
+
'best_field_score'?: string;
|
|
132
|
+
/**
|
|
133
|
+
*
|
|
134
|
+
* @type {number}
|
|
135
|
+
* @memberof ApiSearchResultHitTextMatchInfo
|
|
136
|
+
*/
|
|
137
|
+
'best_field_weight'?: number;
|
|
138
|
+
/**
|
|
139
|
+
*
|
|
140
|
+
* @type {number}
|
|
141
|
+
* @memberof ApiSearchResultHitTextMatchInfo
|
|
142
|
+
*/
|
|
143
|
+
'fields_matched'?: number;
|
|
144
|
+
/**
|
|
145
|
+
*
|
|
146
|
+
* @type {number}
|
|
147
|
+
* @memberof ApiSearchResultHitTextMatchInfo
|
|
148
|
+
*/
|
|
149
|
+
'num_tokens_dropped'?: number;
|
|
150
|
+
/**
|
|
151
|
+
*
|
|
152
|
+
* @type {string}
|
|
153
|
+
* @memberof ApiSearchResultHitTextMatchInfo
|
|
154
|
+
*/
|
|
155
|
+
'score'?: string;
|
|
156
|
+
/**
|
|
157
|
+
*
|
|
158
|
+
* @type {number}
|
|
159
|
+
* @memberof ApiSearchResultHitTextMatchInfo
|
|
160
|
+
*/
|
|
161
|
+
'tokens_matched'?: number;
|
|
162
|
+
/**
|
|
163
|
+
*
|
|
164
|
+
* @type {number}
|
|
165
|
+
* @memberof ApiSearchResultHitTextMatchInfo
|
|
166
|
+
*/
|
|
167
|
+
'typo_prefix_score'?: number;
|
|
168
|
+
}
|
|
127
169
|
/**
|
|
128
170
|
*
|
|
129
171
|
* @export
|
|
@@ -311,6 +353,100 @@ export interface DataTypesAPICallsListResponse {
|
|
|
311
353
|
*/
|
|
312
354
|
'status'?: number;
|
|
313
355
|
}
|
|
356
|
+
/**
|
|
357
|
+
*
|
|
358
|
+
* @export
|
|
359
|
+
* @interface DataTypesAdminSearchRequest
|
|
360
|
+
*/
|
|
361
|
+
export interface DataTypesAdminSearchRequest {
|
|
362
|
+
/**
|
|
363
|
+
*
|
|
364
|
+
* @type {string}
|
|
365
|
+
* @memberof DataTypesAdminSearchRequest
|
|
366
|
+
*/
|
|
367
|
+
'facet_by'?: string;
|
|
368
|
+
/**
|
|
369
|
+
*
|
|
370
|
+
* @type {string}
|
|
371
|
+
* @memberof DataTypesAdminSearchRequest
|
|
372
|
+
*/
|
|
373
|
+
'filter'?: string;
|
|
374
|
+
/**
|
|
375
|
+
*
|
|
376
|
+
* @type {boolean}
|
|
377
|
+
* @memberof DataTypesAdminSearchRequest
|
|
378
|
+
*/
|
|
379
|
+
'include_suggestions'?: boolean;
|
|
380
|
+
/**
|
|
381
|
+
*
|
|
382
|
+
* @type {number}
|
|
383
|
+
* @memberof DataTypesAdminSearchRequest
|
|
384
|
+
*/
|
|
385
|
+
'max_facet_values'?: number;
|
|
386
|
+
/**
|
|
387
|
+
*
|
|
388
|
+
* @type {DataTypesSearchConfig}
|
|
389
|
+
* @memberof DataTypesAdminSearchRequest
|
|
390
|
+
*/
|
|
391
|
+
'override_config'?: DataTypesSearchConfig;
|
|
392
|
+
/**
|
|
393
|
+
*
|
|
394
|
+
* @type {number}
|
|
395
|
+
* @memberof DataTypesAdminSearchRequest
|
|
396
|
+
*/
|
|
397
|
+
'page'?: number;
|
|
398
|
+
/**
|
|
399
|
+
*
|
|
400
|
+
* @type {number}
|
|
401
|
+
* @memberof DataTypesAdminSearchRequest
|
|
402
|
+
*/
|
|
403
|
+
'per_page'?: number;
|
|
404
|
+
/**
|
|
405
|
+
*
|
|
406
|
+
* @type {string}
|
|
407
|
+
* @memberof DataTypesAdminSearchRequest
|
|
408
|
+
*/
|
|
409
|
+
'q': string;
|
|
410
|
+
/**
|
|
411
|
+
*
|
|
412
|
+
* @type {string}
|
|
413
|
+
* @memberof DataTypesAdminSearchRequest
|
|
414
|
+
*/
|
|
415
|
+
'sort'?: string;
|
|
416
|
+
/**
|
|
417
|
+
*
|
|
418
|
+
* @type {number}
|
|
419
|
+
* @memberof DataTypesAdminSearchRequest
|
|
420
|
+
*/
|
|
421
|
+
'suggestions_limit'?: number;
|
|
422
|
+
}
|
|
423
|
+
/**
|
|
424
|
+
*
|
|
425
|
+
* @export
|
|
426
|
+
* @interface DataTypesAutocompleteSuggestion
|
|
427
|
+
*/
|
|
428
|
+
export interface DataTypesAutocompleteSuggestion {
|
|
429
|
+
/**
|
|
430
|
+
*
|
|
431
|
+
* @type {{ [key: string]: any; }}
|
|
432
|
+
* @memberof DataTypesAutocompleteSuggestion
|
|
433
|
+
*/
|
|
434
|
+
'highlight'?: {
|
|
435
|
+
[key: string]: any;
|
|
436
|
+
};
|
|
437
|
+
/**
|
|
438
|
+
*
|
|
439
|
+
* @type {number}
|
|
440
|
+
* @memberof DataTypesAutocompleteSuggestion
|
|
441
|
+
*/
|
|
442
|
+
'score'?: number;
|
|
443
|
+
/**
|
|
444
|
+
*
|
|
445
|
+
* @type {string}
|
|
446
|
+
* @memberof DataTypesAutocompleteSuggestion
|
|
447
|
+
*/
|
|
448
|
+
'text'?: string;
|
|
449
|
+
}
|
|
314
450
|
/**
|
|
315
451
|
*
|
|
316
452
|
* @export
|
|
@@ -890,12 +1026,24 @@ export interface DataTypesCreateUserRequestDto {
|
|
|
890
1026
|
* @interface DataTypesCreateUserResponse
|
|
891
1027
|
*/
|
|
892
1028
|
export interface DataTypesCreateUserResponse {
|
|
1029
|
+
/**
|
|
1030
|
+
*
|
|
1031
|
+
* @type {number}
|
|
1032
|
+
* @memberof DataTypesCreateUserResponse
|
|
1033
|
+
*/
|
|
1034
|
+
'can_resend_at'?: number;
|
|
893
1035
|
/**
|
|
894
1036
|
*
|
|
895
1037
|
* @type {boolean}
|
|
896
1038
|
* @memberof DataTypesCreateUserResponse
|
|
897
1039
|
*/
|
|
898
1040
|
'otp_required'?: boolean;
|
|
1041
|
+
/**
|
|
1042
|
+
*
|
|
1043
|
+
* @type {number}
|
|
1044
|
+
* @memberof DataTypesCreateUserResponse
|
|
1045
|
+
*/
|
|
1046
|
+
'resend_cooldown_seconds'?: number;
|
|
899
1047
|
/**
|
|
900
1048
|
*
|
|
901
1049
|
* @type {string}
|
|
@@ -1134,6 +1282,31 @@ export interface DataTypesIndexConfig {
|
|
|
1134
1282
|
*/
|
|
1135
1283
|
'version'?: number;
|
|
1136
1284
|
}
|
|
1285
|
+
/**
|
|
1286
|
+
*
|
|
1287
|
+
* @export
|
|
1288
|
+
* @interface DataTypesIndexConfigResponse
|
|
1289
|
+
*/
|
|
1290
|
+
export interface DataTypesIndexConfigResponse {
|
|
1291
|
+
/**
|
|
1292
|
+
*
|
|
1293
|
+
* @type {DataTypesIndexConfig}
|
|
1294
|
+
* @memberof DataTypesIndexConfigResponse
|
|
1295
|
+
*/
|
|
1296
|
+
'data'?: DataTypesIndexConfig;
|
|
1297
|
+
/**
|
|
1298
|
+
*
|
|
1299
|
+
* @type {string}
|
|
1300
|
+
* @memberof DataTypesIndexConfigResponse
|
|
1301
|
+
*/
|
|
1302
|
+
'message'?: string;
|
|
1303
|
+
/**
|
|
1304
|
+
*
|
|
1305
|
+
* @type {number}
|
|
1306
|
+
* @memberof DataTypesIndexConfigResponse
|
|
1307
|
+
*/
|
|
1308
|
+
'status'?: number;
|
|
1309
|
+
}
|
|
1137
1310
|
/**
|
|
1138
1311
|
*
|
|
1139
1312
|
* @export
|
|
@@ -1606,6 +1779,31 @@ export interface DataTypesMenuAccess {
|
|
|
1606
1779
|
*/
|
|
1607
1780
|
'userCode'?: string;
|
|
1608
1781
|
}
|
|
1782
|
+
/**
|
|
1783
|
+
*
|
|
1784
|
+
* @export
|
|
1785
|
+
* @interface DataTypesMenuAccessListResponse
|
|
1786
|
+
*/
|
|
1787
|
+
export interface DataTypesMenuAccessListResponse {
|
|
1788
|
+
/**
|
|
1789
|
+
*
|
|
1790
|
+
* @type {Array<DataTypesMenuAccess>}
|
|
1791
|
+
* @memberof DataTypesMenuAccessListResponse
|
|
1792
|
+
*/
|
|
1793
|
+
'data'?: Array<DataTypesMenuAccess>;
|
|
1794
|
+
/**
|
|
1795
|
+
*
|
|
1796
|
+
* @type {string}
|
|
1797
|
+
* @memberof DataTypesMenuAccessListResponse
|
|
1798
|
+
*/
|
|
1799
|
+
'message'?: string;
|
|
1800
|
+
/**
|
|
1801
|
+
*
|
|
1802
|
+
* @type {number}
|
|
1803
|
+
* @memberof DataTypesMenuAccessListResponse
|
|
1804
|
+
*/
|
|
1805
|
+
'status'?: number;
|
|
1806
|
+
}
|
|
1609
1807
|
/**
|
|
1610
1808
|
*
|
|
1611
1809
|
* @export
|
|
@@ -1912,6 +2110,109 @@ export interface DataTypesOTPPayload {
|
|
|
1912
2110
|
*/
|
|
1913
2111
|
'otp'?: string;
|
|
1914
2112
|
}
|
|
2113
|
+
/**
|
|
2114
|
+
*
|
|
2115
|
+
* @export
|
|
2116
|
+
* @interface DataTypesOfficialSearchResponse
|
|
2117
|
+
*/
|
|
2118
|
+
export interface DataTypesOfficialSearchResponse {
|
|
2119
|
+
/**
|
|
2120
|
+
*
|
|
2121
|
+
* @type {object}
|
|
2122
|
+
* @memberof DataTypesOfficialSearchResponse
|
|
2123
|
+
*/
|
|
2124
|
+
'facets'?: object;
|
|
2125
|
+
/**
|
|
2126
|
+
*
|
|
2127
|
+
* @type {number}
|
|
2128
|
+
* @memberof DataTypesOfficialSearchResponse
|
|
2129
|
+
*/
|
|
2130
|
+
'page'?: number;
|
|
2131
|
+
/**
|
|
2132
|
+
*
|
|
2133
|
+
* @type {number}
|
|
2134
|
+
* @memberof DataTypesOfficialSearchResponse
|
|
2135
|
+
*/
|
|
2136
|
+
'per_page'?: number;
|
|
2137
|
+
/**
|
|
2138
|
+
*
|
|
2139
|
+
* @type {Array<DataTypesOfficialSearchResult>}
|
|
2140
|
+
* @memberof DataTypesOfficialSearchResponse
|
|
2141
|
+
*/
|
|
2142
|
+
'results'?: Array<DataTypesOfficialSearchResult>;
|
|
2143
|
+
/**
|
|
2144
|
+
*
|
|
2145
|
+
* @type {Array<DataTypesAutocompleteSuggestion>}
|
|
2146
|
+
* @memberof DataTypesOfficialSearchResponse
|
|
2147
|
+
*/
|
|
2148
|
+
'suggestions'?: Array<DataTypesAutocompleteSuggestion>;
|
|
2149
|
+
/**
|
|
2150
|
+
*
|
|
2151
|
+
* @type {number}
|
|
2152
|
+
* @memberof DataTypesOfficialSearchResponse
|
|
2153
|
+
*/
|
|
2154
|
+
'total_results'?: number;
|
|
2155
|
+
}
|
|
2156
|
+
/**
|
|
2157
|
+
*
|
|
2158
|
+
* @export
|
|
2159
|
+
* @interface DataTypesOfficialSearchResponseWrapper
|
|
2160
|
+
*/
|
|
2161
|
+
export interface DataTypesOfficialSearchResponseWrapper {
|
|
2162
|
+
/**
|
|
2163
|
+
*
|
|
2164
|
+
* @type {DataTypesOfficialSearchResponse}
|
|
2165
|
+
* @memberof DataTypesOfficialSearchResponseWrapper
|
|
2166
|
+
*/
|
|
2167
|
+
'data'?: DataTypesOfficialSearchResponse;
|
|
2168
|
+
/**
|
|
2169
|
+
*
|
|
2170
|
+
* @type {string}
|
|
2171
|
+
* @memberof DataTypesOfficialSearchResponseWrapper
|
|
2172
|
+
*/
|
|
2173
|
+
'message'?: string;
|
|
2174
|
+
/**
|
|
2175
|
+
*
|
|
2176
|
+
* @type {number}
|
|
2177
|
+
* @memberof DataTypesOfficialSearchResponseWrapper
|
|
2178
|
+
*/
|
|
2179
|
+
'status'?: number;
|
|
2180
|
+
}
|
|
2181
|
+
/**
|
|
2182
|
+
*
|
|
2183
|
+
* @export
|
|
2184
|
+
* @interface DataTypesOfficialSearchResult
|
|
2185
|
+
*/
|
|
2186
|
+
export interface DataTypesOfficialSearchResult {
|
|
2187
|
+
/**
|
|
2188
|
+
*
|
|
2189
|
+
* @type {{ [key: string]: any; }}
|
|
2190
|
+
* @memberof DataTypesOfficialSearchResult
|
|
2191
|
+
*/
|
|
2192
|
+
'document'?: {
|
|
2193
|
+
[key: string]: any;
|
|
2194
|
+
};
|
|
2195
|
+
/**
|
|
2196
|
+
*
|
|
2197
|
+
* @type {{ [key: string]: any; }}
|
|
2198
|
+
* @memberof DataTypesOfficialSearchResult
|
|
2199
|
+
*/
|
|
2200
|
+
'highlight'?: {
|
|
2201
|
+
[key: string]: any;
|
|
2202
|
+
};
|
|
2203
|
+
/**
|
|
2204
|
+
*
|
|
2205
|
+
* @type {string}
|
|
2206
|
+
* @memberof DataTypesOfficialSearchResult
|
|
2207
|
+
*/
|
|
2208
|
+
'id'?: string;
|
|
2209
|
+
/**
|
|
2210
|
+
*
|
|
2211
|
+
* @type {number}
|
|
2212
|
+
* @memberof DataTypesOfficialSearchResult
|
|
2213
|
+
*/
|
|
2214
|
+
'score'?: number;
|
|
2215
|
+
}
|
|
1915
2216
|
/**
|
|
1916
2217
|
*
|
|
1917
2218
|
* @export
|
|
@@ -2625,6 +2926,67 @@ export interface DataTypesPlansListResponse {
|
|
|
2625
2926
|
*/
|
|
2626
2927
|
'status'?: number;
|
|
2627
2928
|
}
|
|
2929
|
+
/**
|
|
2930
|
+
*
|
|
2931
|
+
* @export
|
|
2932
|
+
* @interface DataTypesPublicSearchRequest
|
|
2933
|
+
*/
|
|
2934
|
+
export interface DataTypesPublicSearchRequest {
|
|
2935
|
+
/**
|
|
2936
|
+
*
|
|
2937
|
+
* @type {string}
|
|
2938
|
+
* @memberof DataTypesPublicSearchRequest
|
|
2939
|
+
*/
|
|
2940
|
+
'facet_by'?: string;
|
|
2941
|
+
/**
|
|
2942
|
+
*
|
|
2943
|
+
* @type {string}
|
|
2944
|
+
* @memberof DataTypesPublicSearchRequest
|
|
2945
|
+
*/
|
|
2946
|
+
'filter'?: string;
|
|
2947
|
+
/**
|
|
2948
|
+
*
|
|
2949
|
+
* @type {boolean}
|
|
2950
|
+
* @memberof DataTypesPublicSearchRequest
|
|
2951
|
+
*/
|
|
2952
|
+
'include_suggestions'?: boolean;
|
|
2953
|
+
/**
|
|
2954
|
+
*
|
|
2955
|
+
* @type {number}
|
|
2956
|
+
* @memberof DataTypesPublicSearchRequest
|
|
2957
|
+
*/
|
|
2958
|
+
'max_facet_values'?: number;
|
|
2959
|
+
/**
|
|
2960
|
+
*
|
|
2961
|
+
* @type {number}
|
|
2962
|
+
* @memberof DataTypesPublicSearchRequest
|
|
2963
|
+
*/
|
|
2964
|
+
'page'?: number;
|
|
2965
|
+
/**
|
|
2966
|
+
*
|
|
2967
|
+
* @type {number}
|
|
2968
|
+
* @memberof DataTypesPublicSearchRequest
|
|
2969
|
+
*/
|
|
2970
|
+
'per_page'?: number;
|
|
2971
|
+
/**
|
|
2972
|
+
*
|
|
2973
|
+
* @type {string}
|
|
2974
|
+
* @memberof DataTypesPublicSearchRequest
|
|
2975
|
+
*/
|
|
2976
|
+
'q': string;
|
|
2977
|
+
/**
|
|
2978
|
+
*
|
|
2979
|
+
* @type {string}
|
|
2980
|
+
* @memberof DataTypesPublicSearchRequest
|
|
2981
|
+
*/
|
|
2982
|
+
'sort'?: string;
|
|
2983
|
+
/**
|
|
2984
|
+
*
|
|
2985
|
+
* @type {number}
|
|
2986
|
+
* @memberof DataTypesPublicSearchRequest
|
|
2987
|
+
*/
|
|
2988
|
+
'suggestions_limit'?: number;
|
|
2989
|
+
}
|
|
2628
2990
|
/**
|
|
2629
2991
|
*
|
|
2630
2992
|
* @export
|
|
@@ -3005,6 +3367,12 @@ export interface DataTypesSampleDatasetResponse {
|
|
|
3005
3367
|
* @memberof DataTypesSampleDatasetResponse
|
|
3006
3368
|
*/
|
|
3007
3369
|
'storeName'?: string;
|
|
3370
|
+
/**
|
|
3371
|
+
*
|
|
3372
|
+
* @type {Array<string>}
|
|
3373
|
+
* @memberof DataTypesSampleDatasetResponse
|
|
3374
|
+
*/
|
|
3375
|
+
'tags'?: Array<string>;
|
|
3008
3376
|
}
|
|
3009
3377
|
/**
|
|
3010
3378
|
*
|
|
@@ -3081,6 +3449,63 @@ export interface DataTypesSchemaOptionsResponseWrapper {
|
|
|
3081
3449
|
*/
|
|
3082
3450
|
'status'?: number;
|
|
3083
3451
|
}
|
|
3452
|
+
/**
|
|
3453
|
+
*
|
|
3454
|
+
* @export
|
|
3455
|
+
* @interface DataTypesSearchConfig
|
|
3456
|
+
*/
|
|
3457
|
+
export interface DataTypesSearchConfig {
|
|
3458
|
+
/**
|
|
3459
|
+
*
|
|
3460
|
+
* @type {Array<string>}
|
|
3461
|
+
* @memberof DataTypesSearchConfig
|
|
3462
|
+
*/
|
|
3463
|
+
'attributesToHighlight'?: Array<string>;
|
|
3464
|
+
/**
|
|
3465
|
+
*
|
|
3466
|
+
* @type {Array<string>}
|
|
3467
|
+
* @memberof DataTypesSearchConfig
|
|
3468
|
+
*/
|
|
3469
|
+
'attributesToRetrieve'?: Array<string>;
|
|
3470
|
+
/**
|
|
3471
|
+
*
|
|
3472
|
+
* @type {{ [key: string]: any; }}
|
|
3473
|
+
* @memberof DataTypesSearchConfig
|
|
3474
|
+
*/
|
|
3475
|
+
'displayAttributes'?: {
|
|
3476
|
+
[key: string]: any;
|
|
3477
|
+
};
|
|
3478
|
+
/**
|
|
3479
|
+
*
|
|
3480
|
+
* @type {number}
|
|
3481
|
+
* @memberof DataTypesSearchConfig
|
|
3482
|
+
*/
|
|
3483
|
+
'hitsPerPage'?: number;
|
|
3484
|
+
/**
|
|
3485
|
+
*
|
|
3486
|
+
* @type {number}
|
|
3487
|
+
* @memberof DataTypesSearchConfig
|
|
3488
|
+
*/
|
|
3489
|
+
'maxNbHits'?: number;
|
|
3490
|
+
/**
|
|
3491
|
+
*
|
|
3492
|
+
* @type {string}
|
|
3493
|
+
* @memberof DataTypesSearchConfig
|
|
3494
|
+
*/
|
|
3495
|
+
'query_by'?: string;
|
|
3496
|
+
/**
|
|
3497
|
+
*
|
|
3498
|
+
* @type {Array<string>}
|
|
3499
|
+
* @memberof DataTypesSearchConfig
|
|
3500
|
+
*/
|
|
3501
|
+
'ranking'?: Array<string>;
|
|
3502
|
+
/**
|
|
3503
|
+
*
|
|
3504
|
+
* @type {Array<string>}
|
|
3505
|
+
* @memberof DataTypesSearchConfig
|
|
3506
|
+
*/
|
|
3507
|
+
'searchableAttributes'?: Array<string>;
|
|
3508
|
+
}
|
|
3084
3509
|
/**
|
|
3085
3510
|
*
|
|
3086
3511
|
* @export
|
|
@@ -3509,6 +3934,12 @@ export interface DataTypesStore {
|
|
|
3509
3934
|
* @memberof DataTypesStore
|
|
3510
3935
|
*/
|
|
3511
3936
|
'StoreName'?: string;
|
|
3937
|
+
/**
|
|
3938
|
+
* Store alias
|
|
3939
|
+
* @type {string}
|
|
3940
|
+
* @memberof DataTypesStore
|
|
3941
|
+
*/
|
|
3942
|
+
'alias'?: string;
|
|
3512
3943
|
}
|
|
3513
3944
|
/**
|
|
3514
3945
|
*
|
|
@@ -5802,6 +6233,13 @@ export declare const MenusApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
5802
6233
|
* @throws {RequiredError}
|
|
5803
6234
|
*/
|
|
5804
6235
|
miscMenusStoreStoreIdPost: (storeId: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6236
|
+
/**
|
|
6237
|
+
* Fetches hierarchical menu access for the currently logged-in user
|
|
6238
|
+
* @summary Fetches hierarchical menu access for logged-in user
|
|
6239
|
+
* @param {*} [options] Override http request option.
|
|
6240
|
+
* @throws {RequiredError}
|
|
6241
|
+
*/
|
|
6242
|
+
miscMenusUserAccessGet: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5805
6243
|
};
|
|
5806
6244
|
/**
|
|
5807
6245
|
* MenusApi - functional programming interface
|
|
@@ -5920,6 +6358,13 @@ export declare const MenusApiFp: (configuration?: Configuration) => {
|
|
|
5920
6358
|
* @throws {RequiredError}
|
|
5921
6359
|
*/
|
|
5922
6360
|
miscMenusStoreStoreIdPost(storeId: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
6361
|
+
/**
|
|
6362
|
+
* Fetches hierarchical menu access for the currently logged-in user
|
|
6363
|
+
* @summary Fetches hierarchical menu access for logged-in user
|
|
6364
|
+
* @param {*} [options] Override http request option.
|
|
6365
|
+
* @throws {RequiredError}
|
|
6366
|
+
*/
|
|
6367
|
+
miscMenusUserAccessGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesMenuAccessListResponse>>;
|
|
5923
6368
|
};
|
|
5924
6369
|
/**
|
|
5925
6370
|
* MenusApi - factory interface
|
|
@@ -6038,6 +6483,13 @@ export declare const MenusApiFactory: (configuration?: Configuration, basePath?:
|
|
|
6038
6483
|
* @throws {RequiredError}
|
|
6039
6484
|
*/
|
|
6040
6485
|
miscMenusStoreStoreIdPost(storeId: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
6486
|
+
/**
|
|
6487
|
+
* Fetches hierarchical menu access for the currently logged-in user
|
|
6488
|
+
* @summary Fetches hierarchical menu access for logged-in user
|
|
6489
|
+
* @param {*} [options] Override http request option.
|
|
6490
|
+
* @throws {RequiredError}
|
|
6491
|
+
*/
|
|
6492
|
+
miscMenusUserAccessGet(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesMenuAccessListResponse>;
|
|
6041
6493
|
};
|
|
6042
6494
|
/**
|
|
6043
6495
|
* MenusApi - object-oriented interface
|
|
@@ -6171,6 +6623,14 @@ export declare class MenusApi extends BaseAPI {
|
|
|
6171
6623
|
* @memberof MenusApi
|
|
6172
6624
|
*/
|
|
6173
6625
|
miscMenusStoreStoreIdPost(storeId: number, menu: DataTypesCreateMenuRequestDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
6626
|
+
/**
|
|
6627
|
+
* Fetches hierarchical menu access for the currently logged-in user
|
|
6628
|
+
* @summary Fetches hierarchical menu access for logged-in user
|
|
6629
|
+
* @param {*} [options] Override http request option.
|
|
6630
|
+
* @throws {RequiredError}
|
|
6631
|
+
* @memberof MenusApi
|
|
6632
|
+
*/
|
|
6633
|
+
miscMenusUserAccessGet(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesMenuAccessListResponse, any>>;
|
|
6174
6634
|
}
|
|
6175
6635
|
/**
|
|
6176
6636
|
* ModulesApi - axios parameter creator
|
|
@@ -6847,11 +7307,11 @@ export declare const OnboardingApiAxiosParamCreator: (configuration?: Configurat
|
|
|
6847
7307
|
/**
|
|
6848
7308
|
* Upload source data
|
|
6849
7309
|
* @summary Upload source data
|
|
6850
|
-
* @param {
|
|
7310
|
+
* @param {File} file File
|
|
6851
7311
|
* @param {*} [options] Override http request option.
|
|
6852
7312
|
* @throws {RequiredError}
|
|
6853
7313
|
*/
|
|
6854
|
-
adminV1UsersOnboardingUploaddataPost: (
|
|
7314
|
+
adminV1UsersOnboardingUploaddataPost: (file: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6855
7315
|
/**
|
|
6856
7316
|
* Get sample datasets
|
|
6857
7317
|
* @summary Get sample datasets
|
|
@@ -6921,11 +7381,11 @@ export declare const OnboardingApiFp: (configuration?: Configuration) => {
|
|
|
6921
7381
|
/**
|
|
6922
7382
|
* Upload source data
|
|
6923
7383
|
* @summary Upload source data
|
|
6924
|
-
* @param {
|
|
7384
|
+
* @param {File} file File
|
|
6925
7385
|
* @param {*} [options] Override http request option.
|
|
6926
7386
|
* @throws {RequiredError}
|
|
6927
7387
|
*/
|
|
6928
|
-
adminV1UsersOnboardingUploaddataPost(
|
|
7388
|
+
adminV1UsersOnboardingUploaddataPost(file: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesUploadSourceDataResponseWrapper>>;
|
|
6929
7389
|
/**
|
|
6930
7390
|
* Get sample datasets
|
|
6931
7391
|
* @summary Get sample datasets
|
|
@@ -6995,11 +7455,11 @@ export declare const OnboardingApiFactory: (configuration?: Configuration, baseP
|
|
|
6995
7455
|
/**
|
|
6996
7456
|
* Upload source data
|
|
6997
7457
|
* @summary Upload source data
|
|
6998
|
-
* @param {
|
|
7458
|
+
* @param {File} file File
|
|
6999
7459
|
* @param {*} [options] Override http request option.
|
|
7000
7460
|
* @throws {RequiredError}
|
|
7001
7461
|
*/
|
|
7002
|
-
adminV1UsersOnboardingUploaddataPost(
|
|
7462
|
+
adminV1UsersOnboardingUploaddataPost(file: File, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesUploadSourceDataResponseWrapper>;
|
|
7003
7463
|
/**
|
|
7004
7464
|
* Get sample datasets
|
|
7005
7465
|
* @summary Get sample datasets
|
|
@@ -7078,12 +7538,12 @@ export declare class OnboardingApi extends BaseAPI {
|
|
|
7078
7538
|
/**
|
|
7079
7539
|
* Upload source data
|
|
7080
7540
|
* @summary Upload source data
|
|
7081
|
-
* @param {
|
|
7541
|
+
* @param {File} file File
|
|
7082
7542
|
* @param {*} [options] Override http request option.
|
|
7083
7543
|
* @throws {RequiredError}
|
|
7084
7544
|
* @memberof OnboardingApi
|
|
7085
7545
|
*/
|
|
7086
|
-
adminV1UsersOnboardingUploaddataPost(
|
|
7546
|
+
adminV1UsersOnboardingUploaddataPost(file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesUploadSourceDataResponseWrapper, any>>;
|
|
7087
7547
|
/**
|
|
7088
7548
|
* Get sample datasets
|
|
7089
7549
|
* @summary Get sample datasets
|
|
@@ -8709,49 +9169,52 @@ export declare class RolesApi extends BaseAPI {
|
|
|
8709
9169
|
*/
|
|
8710
9170
|
export declare const SearchApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
8711
9171
|
/**
|
|
8712
|
-
*
|
|
8713
|
-
* @summary
|
|
8714
|
-
* @param {string}
|
|
8715
|
-
* @param {string}
|
|
8716
|
-
* @param {
|
|
9172
|
+
* Search documents with optional configuration override and autocomplete suggestions
|
|
9173
|
+
* @summary Admin Search API
|
|
9174
|
+
* @param {string} xStoreID Store ID for the selected store
|
|
9175
|
+
* @param {string} xStoreSecret Store Secret for the selected store
|
|
9176
|
+
* @param {DataTypesAdminSearchRequest} body Admin search request (set include_suggestions: true for autocomplete)
|
|
8717
9177
|
* @param {*} [options] Override http request option.
|
|
8718
9178
|
* @throws {RequiredError}
|
|
8719
9179
|
*/
|
|
8720
|
-
|
|
9180
|
+
adminV1SearchPost: (xStoreID: string, xStoreSecret: string, body: DataTypesAdminSearchRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8721
9181
|
/**
|
|
8722
|
-
*
|
|
8723
|
-
* @summary
|
|
8724
|
-
* @param {string}
|
|
8725
|
-
* @param {string} xStoresecret Store Secret
|
|
8726
|
-
* @param {string} property Property name
|
|
8727
|
-
* @param {object} body Property value
|
|
9182
|
+
* Get the current index configuration
|
|
9183
|
+
* @summary Get Index Config
|
|
9184
|
+
* @param {string} indexname Index Name
|
|
8728
9185
|
* @param {*} [options] Override http request option.
|
|
8729
9186
|
* @throws {RequiredError}
|
|
8730
9187
|
*/
|
|
8731
|
-
|
|
9188
|
+
v1IndexIndexnameConfigGet: (indexname: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8732
9189
|
/**
|
|
8733
9190
|
* Configure the index for search
|
|
8734
9191
|
* @summary Index Config
|
|
8735
|
-
* @param {string} xStoreid Store ID
|
|
8736
|
-
* @param {string} xStoresecret Store Secret
|
|
8737
9192
|
* @param {string} indexname Index Name
|
|
8738
9193
|
* @param {DataTypesIndexConfig} body Index configuration
|
|
8739
9194
|
* @param {*} [options] Override http request option.
|
|
8740
9195
|
* @throws {RequiredError}
|
|
8741
9196
|
*/
|
|
8742
|
-
v1IndexIndexnameConfigPost: (
|
|
9197
|
+
v1IndexIndexnameConfigPost: (indexname: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8743
9198
|
/**
|
|
8744
9199
|
* Update a single property of the index configuration
|
|
8745
9200
|
* @summary Update Index Config Property
|
|
8746
|
-
* @param {string} xStoreid Store ID
|
|
8747
|
-
* @param {string} xStoresecret Store Secret
|
|
8748
9201
|
* @param {string} indexname Index Name
|
|
8749
9202
|
* @param {string} property Property name
|
|
8750
9203
|
* @param {object} body Property value
|
|
8751
9204
|
* @param {*} [options] Override http request option.
|
|
8752
9205
|
* @throws {RequiredError}
|
|
8753
9206
|
*/
|
|
8754
|
-
v1IndexIndexnameConfigPropertyPatch: (
|
|
9207
|
+
v1IndexIndexnameConfigPropertyPatch: (indexname: string, property: string, body: object, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9208
|
+
/**
|
|
9209
|
+
* Search documents using store credentials with optional autocomplete suggestions
|
|
9210
|
+
* @summary Public Search API
|
|
9211
|
+
* @param {string} xStoreID Store ID
|
|
9212
|
+
* @param {string} xStoreSecret Store Secret
|
|
9213
|
+
* @param {DataTypesPublicSearchRequest} body Search request (set include_suggestions: true for autocomplete)
|
|
9214
|
+
* @param {*} [options] Override http request option.
|
|
9215
|
+
* @throws {RequiredError}
|
|
9216
|
+
*/
|
|
9217
|
+
v1SearchPost: (xStoreID: string, xStoreSecret: string, body: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8755
9218
|
};
|
|
8756
9219
|
/**
|
|
8757
9220
|
* SearchApi - functional programming interface
|
|
@@ -8759,49 +9222,52 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
8759
9222
|
*/
|
|
8760
9223
|
export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
8761
9224
|
/**
|
|
8762
|
-
*
|
|
8763
|
-
* @summary
|
|
8764
|
-
* @param {string}
|
|
8765
|
-
* @param {string}
|
|
8766
|
-
* @param {
|
|
9225
|
+
* Search documents with optional configuration override and autocomplete suggestions
|
|
9226
|
+
* @summary Admin Search API
|
|
9227
|
+
* @param {string} xStoreID Store ID for the selected store
|
|
9228
|
+
* @param {string} xStoreSecret Store Secret for the selected store
|
|
9229
|
+
* @param {DataTypesAdminSearchRequest} body Admin search request (set include_suggestions: true for autocomplete)
|
|
8767
9230
|
* @param {*} [options] Override http request option.
|
|
8768
9231
|
* @throws {RequiredError}
|
|
8769
9232
|
*/
|
|
8770
|
-
|
|
9233
|
+
adminV1SearchPost(xStoreID: string, xStoreSecret: string, body: DataTypesAdminSearchRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOfficialSearchResponseWrapper>>;
|
|
8771
9234
|
/**
|
|
8772
|
-
*
|
|
8773
|
-
* @summary
|
|
8774
|
-
* @param {string}
|
|
8775
|
-
* @param {string} xStoresecret Store Secret
|
|
8776
|
-
* @param {string} property Property name
|
|
8777
|
-
* @param {object} body Property value
|
|
9235
|
+
* Get the current index configuration
|
|
9236
|
+
* @summary Get Index Config
|
|
9237
|
+
* @param {string} indexname Index Name
|
|
8778
9238
|
* @param {*} [options] Override http request option.
|
|
8779
9239
|
* @throws {RequiredError}
|
|
8780
9240
|
*/
|
|
8781
|
-
|
|
9241
|
+
v1IndexIndexnameConfigGet(indexname: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesIndexConfigResponse>>;
|
|
8782
9242
|
/**
|
|
8783
9243
|
* Configure the index for search
|
|
8784
9244
|
* @summary Index Config
|
|
8785
|
-
* @param {string} xStoreid Store ID
|
|
8786
|
-
* @param {string} xStoresecret Store Secret
|
|
8787
9245
|
* @param {string} indexname Index Name
|
|
8788
9246
|
* @param {DataTypesIndexConfig} body Index configuration
|
|
8789
9247
|
* @param {*} [options] Override http request option.
|
|
8790
9248
|
* @throws {RequiredError}
|
|
8791
9249
|
*/
|
|
8792
|
-
v1IndexIndexnameConfigPost(
|
|
9250
|
+
v1IndexIndexnameConfigPost(indexname: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
8793
9251
|
/**
|
|
8794
9252
|
* Update a single property of the index configuration
|
|
8795
9253
|
* @summary Update Index Config Property
|
|
8796
|
-
* @param {string} xStoreid Store ID
|
|
8797
|
-
* @param {string} xStoresecret Store Secret
|
|
8798
9254
|
* @param {string} indexname Index Name
|
|
8799
9255
|
* @param {string} property Property name
|
|
8800
9256
|
* @param {object} body Property value
|
|
8801
9257
|
* @param {*} [options] Override http request option.
|
|
8802
9258
|
* @throws {RequiredError}
|
|
8803
9259
|
*/
|
|
8804
|
-
v1IndexIndexnameConfigPropertyPatch(
|
|
9260
|
+
v1IndexIndexnameConfigPropertyPatch(indexname: string, property: string, body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
9261
|
+
/**
|
|
9262
|
+
* Search documents using store credentials with optional autocomplete suggestions
|
|
9263
|
+
* @summary Public Search API
|
|
9264
|
+
* @param {string} xStoreID Store ID
|
|
9265
|
+
* @param {string} xStoreSecret Store Secret
|
|
9266
|
+
* @param {DataTypesPublicSearchRequest} body Search request (set include_suggestions: true for autocomplete)
|
|
9267
|
+
* @param {*} [options] Override http request option.
|
|
9268
|
+
* @throws {RequiredError}
|
|
9269
|
+
*/
|
|
9270
|
+
v1SearchPost(xStoreID: string, xStoreSecret: string, body: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOfficialSearchResponseWrapper>>;
|
|
8805
9271
|
};
|
|
8806
9272
|
/**
|
|
8807
9273
|
* SearchApi - factory interface
|
|
@@ -8809,49 +9275,52 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
|
8809
9275
|
*/
|
|
8810
9276
|
export declare const SearchApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
8811
9277
|
/**
|
|
8812
|
-
*
|
|
8813
|
-
* @summary
|
|
8814
|
-
* @param {string}
|
|
8815
|
-
* @param {string}
|
|
8816
|
-
* @param {
|
|
9278
|
+
* Search documents with optional configuration override and autocomplete suggestions
|
|
9279
|
+
* @summary Admin Search API
|
|
9280
|
+
* @param {string} xStoreID Store ID for the selected store
|
|
9281
|
+
* @param {string} xStoreSecret Store Secret for the selected store
|
|
9282
|
+
* @param {DataTypesAdminSearchRequest} body Admin search request (set include_suggestions: true for autocomplete)
|
|
8817
9283
|
* @param {*} [options] Override http request option.
|
|
8818
9284
|
* @throws {RequiredError}
|
|
8819
9285
|
*/
|
|
8820
|
-
|
|
9286
|
+
adminV1SearchPost(xStoreID: string, xStoreSecret: string, body: DataTypesAdminSearchRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOfficialSearchResponseWrapper>;
|
|
8821
9287
|
/**
|
|
8822
|
-
*
|
|
8823
|
-
* @summary
|
|
8824
|
-
* @param {string}
|
|
8825
|
-
* @param {string} xStoresecret Store Secret
|
|
8826
|
-
* @param {string} property Property name
|
|
8827
|
-
* @param {object} body Property value
|
|
9288
|
+
* Get the current index configuration
|
|
9289
|
+
* @summary Get Index Config
|
|
9290
|
+
* @param {string} indexname Index Name
|
|
8828
9291
|
* @param {*} [options] Override http request option.
|
|
8829
9292
|
* @throws {RequiredError}
|
|
8830
9293
|
*/
|
|
8831
|
-
|
|
9294
|
+
v1IndexIndexnameConfigGet(indexname: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesIndexConfigResponse>;
|
|
8832
9295
|
/**
|
|
8833
9296
|
* Configure the index for search
|
|
8834
9297
|
* @summary Index Config
|
|
8835
|
-
* @param {string} xStoreid Store ID
|
|
8836
|
-
* @param {string} xStoresecret Store Secret
|
|
8837
9298
|
* @param {string} indexname Index Name
|
|
8838
9299
|
* @param {DataTypesIndexConfig} body Index configuration
|
|
8839
9300
|
* @param {*} [options] Override http request option.
|
|
8840
9301
|
* @throws {RequiredError}
|
|
8841
9302
|
*/
|
|
8842
|
-
v1IndexIndexnameConfigPost(
|
|
9303
|
+
v1IndexIndexnameConfigPost(indexname: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
8843
9304
|
/**
|
|
8844
9305
|
* Update a single property of the index configuration
|
|
8845
9306
|
* @summary Update Index Config Property
|
|
8846
|
-
* @param {string} xStoreid Store ID
|
|
8847
|
-
* @param {string} xStoresecret Store Secret
|
|
8848
9307
|
* @param {string} indexname Index Name
|
|
8849
9308
|
* @param {string} property Property name
|
|
8850
9309
|
* @param {object} body Property value
|
|
8851
9310
|
* @param {*} [options] Override http request option.
|
|
8852
9311
|
* @throws {RequiredError}
|
|
8853
9312
|
*/
|
|
8854
|
-
v1IndexIndexnameConfigPropertyPatch(
|
|
9313
|
+
v1IndexIndexnameConfigPropertyPatch(indexname: string, property: string, body: object, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
9314
|
+
/**
|
|
9315
|
+
* Search documents using store credentials with optional autocomplete suggestions
|
|
9316
|
+
* @summary Public Search API
|
|
9317
|
+
* @param {string} xStoreID Store ID
|
|
9318
|
+
* @param {string} xStoreSecret Store Secret
|
|
9319
|
+
* @param {DataTypesPublicSearchRequest} body Search request (set include_suggestions: true for autocomplete)
|
|
9320
|
+
* @param {*} [options] Override http request option.
|
|
9321
|
+
* @throws {RequiredError}
|
|
9322
|
+
*/
|
|
9323
|
+
v1SearchPost(xStoreID: string, xStoreSecret: string, body: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOfficialSearchResponseWrapper>;
|
|
8855
9324
|
};
|
|
8856
9325
|
/**
|
|
8857
9326
|
* SearchApi - object-oriented interface
|
|
@@ -8861,45 +9330,38 @@ export declare const SearchApiFactory: (configuration?: Configuration, basePath?
|
|
|
8861
9330
|
*/
|
|
8862
9331
|
export declare class SearchApi extends BaseAPI {
|
|
8863
9332
|
/**
|
|
8864
|
-
*
|
|
8865
|
-
* @summary
|
|
8866
|
-
* @param {string}
|
|
8867
|
-
* @param {string}
|
|
8868
|
-
* @param {
|
|
9333
|
+
* Search documents with optional configuration override and autocomplete suggestions
|
|
9334
|
+
* @summary Admin Search API
|
|
9335
|
+
* @param {string} xStoreID Store ID for the selected store
|
|
9336
|
+
* @param {string} xStoreSecret Store Secret for the selected store
|
|
9337
|
+
* @param {DataTypesAdminSearchRequest} body Admin search request (set include_suggestions: true for autocomplete)
|
|
8869
9338
|
* @param {*} [options] Override http request option.
|
|
8870
9339
|
* @throws {RequiredError}
|
|
8871
9340
|
* @memberof SearchApi
|
|
8872
9341
|
*/
|
|
8873
|
-
|
|
9342
|
+
adminV1SearchPost(xStoreID: string, xStoreSecret: string, body: DataTypesAdminSearchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOfficialSearchResponseWrapper, any>>;
|
|
8874
9343
|
/**
|
|
8875
|
-
*
|
|
8876
|
-
* @summary
|
|
8877
|
-
* @param {string}
|
|
8878
|
-
* @param {string} xStoresecret Store Secret
|
|
8879
|
-
* @param {string} property Property name
|
|
8880
|
-
* @param {object} body Property value
|
|
9344
|
+
* Get the current index configuration
|
|
9345
|
+
* @summary Get Index Config
|
|
9346
|
+
* @param {string} indexname Index Name
|
|
8881
9347
|
* @param {*} [options] Override http request option.
|
|
8882
9348
|
* @throws {RequiredError}
|
|
8883
9349
|
* @memberof SearchApi
|
|
8884
9350
|
*/
|
|
8885
|
-
|
|
9351
|
+
v1IndexIndexnameConfigGet(indexname: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponse, any>>;
|
|
8886
9352
|
/**
|
|
8887
9353
|
* Configure the index for search
|
|
8888
9354
|
* @summary Index Config
|
|
8889
|
-
* @param {string} xStoreid Store ID
|
|
8890
|
-
* @param {string} xStoresecret Store Secret
|
|
8891
9355
|
* @param {string} indexname Index Name
|
|
8892
9356
|
* @param {DataTypesIndexConfig} body Index configuration
|
|
8893
9357
|
* @param {*} [options] Override http request option.
|
|
8894
9358
|
* @throws {RequiredError}
|
|
8895
9359
|
* @memberof SearchApi
|
|
8896
9360
|
*/
|
|
8897
|
-
v1IndexIndexnameConfigPost(
|
|
9361
|
+
v1IndexIndexnameConfigPost(indexname: string, body: DataTypesIndexConfig, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
8898
9362
|
/**
|
|
8899
9363
|
* Update a single property of the index configuration
|
|
8900
9364
|
* @summary Update Index Config Property
|
|
8901
|
-
* @param {string} xStoreid Store ID
|
|
8902
|
-
* @param {string} xStoresecret Store Secret
|
|
8903
9365
|
* @param {string} indexname Index Name
|
|
8904
9366
|
* @param {string} property Property name
|
|
8905
9367
|
* @param {object} body Property value
|
|
@@ -8907,7 +9369,18 @@ export declare class SearchApi extends BaseAPI {
|
|
|
8907
9369
|
* @throws {RequiredError}
|
|
8908
9370
|
* @memberof SearchApi
|
|
8909
9371
|
*/
|
|
8910
|
-
v1IndexIndexnameConfigPropertyPatch(
|
|
9372
|
+
v1IndexIndexnameConfigPropertyPatch(indexname: string, property: string, body: object, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any>>;
|
|
9373
|
+
/**
|
|
9374
|
+
* Search documents using store credentials with optional autocomplete suggestions
|
|
9375
|
+
* @summary Public Search API
|
|
9376
|
+
* @param {string} xStoreID Store ID
|
|
9377
|
+
* @param {string} xStoreSecret Store Secret
|
|
9378
|
+
* @param {DataTypesPublicSearchRequest} body Search request (set include_suggestions: true for autocomplete)
|
|
9379
|
+
* @param {*} [options] Override http request option.
|
|
9380
|
+
* @throws {RequiredError}
|
|
9381
|
+
* @memberof SearchApi
|
|
9382
|
+
*/
|
|
9383
|
+
v1SearchPost(xStoreID: string, xStoreSecret: string, body: DataTypesPublicSearchRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesOfficialSearchResponseWrapper, any>>;
|
|
8911
9384
|
}
|
|
8912
9385
|
/**
|
|
8913
9386
|
* StoresApi - axios parameter creator
|