@seekora-ai/admin-api 1.1.94 → 1.1.95
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 +24 -11
- package/api.ts +1318 -609
- package/dist/api.d.ts +1312 -603
- package/dist/api.js +42 -42
- package/dist/esm/api.d.ts +1312 -603
- package/dist/esm/api.js +42 -42
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.95.tgz +0 -0
- package/seekora-ai-admin-api-1.1.94.tgz +0 -0
package/dist/api.d.ts
CHANGED
|
@@ -12572,6 +12572,118 @@ export interface DataTypesAdminSearchRequest {
|
|
|
12572
12572
|
*/
|
|
12573
12573
|
'widget_mode'?: boolean;
|
|
12574
12574
|
}
|
|
12575
|
+
/**
|
|
12576
|
+
*
|
|
12577
|
+
* @export
|
|
12578
|
+
* @interface DataTypesAnalyticsConfigBatchLimits
|
|
12579
|
+
*/
|
|
12580
|
+
export interface DataTypesAnalyticsConfigBatchLimits {
|
|
12581
|
+
/**
|
|
12582
|
+
*
|
|
12583
|
+
* @type {number}
|
|
12584
|
+
* @memberof DataTypesAnalyticsConfigBatchLimits
|
|
12585
|
+
*/
|
|
12586
|
+
'max_event_size_bytes'?: number;
|
|
12587
|
+
/**
|
|
12588
|
+
*
|
|
12589
|
+
* @type {number}
|
|
12590
|
+
* @memberof DataTypesAnalyticsConfigBatchLimits
|
|
12591
|
+
*/
|
|
12592
|
+
'max_events_per_batch'?: number;
|
|
12593
|
+
}
|
|
12594
|
+
/**
|
|
12595
|
+
*
|
|
12596
|
+
* @export
|
|
12597
|
+
* @interface DataTypesAnalyticsConfigData
|
|
12598
|
+
*/
|
|
12599
|
+
export interface DataTypesAnalyticsConfigData {
|
|
12600
|
+
/**
|
|
12601
|
+
*
|
|
12602
|
+
* @type {DataTypesAnalyticsConfigBatchLimits}
|
|
12603
|
+
* @memberof DataTypesAnalyticsConfigData
|
|
12604
|
+
*/
|
|
12605
|
+
'batch_limits'?: DataTypesAnalyticsConfigBatchLimits;
|
|
12606
|
+
/**
|
|
12607
|
+
*
|
|
12608
|
+
* @type {DataTypesAnalyticsConfigFunnelStages}
|
|
12609
|
+
* @memberof DataTypesAnalyticsConfigData
|
|
12610
|
+
*/
|
|
12611
|
+
'funnel_stages'?: DataTypesAnalyticsConfigFunnelStages;
|
|
12612
|
+
/**
|
|
12613
|
+
*
|
|
12614
|
+
* @type {DataTypesAnalyticsConfigMetadataGuidelines}
|
|
12615
|
+
* @memberof DataTypesAnalyticsConfigData
|
|
12616
|
+
*/
|
|
12617
|
+
'metadata_guidelines'?: DataTypesAnalyticsConfigMetadataGuidelines;
|
|
12618
|
+
/**
|
|
12619
|
+
*
|
|
12620
|
+
* @type {Array<string>}
|
|
12621
|
+
* @memberof DataTypesAnalyticsConfigData
|
|
12622
|
+
*/
|
|
12623
|
+
'optional_fields'?: Array<string>;
|
|
12624
|
+
/**
|
|
12625
|
+
*
|
|
12626
|
+
* @type {Array<string>}
|
|
12627
|
+
* @memberof DataTypesAnalyticsConfigData
|
|
12628
|
+
*/
|
|
12629
|
+
'required_fields'?: Array<string>;
|
|
12630
|
+
/**
|
|
12631
|
+
*
|
|
12632
|
+
* @type {Array<string>}
|
|
12633
|
+
* @memberof DataTypesAnalyticsConfigData
|
|
12634
|
+
*/
|
|
12635
|
+
'supported_event_categories'?: Array<string>;
|
|
12636
|
+
/**
|
|
12637
|
+
*
|
|
12638
|
+
* @type {Array<string>}
|
|
12639
|
+
* @memberof DataTypesAnalyticsConfigData
|
|
12640
|
+
*/
|
|
12641
|
+
'supported_event_types'?: Array<string>;
|
|
12642
|
+
}
|
|
12643
|
+
/**
|
|
12644
|
+
*
|
|
12645
|
+
* @export
|
|
12646
|
+
* @interface DataTypesAnalyticsConfigFunnelStages
|
|
12647
|
+
*/
|
|
12648
|
+
export interface DataTypesAnalyticsConfigFunnelStages {
|
|
12649
|
+
/**
|
|
12650
|
+
*
|
|
12651
|
+
* @type {string}
|
|
12652
|
+
* @memberof DataTypesAnalyticsConfigFunnelStages
|
|
12653
|
+
*/
|
|
12654
|
+
'description'?: string;
|
|
12655
|
+
/**
|
|
12656
|
+
*
|
|
12657
|
+
* @type {Array<string>}
|
|
12658
|
+
* @memberof DataTypesAnalyticsConfigFunnelStages
|
|
12659
|
+
*/
|
|
12660
|
+
'examples'?: Array<string>;
|
|
12661
|
+
}
|
|
12662
|
+
/**
|
|
12663
|
+
*
|
|
12664
|
+
* @export
|
|
12665
|
+
* @interface DataTypesAnalyticsConfigMetadataGuidelines
|
|
12666
|
+
*/
|
|
12667
|
+
export interface DataTypesAnalyticsConfigMetadataGuidelines {
|
|
12668
|
+
/**
|
|
12669
|
+
*
|
|
12670
|
+
* @type {number}
|
|
12671
|
+
* @memberof DataTypesAnalyticsConfigMetadataGuidelines
|
|
12672
|
+
*/
|
|
12673
|
+
'max_keys'?: number;
|
|
12674
|
+
/**
|
|
12675
|
+
*
|
|
12676
|
+
* @type {number}
|
|
12677
|
+
* @memberof DataTypesAnalyticsConfigMetadataGuidelines
|
|
12678
|
+
*/
|
|
12679
|
+
'max_value_length'?: number;
|
|
12680
|
+
/**
|
|
12681
|
+
*
|
|
12682
|
+
* @type {Array<string>}
|
|
12683
|
+
* @memberof DataTypesAnalyticsConfigMetadataGuidelines
|
|
12684
|
+
*/
|
|
12685
|
+
'reserved_keys'?: Array<string>;
|
|
12686
|
+
}
|
|
12575
12687
|
/**
|
|
12576
12688
|
* Standard error response format for analytics rules API
|
|
12577
12689
|
* @export
|
|
@@ -12876,6 +12988,56 @@ export interface DataTypesAutocompleteSuggestion {
|
|
|
12876
12988
|
*/
|
|
12877
12989
|
'text'?: string;
|
|
12878
12990
|
}
|
|
12991
|
+
/**
|
|
12992
|
+
*
|
|
12993
|
+
* @export
|
|
12994
|
+
* @interface DataTypesBatchEventData
|
|
12995
|
+
*/
|
|
12996
|
+
export interface DataTypesBatchEventData {
|
|
12997
|
+
/**
|
|
12998
|
+
*
|
|
12999
|
+
* @type {number}
|
|
13000
|
+
* @memberof DataTypesBatchEventData
|
|
13001
|
+
*/
|
|
13002
|
+
'error_count'?: number;
|
|
13003
|
+
/**
|
|
13004
|
+
*
|
|
13005
|
+
* @type {Array<string>}
|
|
13006
|
+
* @memberof DataTypesBatchEventData
|
|
13007
|
+
*/
|
|
13008
|
+
'errors'?: Array<string>;
|
|
13009
|
+
/**
|
|
13010
|
+
*
|
|
13011
|
+
* @type {number}
|
|
13012
|
+
* @memberof DataTypesBatchEventData
|
|
13013
|
+
*/
|
|
13014
|
+
'processed_count'?: number;
|
|
13015
|
+
/**
|
|
13016
|
+
*
|
|
13017
|
+
* @type {Array<DataTypesBatchEventProcessedItem>}
|
|
13018
|
+
* @memberof DataTypesBatchEventData
|
|
13019
|
+
*/
|
|
13020
|
+
'processed_events'?: Array<DataTypesBatchEventProcessedItem>;
|
|
13021
|
+
}
|
|
13022
|
+
/**
|
|
13023
|
+
*
|
|
13024
|
+
* @export
|
|
13025
|
+
* @interface DataTypesBatchEventProcessedItem
|
|
13026
|
+
*/
|
|
13027
|
+
export interface DataTypesBatchEventProcessedItem {
|
|
13028
|
+
/**
|
|
13029
|
+
*
|
|
13030
|
+
* @type {string}
|
|
13031
|
+
* @memberof DataTypesBatchEventProcessedItem
|
|
13032
|
+
*/
|
|
13033
|
+
'event_id'?: string;
|
|
13034
|
+
/**
|
|
13035
|
+
*
|
|
13036
|
+
* @type {string}
|
|
13037
|
+
* @memberof DataTypesBatchEventProcessedItem
|
|
13038
|
+
*/
|
|
13039
|
+
'timestamp'?: string;
|
|
13040
|
+
}
|
|
12879
13041
|
/**
|
|
12880
13042
|
*
|
|
12881
13043
|
* @export
|
|
@@ -13941,6 +14103,31 @@ export interface DataTypesConfigurationSchemaResponseWrapper {
|
|
|
13941
14103
|
*/
|
|
13942
14104
|
'status'?: number;
|
|
13943
14105
|
}
|
|
14106
|
+
/**
|
|
14107
|
+
*
|
|
14108
|
+
* @export
|
|
14109
|
+
* @interface DataTypesConnectorSearchResult
|
|
14110
|
+
*/
|
|
14111
|
+
export interface DataTypesConnectorSearchResult {
|
|
14112
|
+
/**
|
|
14113
|
+
*
|
|
14114
|
+
* @type {number}
|
|
14115
|
+
* @memberof DataTypesConnectorSearchResult
|
|
14116
|
+
*/
|
|
14117
|
+
'found'?: number;
|
|
14118
|
+
/**
|
|
14119
|
+
*
|
|
14120
|
+
* @type {Array<object>}
|
|
14121
|
+
* @memberof DataTypesConnectorSearchResult
|
|
14122
|
+
*/
|
|
14123
|
+
'results'?: Array<object>;
|
|
14124
|
+
/**
|
|
14125
|
+
*
|
|
14126
|
+
* @type {string}
|
|
14127
|
+
* @memberof DataTypesConnectorSearchResult
|
|
14128
|
+
*/
|
|
14129
|
+
'status'?: string;
|
|
14130
|
+
}
|
|
13944
14131
|
/**
|
|
13945
14132
|
*
|
|
13946
14133
|
* @export
|
|
@@ -15140,6 +15327,88 @@ export interface DataTypesCreateSourceResponse {
|
|
|
15140
15327
|
*/
|
|
15141
15328
|
'status'?: number;
|
|
15142
15329
|
}
|
|
15330
|
+
/**
|
|
15331
|
+
*
|
|
15332
|
+
* @export
|
|
15333
|
+
* @interface DataTypesCreateStoreRequest
|
|
15334
|
+
*/
|
|
15335
|
+
export interface DataTypesCreateStoreRequest {
|
|
15336
|
+
/**
|
|
15337
|
+
* Optional: array of documents to import immediately
|
|
15338
|
+
* @type {Array<{ [key: string]: any; }>}
|
|
15339
|
+
* @memberof DataTypesCreateStoreRequest
|
|
15340
|
+
*/
|
|
15341
|
+
'dataset'?: Array<{
|
|
15342
|
+
[key: string]: any;
|
|
15343
|
+
}>;
|
|
15344
|
+
/**
|
|
15345
|
+
*
|
|
15346
|
+
* @type {string}
|
|
15347
|
+
* @memberof DataTypesCreateStoreRequest
|
|
15348
|
+
*/
|
|
15349
|
+
'industry'?: string;
|
|
15350
|
+
/**
|
|
15351
|
+
*
|
|
15352
|
+
* @type {string}
|
|
15353
|
+
* @memberof DataTypesCreateStoreRequest
|
|
15354
|
+
*/
|
|
15355
|
+
'location'?: string;
|
|
15356
|
+
/**
|
|
15357
|
+
*
|
|
15358
|
+
* @type {string}
|
|
15359
|
+
* @memberof DataTypesCreateStoreRequest
|
|
15360
|
+
*/
|
|
15361
|
+
'storeName': string;
|
|
15362
|
+
}
|
|
15363
|
+
/**
|
|
15364
|
+
*
|
|
15365
|
+
* @export
|
|
15366
|
+
* @interface DataTypesCreateStoreResponse
|
|
15367
|
+
*/
|
|
15368
|
+
export interface DataTypesCreateStoreResponse {
|
|
15369
|
+
/**
|
|
15370
|
+
* Job ID if dataset was imported
|
|
15371
|
+
* @type {string}
|
|
15372
|
+
* @memberof DataTypesCreateStoreResponse
|
|
15373
|
+
*/
|
|
15374
|
+
'importJobId'?: string;
|
|
15375
|
+
/**
|
|
15376
|
+
* Number of documents imported
|
|
15377
|
+
* @type {number}
|
|
15378
|
+
* @memberof DataTypesCreateStoreResponse
|
|
15379
|
+
*/
|
|
15380
|
+
'importedCount'?: number;
|
|
15381
|
+
/**
|
|
15382
|
+
*
|
|
15383
|
+
* @type {number}
|
|
15384
|
+
* @memberof DataTypesCreateStoreResponse
|
|
15385
|
+
*/
|
|
15386
|
+
'storeId'?: number;
|
|
15387
|
+
/**
|
|
15388
|
+
*
|
|
15389
|
+
* @type {string}
|
|
15390
|
+
* @memberof DataTypesCreateStoreResponse
|
|
15391
|
+
*/
|
|
15392
|
+
'storeName'?: string;
|
|
15393
|
+
/**
|
|
15394
|
+
*
|
|
15395
|
+
* @type {string}
|
|
15396
|
+
* @memberof DataTypesCreateStoreResponse
|
|
15397
|
+
*/
|
|
15398
|
+
'xStoreId'?: string;
|
|
15399
|
+
/**
|
|
15400
|
+
*
|
|
15401
|
+
* @type {string}
|
|
15402
|
+
* @memberof DataTypesCreateStoreResponse
|
|
15403
|
+
*/
|
|
15404
|
+
'xStoreSecret'?: string;
|
|
15405
|
+
/**
|
|
15406
|
+
*
|
|
15407
|
+
* @type {string}
|
|
15408
|
+
* @memberof DataTypesCreateStoreResponse
|
|
15409
|
+
*/
|
|
15410
|
+
'xStoreWriteSecret'?: string;
|
|
15411
|
+
}
|
|
15143
15412
|
/**
|
|
15144
15413
|
*
|
|
15145
15414
|
* @export
|
|
@@ -17238,7 +17507,7 @@ export interface DataTypesErrorMetaResponse {
|
|
|
17238
17507
|
*/
|
|
17239
17508
|
export interface DataTypesEventPayload {
|
|
17240
17509
|
/**
|
|
17241
|
-
*
|
|
17510
|
+
* Experiment identifier
|
|
17242
17511
|
* @type {string}
|
|
17243
17512
|
* @memberof DataTypesEventPayload
|
|
17244
17513
|
*/
|
|
@@ -17250,7 +17519,7 @@ export interface DataTypesEventPayload {
|
|
|
17250
17519
|
*/
|
|
17251
17520
|
'ab_variant'?: string;
|
|
17252
17521
|
/**
|
|
17253
|
-
*
|
|
17522
|
+
*
|
|
17254
17523
|
* @type {Array<string>}
|
|
17255
17524
|
* @memberof DataTypesEventPayload
|
|
17256
17525
|
*/
|
|
@@ -17310,7 +17579,7 @@ export interface DataTypesEventPayload {
|
|
|
17310
17579
|
*/
|
|
17311
17580
|
'click_type'?: string;
|
|
17312
17581
|
/**
|
|
17313
|
-
*
|
|
17582
|
+
*
|
|
17314
17583
|
* @type {string}
|
|
17315
17584
|
* @memberof DataTypesEventPayload
|
|
17316
17585
|
*/
|
|
@@ -17358,7 +17627,7 @@ export interface DataTypesEventPayload {
|
|
|
17358
17627
|
*/
|
|
17359
17628
|
'correlation_id'?: string;
|
|
17360
17629
|
/**
|
|
17361
|
-
*
|
|
17630
|
+
*
|
|
17362
17631
|
* @type {string}
|
|
17363
17632
|
* @memberof DataTypesEventPayload
|
|
17364
17633
|
*/
|
|
@@ -17382,7 +17651,7 @@ export interface DataTypesEventPayload {
|
|
|
17382
17651
|
*/
|
|
17383
17652
|
'custom_json'?: string;
|
|
17384
17653
|
/**
|
|
17385
|
-
*
|
|
17654
|
+
* URL user navigates to after click
|
|
17386
17655
|
* @type {string}
|
|
17387
17656
|
* @memberof DataTypesEventPayload
|
|
17388
17657
|
*/
|
|
@@ -17400,7 +17669,7 @@ export interface DataTypesEventPayload {
|
|
|
17400
17669
|
*/
|
|
17401
17670
|
'device_type'?: string;
|
|
17402
17671
|
/**
|
|
17403
|
-
*
|
|
17672
|
+
*
|
|
17404
17673
|
* @type {string}
|
|
17405
17674
|
* @memberof DataTypesEventPayload
|
|
17406
17675
|
*/
|
|
@@ -17442,7 +17711,7 @@ export interface DataTypesEventPayload {
|
|
|
17442
17711
|
*/
|
|
17443
17712
|
'insert_id'?: string;
|
|
17444
17713
|
/**
|
|
17445
|
-
*
|
|
17714
|
+
*
|
|
17446
17715
|
* @type {string}
|
|
17447
17716
|
* @memberof DataTypesEventPayload
|
|
17448
17717
|
*/
|
|
@@ -17492,7 +17761,7 @@ export interface DataTypesEventPayload {
|
|
|
17492
17761
|
[key: string]: any;
|
|
17493
17762
|
};
|
|
17494
17763
|
/**
|
|
17495
|
-
*
|
|
17764
|
+
*
|
|
17496
17765
|
* @type {string}
|
|
17497
17766
|
* @memberof DataTypesEventPayload
|
|
17498
17767
|
*/
|
|
@@ -17564,7 +17833,7 @@ export interface DataTypesEventPayload {
|
|
|
17564
17833
|
*/
|
|
17565
17834
|
'quantity'?: number;
|
|
17566
17835
|
/**
|
|
17567
|
-
*
|
|
17836
|
+
*
|
|
17568
17837
|
* @type {string}
|
|
17569
17838
|
* @memberof DataTypesEventPayload
|
|
17570
17839
|
*/
|
|
@@ -17726,7 +17995,7 @@ export interface DataTypesEventPayload {
|
|
|
17726
17995
|
*/
|
|
17727
17996
|
'utm_medium'?: string;
|
|
17728
17997
|
/**
|
|
17729
|
-
*
|
|
17998
|
+
*
|
|
17730
17999
|
* @type {string}
|
|
17731
18000
|
* @memberof DataTypesEventPayload
|
|
17732
18001
|
*/
|
|
@@ -17738,7 +18007,7 @@ export interface DataTypesEventPayload {
|
|
|
17738
18007
|
*/
|
|
17739
18008
|
'utm_term'?: string;
|
|
17740
18009
|
/**
|
|
17741
|
-
*
|
|
18010
|
+
*
|
|
17742
18011
|
* @type {number}
|
|
17743
18012
|
* @memberof DataTypesEventPayload
|
|
17744
18013
|
*/
|
|
@@ -17762,6 +18031,44 @@ export interface DataTypesEventPayload {
|
|
|
17762
18031
|
*/
|
|
17763
18032
|
'xstoreid'?: string;
|
|
17764
18033
|
}
|
|
18034
|
+
/**
|
|
18035
|
+
*
|
|
18036
|
+
* @export
|
|
18037
|
+
* @interface DataTypesEventSubmitData
|
|
18038
|
+
*/
|
|
18039
|
+
export interface DataTypesEventSubmitData {
|
|
18040
|
+
/**
|
|
18041
|
+
*
|
|
18042
|
+
* @type {string}
|
|
18043
|
+
* @memberof DataTypesEventSubmitData
|
|
18044
|
+
*/
|
|
18045
|
+
'event_id'?: string;
|
|
18046
|
+
/**
|
|
18047
|
+
*
|
|
18048
|
+
* @type {string}
|
|
18049
|
+
* @memberof DataTypesEventSubmitData
|
|
18050
|
+
*/
|
|
18051
|
+
'timestamp'?: string;
|
|
18052
|
+
}
|
|
18053
|
+
/**
|
|
18054
|
+
*
|
|
18055
|
+
* @export
|
|
18056
|
+
* @interface DataTypesEventValidateData
|
|
18057
|
+
*/
|
|
18058
|
+
export interface DataTypesEventValidateData {
|
|
18059
|
+
/**
|
|
18060
|
+
*
|
|
18061
|
+
* @type {string}
|
|
18062
|
+
* @memberof DataTypesEventValidateData
|
|
18063
|
+
*/
|
|
18064
|
+
'event_name'?: string;
|
|
18065
|
+
/**
|
|
18066
|
+
*
|
|
18067
|
+
* @type {string}
|
|
18068
|
+
* @memberof DataTypesEventValidateData
|
|
18069
|
+
*/
|
|
18070
|
+
'event_type'?: string;
|
|
18071
|
+
}
|
|
17765
18072
|
/**
|
|
17766
18073
|
*
|
|
17767
18074
|
* @export
|
|
@@ -20344,6 +20651,56 @@ export interface DataTypesGenericResponseBillingServiceTrialEligibilityResponse
|
|
|
20344
20651
|
*/
|
|
20345
20652
|
'status'?: number;
|
|
20346
20653
|
}
|
|
20654
|
+
/**
|
|
20655
|
+
*
|
|
20656
|
+
* @export
|
|
20657
|
+
* @interface DataTypesGenericResponseDataTypesAnalyticsConfigData
|
|
20658
|
+
*/
|
|
20659
|
+
export interface DataTypesGenericResponseDataTypesAnalyticsConfigData {
|
|
20660
|
+
/**
|
|
20661
|
+
*
|
|
20662
|
+
* @type {DataTypesAnalyticsConfigData}
|
|
20663
|
+
* @memberof DataTypesGenericResponseDataTypesAnalyticsConfigData
|
|
20664
|
+
*/
|
|
20665
|
+
'data'?: DataTypesAnalyticsConfigData;
|
|
20666
|
+
/**
|
|
20667
|
+
*
|
|
20668
|
+
* @type {string}
|
|
20669
|
+
* @memberof DataTypesGenericResponseDataTypesAnalyticsConfigData
|
|
20670
|
+
*/
|
|
20671
|
+
'message'?: string;
|
|
20672
|
+
/**
|
|
20673
|
+
*
|
|
20674
|
+
* @type {number}
|
|
20675
|
+
* @memberof DataTypesGenericResponseDataTypesAnalyticsConfigData
|
|
20676
|
+
*/
|
|
20677
|
+
'status'?: number;
|
|
20678
|
+
}
|
|
20679
|
+
/**
|
|
20680
|
+
*
|
|
20681
|
+
* @export
|
|
20682
|
+
* @interface DataTypesGenericResponseDataTypesBatchEventData
|
|
20683
|
+
*/
|
|
20684
|
+
export interface DataTypesGenericResponseDataTypesBatchEventData {
|
|
20685
|
+
/**
|
|
20686
|
+
*
|
|
20687
|
+
* @type {DataTypesBatchEventData}
|
|
20688
|
+
* @memberof DataTypesGenericResponseDataTypesBatchEventData
|
|
20689
|
+
*/
|
|
20690
|
+
'data'?: DataTypesBatchEventData;
|
|
20691
|
+
/**
|
|
20692
|
+
*
|
|
20693
|
+
* @type {string}
|
|
20694
|
+
* @memberof DataTypesGenericResponseDataTypesBatchEventData
|
|
20695
|
+
*/
|
|
20696
|
+
'message'?: string;
|
|
20697
|
+
/**
|
|
20698
|
+
*
|
|
20699
|
+
* @type {number}
|
|
20700
|
+
* @memberof DataTypesGenericResponseDataTypesBatchEventData
|
|
20701
|
+
*/
|
|
20702
|
+
'status'?: number;
|
|
20703
|
+
}
|
|
20347
20704
|
/**
|
|
20348
20705
|
*
|
|
20349
20706
|
* @export
|
|
@@ -20419,6 +20776,31 @@ export interface DataTypesGenericResponseDataTypesConsumptionHistoryResponse {
|
|
|
20419
20776
|
*/
|
|
20420
20777
|
'status'?: number;
|
|
20421
20778
|
}
|
|
20779
|
+
/**
|
|
20780
|
+
*
|
|
20781
|
+
* @export
|
|
20782
|
+
* @interface DataTypesGenericResponseDataTypesCreateStoreResponse
|
|
20783
|
+
*/
|
|
20784
|
+
export interface DataTypesGenericResponseDataTypesCreateStoreResponse {
|
|
20785
|
+
/**
|
|
20786
|
+
*
|
|
20787
|
+
* @type {DataTypesCreateStoreResponse}
|
|
20788
|
+
* @memberof DataTypesGenericResponseDataTypesCreateStoreResponse
|
|
20789
|
+
*/
|
|
20790
|
+
'data'?: DataTypesCreateStoreResponse;
|
|
20791
|
+
/**
|
|
20792
|
+
*
|
|
20793
|
+
* @type {string}
|
|
20794
|
+
* @memberof DataTypesGenericResponseDataTypesCreateStoreResponse
|
|
20795
|
+
*/
|
|
20796
|
+
'message'?: string;
|
|
20797
|
+
/**
|
|
20798
|
+
*
|
|
20799
|
+
* @type {number}
|
|
20800
|
+
* @memberof DataTypesGenericResponseDataTypesCreateStoreResponse
|
|
20801
|
+
*/
|
|
20802
|
+
'status'?: number;
|
|
20803
|
+
}
|
|
20422
20804
|
/**
|
|
20423
20805
|
*
|
|
20424
20806
|
* @export
|
|
@@ -20469,6 +20851,56 @@ export interface DataTypesGenericResponseDataTypesCurrentPlanInfo {
|
|
|
20469
20851
|
*/
|
|
20470
20852
|
'status'?: number;
|
|
20471
20853
|
}
|
|
20854
|
+
/**
|
|
20855
|
+
*
|
|
20856
|
+
* @export
|
|
20857
|
+
* @interface DataTypesGenericResponseDataTypesEventSubmitData
|
|
20858
|
+
*/
|
|
20859
|
+
export interface DataTypesGenericResponseDataTypesEventSubmitData {
|
|
20860
|
+
/**
|
|
20861
|
+
*
|
|
20862
|
+
* @type {DataTypesEventSubmitData}
|
|
20863
|
+
* @memberof DataTypesGenericResponseDataTypesEventSubmitData
|
|
20864
|
+
*/
|
|
20865
|
+
'data'?: DataTypesEventSubmitData;
|
|
20866
|
+
/**
|
|
20867
|
+
*
|
|
20868
|
+
* @type {string}
|
|
20869
|
+
* @memberof DataTypesGenericResponseDataTypesEventSubmitData
|
|
20870
|
+
*/
|
|
20871
|
+
'message'?: string;
|
|
20872
|
+
/**
|
|
20873
|
+
*
|
|
20874
|
+
* @type {number}
|
|
20875
|
+
* @memberof DataTypesGenericResponseDataTypesEventSubmitData
|
|
20876
|
+
*/
|
|
20877
|
+
'status'?: number;
|
|
20878
|
+
}
|
|
20879
|
+
/**
|
|
20880
|
+
*
|
|
20881
|
+
* @export
|
|
20882
|
+
* @interface DataTypesGenericResponseDataTypesEventValidateData
|
|
20883
|
+
*/
|
|
20884
|
+
export interface DataTypesGenericResponseDataTypesEventValidateData {
|
|
20885
|
+
/**
|
|
20886
|
+
*
|
|
20887
|
+
* @type {DataTypesEventValidateData}
|
|
20888
|
+
* @memberof DataTypesGenericResponseDataTypesEventValidateData
|
|
20889
|
+
*/
|
|
20890
|
+
'data'?: DataTypesEventValidateData;
|
|
20891
|
+
/**
|
|
20892
|
+
*
|
|
20893
|
+
* @type {string}
|
|
20894
|
+
* @memberof DataTypesGenericResponseDataTypesEventValidateData
|
|
20895
|
+
*/
|
|
20896
|
+
'message'?: string;
|
|
20897
|
+
/**
|
|
20898
|
+
*
|
|
20899
|
+
* @type {number}
|
|
20900
|
+
* @memberof DataTypesGenericResponseDataTypesEventValidateData
|
|
20901
|
+
*/
|
|
20902
|
+
'status'?: number;
|
|
20903
|
+
}
|
|
20472
20904
|
/**
|
|
20473
20905
|
*
|
|
20474
20906
|
* @export
|
|
@@ -20669,56 +21101,6 @@ export interface DataTypesGenericResponseDataTypesPayInvoiceResponse {
|
|
|
20669
21101
|
*/
|
|
20670
21102
|
'status'?: number;
|
|
20671
21103
|
}
|
|
20672
|
-
/**
|
|
20673
|
-
*
|
|
20674
|
-
* @export
|
|
20675
|
-
* @interface DataTypesGenericResponseDataTypesPublicCreateStoreResponse
|
|
20676
|
-
*/
|
|
20677
|
-
export interface DataTypesGenericResponseDataTypesPublicCreateStoreResponse {
|
|
20678
|
-
/**
|
|
20679
|
-
*
|
|
20680
|
-
* @type {DataTypesPublicCreateStoreResponse}
|
|
20681
|
-
* @memberof DataTypesGenericResponseDataTypesPublicCreateStoreResponse
|
|
20682
|
-
*/
|
|
20683
|
-
'data'?: DataTypesPublicCreateStoreResponse;
|
|
20684
|
-
/**
|
|
20685
|
-
*
|
|
20686
|
-
* @type {string}
|
|
20687
|
-
* @memberof DataTypesGenericResponseDataTypesPublicCreateStoreResponse
|
|
20688
|
-
*/
|
|
20689
|
-
'message'?: string;
|
|
20690
|
-
/**
|
|
20691
|
-
*
|
|
20692
|
-
* @type {number}
|
|
20693
|
-
* @memberof DataTypesGenericResponseDataTypesPublicCreateStoreResponse
|
|
20694
|
-
*/
|
|
20695
|
-
'status'?: number;
|
|
20696
|
-
}
|
|
20697
|
-
/**
|
|
20698
|
-
*
|
|
20699
|
-
* @export
|
|
20700
|
-
* @interface DataTypesGenericResponseDataTypesPublicStoreInfoResponse
|
|
20701
|
-
*/
|
|
20702
|
-
export interface DataTypesGenericResponseDataTypesPublicStoreInfoResponse {
|
|
20703
|
-
/**
|
|
20704
|
-
*
|
|
20705
|
-
* @type {DataTypesPublicStoreInfoResponse}
|
|
20706
|
-
* @memberof DataTypesGenericResponseDataTypesPublicStoreInfoResponse
|
|
20707
|
-
*/
|
|
20708
|
-
'data'?: DataTypesPublicStoreInfoResponse;
|
|
20709
|
-
/**
|
|
20710
|
-
*
|
|
20711
|
-
* @type {string}
|
|
20712
|
-
* @memberof DataTypesGenericResponseDataTypesPublicStoreInfoResponse
|
|
20713
|
-
*/
|
|
20714
|
-
'message'?: string;
|
|
20715
|
-
/**
|
|
20716
|
-
*
|
|
20717
|
-
* @type {number}
|
|
20718
|
-
* @memberof DataTypesGenericResponseDataTypesPublicStoreInfoResponse
|
|
20719
|
-
*/
|
|
20720
|
-
'status'?: number;
|
|
20721
|
-
}
|
|
20722
21104
|
/**
|
|
20723
21105
|
*
|
|
20724
21106
|
* @export
|
|
@@ -20844,6 +21226,31 @@ export interface DataTypesGenericResponseDataTypesStoreConfigWithOnboardingRespo
|
|
|
20844
21226
|
*/
|
|
20845
21227
|
'status'?: number;
|
|
20846
21228
|
}
|
|
21229
|
+
/**
|
|
21230
|
+
*
|
|
21231
|
+
* @export
|
|
21232
|
+
* @interface DataTypesGenericResponseDataTypesStoreInfoResponse
|
|
21233
|
+
*/
|
|
21234
|
+
export interface DataTypesGenericResponseDataTypesStoreInfoResponse {
|
|
21235
|
+
/**
|
|
21236
|
+
*
|
|
21237
|
+
* @type {DataTypesStoreInfoResponse}
|
|
21238
|
+
* @memberof DataTypesGenericResponseDataTypesStoreInfoResponse
|
|
21239
|
+
*/
|
|
21240
|
+
'data'?: DataTypesStoreInfoResponse;
|
|
21241
|
+
/**
|
|
21242
|
+
*
|
|
21243
|
+
* @type {string}
|
|
21244
|
+
* @memberof DataTypesGenericResponseDataTypesStoreInfoResponse
|
|
21245
|
+
*/
|
|
21246
|
+
'message'?: string;
|
|
21247
|
+
/**
|
|
21248
|
+
*
|
|
21249
|
+
* @type {number}
|
|
21250
|
+
* @memberof DataTypesGenericResponseDataTypesStoreInfoResponse
|
|
21251
|
+
*/
|
|
21252
|
+
'status'?: number;
|
|
21253
|
+
}
|
|
20847
21254
|
/**
|
|
20848
21255
|
*
|
|
20849
21256
|
* @export
|
|
@@ -25233,121 +25640,6 @@ export interface DataTypesOTPPayload {
|
|
|
25233
25640
|
*/
|
|
25234
25641
|
'otp'?: string;
|
|
25235
25642
|
}
|
|
25236
|
-
/**
|
|
25237
|
-
*
|
|
25238
|
-
* @export
|
|
25239
|
-
* @interface DataTypesOfficialSearchResponse
|
|
25240
|
-
*/
|
|
25241
|
-
export interface DataTypesOfficialSearchResponse {
|
|
25242
|
-
/**
|
|
25243
|
-
*
|
|
25244
|
-
* @type {any}
|
|
25245
|
-
* @memberof DataTypesOfficialSearchResponse
|
|
25246
|
-
*/
|
|
25247
|
-
'facets'?: any;
|
|
25248
|
-
/**
|
|
25249
|
-
*
|
|
25250
|
-
* @type {number}
|
|
25251
|
-
* @memberof DataTypesOfficialSearchResponse
|
|
25252
|
-
*/
|
|
25253
|
-
'page'?: number;
|
|
25254
|
-
/**
|
|
25255
|
-
*
|
|
25256
|
-
* @type {number}
|
|
25257
|
-
* @memberof DataTypesOfficialSearchResponse
|
|
25258
|
-
*/
|
|
25259
|
-
'per_page'?: number;
|
|
25260
|
-
/**
|
|
25261
|
-
*
|
|
25262
|
-
* @type {Array<DataTypesOfficialSearchResult>}
|
|
25263
|
-
* @memberof DataTypesOfficialSearchResponse
|
|
25264
|
-
*/
|
|
25265
|
-
'results'?: Array<DataTypesOfficialSearchResult>;
|
|
25266
|
-
/**
|
|
25267
|
-
* Unique search identifier for analytics linking
|
|
25268
|
-
* @type {string}
|
|
25269
|
-
* @memberof DataTypesOfficialSearchResponse
|
|
25270
|
-
*/
|
|
25271
|
-
'search_id'?: string;
|
|
25272
|
-
/**
|
|
25273
|
-
* Available sort options based on schema
|
|
25274
|
-
* @type {Array<DataTypesSortOption>}
|
|
25275
|
-
* @memberof DataTypesOfficialSearchResponse
|
|
25276
|
-
*/
|
|
25277
|
-
'sort_options'?: Array<DataTypesSortOption>;
|
|
25278
|
-
/**
|
|
25279
|
-
*
|
|
25280
|
-
* @type {Array<DataTypesAutocompleteSuggestion>}
|
|
25281
|
-
* @memberof DataTypesOfficialSearchResponse
|
|
25282
|
-
*/
|
|
25283
|
-
'suggestions'?: Array<DataTypesAutocompleteSuggestion>;
|
|
25284
|
-
/**
|
|
25285
|
-
*
|
|
25286
|
-
* @type {number}
|
|
25287
|
-
* @memberof DataTypesOfficialSearchResponse
|
|
25288
|
-
*/
|
|
25289
|
-
'total_results'?: number;
|
|
25290
|
-
}
|
|
25291
|
-
/**
|
|
25292
|
-
*
|
|
25293
|
-
* @export
|
|
25294
|
-
* @interface DataTypesOfficialSearchResponseWrapper
|
|
25295
|
-
*/
|
|
25296
|
-
export interface DataTypesOfficialSearchResponseWrapper {
|
|
25297
|
-
/**
|
|
25298
|
-
*
|
|
25299
|
-
* @type {DataTypesOfficialSearchResponse}
|
|
25300
|
-
* @memberof DataTypesOfficialSearchResponseWrapper
|
|
25301
|
-
*/
|
|
25302
|
-
'data'?: DataTypesOfficialSearchResponse;
|
|
25303
|
-
/**
|
|
25304
|
-
*
|
|
25305
|
-
* @type {string}
|
|
25306
|
-
* @memberof DataTypesOfficialSearchResponseWrapper
|
|
25307
|
-
*/
|
|
25308
|
-
'message'?: string;
|
|
25309
|
-
/**
|
|
25310
|
-
*
|
|
25311
|
-
* @type {number}
|
|
25312
|
-
* @memberof DataTypesOfficialSearchResponseWrapper
|
|
25313
|
-
*/
|
|
25314
|
-
'status'?: number;
|
|
25315
|
-
}
|
|
25316
|
-
/**
|
|
25317
|
-
*
|
|
25318
|
-
* @export
|
|
25319
|
-
* @interface DataTypesOfficialSearchResult
|
|
25320
|
-
*/
|
|
25321
|
-
export interface DataTypesOfficialSearchResult {
|
|
25322
|
-
/**
|
|
25323
|
-
*
|
|
25324
|
-
* @type {{ [key: string]: any; }}
|
|
25325
|
-
* @memberof DataTypesOfficialSearchResult
|
|
25326
|
-
*/
|
|
25327
|
-
'document'?: {
|
|
25328
|
-
[key: string]: any;
|
|
25329
|
-
};
|
|
25330
|
-
/**
|
|
25331
|
-
*
|
|
25332
|
-
* @type {{ [key: string]: any; }}
|
|
25333
|
-
* @memberof DataTypesOfficialSearchResult
|
|
25334
|
-
*/
|
|
25335
|
-
'highlight'?: {
|
|
25336
|
-
[key: string]: any;
|
|
25337
|
-
};
|
|
25338
|
-
/**
|
|
25339
|
-
*
|
|
25340
|
-
* @type {string}
|
|
25341
|
-
* @memberof DataTypesOfficialSearchResult
|
|
25342
|
-
*/
|
|
25343
|
-
'id'?: string;
|
|
25344
|
-
/**
|
|
25345
|
-
*
|
|
25346
|
-
* @type {number}
|
|
25347
|
-
* @memberof DataTypesOfficialSearchResult
|
|
25348
|
-
*/
|
|
25349
|
-
'score'?: number;
|
|
25350
|
-
}
|
|
25351
25643
|
/**
|
|
25352
25644
|
*
|
|
25353
25645
|
* @export
|
|
@@ -25633,6 +25925,12 @@ export interface DataTypesOnboardingStatus {
|
|
|
25633
25925
|
* @memberof DataTypesOnboardingStatus
|
|
25634
25926
|
*/
|
|
25635
25927
|
'is_complete'?: boolean;
|
|
25928
|
+
/**
|
|
25929
|
+
* Whether the check was unreliable due to transient infrastructure errors
|
|
25930
|
+
* @type {boolean}
|
|
25931
|
+
* @memberof DataTypesOnboardingStatus
|
|
25932
|
+
*/
|
|
25933
|
+
'is_degraded'?: boolean;
|
|
25636
25934
|
/**
|
|
25637
25935
|
* List of missing components
|
|
25638
25936
|
* @type {Array<string>}
|
|
@@ -27928,384 +28226,6 @@ export interface DataTypesProjectedRunoutInfo {
|
|
|
27928
28226
|
*/
|
|
27929
28227
|
'warning_level'?: string;
|
|
27930
28228
|
}
|
|
27931
|
-
/**
|
|
27932
|
-
*
|
|
27933
|
-
* @export
|
|
27934
|
-
* @interface DataTypesPublicCreateStoreRequest
|
|
27935
|
-
*/
|
|
27936
|
-
export interface DataTypesPublicCreateStoreRequest {
|
|
27937
|
-
/**
|
|
27938
|
-
* Optional: array of documents to import immediately
|
|
27939
|
-
* @type {Array<{ [key: string]: any; }>}
|
|
27940
|
-
* @memberof DataTypesPublicCreateStoreRequest
|
|
27941
|
-
*/
|
|
27942
|
-
'dataset'?: Array<{
|
|
27943
|
-
[key: string]: any;
|
|
27944
|
-
}>;
|
|
27945
|
-
/**
|
|
27946
|
-
*
|
|
27947
|
-
* @type {string}
|
|
27948
|
-
* @memberof DataTypesPublicCreateStoreRequest
|
|
27949
|
-
*/
|
|
27950
|
-
'industry'?: string;
|
|
27951
|
-
/**
|
|
27952
|
-
*
|
|
27953
|
-
* @type {string}
|
|
27954
|
-
* @memberof DataTypesPublicCreateStoreRequest
|
|
27955
|
-
*/
|
|
27956
|
-
'location'?: string;
|
|
27957
|
-
/**
|
|
27958
|
-
*
|
|
27959
|
-
* @type {string}
|
|
27960
|
-
* @memberof DataTypesPublicCreateStoreRequest
|
|
27961
|
-
*/
|
|
27962
|
-
'storeName': string;
|
|
27963
|
-
}
|
|
27964
|
-
/**
|
|
27965
|
-
*
|
|
27966
|
-
* @export
|
|
27967
|
-
* @interface DataTypesPublicCreateStoreResponse
|
|
27968
|
-
*/
|
|
27969
|
-
export interface DataTypesPublicCreateStoreResponse {
|
|
27970
|
-
/**
|
|
27971
|
-
* Job ID if dataset was imported
|
|
27972
|
-
* @type {string}
|
|
27973
|
-
* @memberof DataTypesPublicCreateStoreResponse
|
|
27974
|
-
*/
|
|
27975
|
-
'importJobId'?: string;
|
|
27976
|
-
/**
|
|
27977
|
-
* Number of documents imported
|
|
27978
|
-
* @type {number}
|
|
27979
|
-
* @memberof DataTypesPublicCreateStoreResponse
|
|
27980
|
-
*/
|
|
27981
|
-
'importedCount'?: number;
|
|
27982
|
-
/**
|
|
27983
|
-
*
|
|
27984
|
-
* @type {number}
|
|
27985
|
-
* @memberof DataTypesPublicCreateStoreResponse
|
|
27986
|
-
*/
|
|
27987
|
-
'storeId'?: number;
|
|
27988
|
-
/**
|
|
27989
|
-
*
|
|
27990
|
-
* @type {string}
|
|
27991
|
-
* @memberof DataTypesPublicCreateStoreResponse
|
|
27992
|
-
*/
|
|
27993
|
-
'storeName'?: string;
|
|
27994
|
-
/**
|
|
27995
|
-
*
|
|
27996
|
-
* @type {string}
|
|
27997
|
-
* @memberof DataTypesPublicCreateStoreResponse
|
|
27998
|
-
*/
|
|
27999
|
-
'xStoreId'?: string;
|
|
28000
|
-
/**
|
|
28001
|
-
*
|
|
28002
|
-
* @type {string}
|
|
28003
|
-
* @memberof DataTypesPublicCreateStoreResponse
|
|
28004
|
-
*/
|
|
28005
|
-
'xStoreSecret'?: string;
|
|
28006
|
-
/**
|
|
28007
|
-
*
|
|
28008
|
-
* @type {string}
|
|
28009
|
-
* @memberof DataTypesPublicCreateStoreResponse
|
|
28010
|
-
*/
|
|
28011
|
-
'xStoreWriteSecret'?: string;
|
|
28012
|
-
}
|
|
28013
|
-
/**
|
|
28014
|
-
*
|
|
28015
|
-
* @export
|
|
28016
|
-
* @interface DataTypesPublicSearchRequest
|
|
28017
|
-
*/
|
|
28018
|
-
export interface DataTypesPublicSearchRequest {
|
|
28019
|
-
/**
|
|
28020
|
-
*
|
|
28021
|
-
* @type {Array<string>}
|
|
28022
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28023
|
-
*/
|
|
28024
|
-
'analytics_tags'?: Array<string>;
|
|
28025
|
-
/**
|
|
28026
|
-
* Anonymous/cookie ID for personalization
|
|
28027
|
-
* @type {string}
|
|
28028
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28029
|
-
*/
|
|
28030
|
-
'anon_id'?: string;
|
|
28031
|
-
/**
|
|
28032
|
-
*
|
|
28033
|
-
* @type {boolean}
|
|
28034
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28035
|
-
*/
|
|
28036
|
-
'apply_rules'?: boolean;
|
|
28037
|
-
/**
|
|
28038
|
-
*
|
|
28039
|
-
* @type {boolean}
|
|
28040
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28041
|
-
*/
|
|
28042
|
-
'cache_results'?: boolean;
|
|
28043
|
-
/**
|
|
28044
|
-
*
|
|
28045
|
-
* @type {boolean}
|
|
28046
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28047
|
-
*/
|
|
28048
|
-
'exact_match_boost'?: boolean;
|
|
28049
|
-
/**
|
|
28050
|
-
*
|
|
28051
|
-
* @type {string}
|
|
28052
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28053
|
-
*/
|
|
28054
|
-
'facet_by'?: string;
|
|
28055
|
-
/**
|
|
28056
|
-
*
|
|
28057
|
-
* @type {string}
|
|
28058
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28059
|
-
*/
|
|
28060
|
-
'facet_search_text'?: string;
|
|
28061
|
-
/**
|
|
28062
|
-
*
|
|
28063
|
-
* @type {Array<number>}
|
|
28064
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28065
|
-
*/
|
|
28066
|
-
'field_weights'?: Array<number>;
|
|
28067
|
-
/**
|
|
28068
|
-
*
|
|
28069
|
-
* @type {string}
|
|
28070
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28071
|
-
*/
|
|
28072
|
-
'filter'?: string;
|
|
28073
|
-
/**
|
|
28074
|
-
*
|
|
28075
|
-
* @type {Array<string>}
|
|
28076
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28077
|
-
*/
|
|
28078
|
-
'full_snippet_fields'?: Array<string>;
|
|
28079
|
-
/**
|
|
28080
|
-
*
|
|
28081
|
-
* @type {string}
|
|
28082
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28083
|
-
*/
|
|
28084
|
-
'group_field'?: string;
|
|
28085
|
-
/**
|
|
28086
|
-
*
|
|
28087
|
-
* @type {number}
|
|
28088
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28089
|
-
*/
|
|
28090
|
-
'group_size'?: number;
|
|
28091
|
-
/**
|
|
28092
|
-
*
|
|
28093
|
-
* @type {boolean}
|
|
28094
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28095
|
-
*/
|
|
28096
|
-
'include_snippets'?: boolean;
|
|
28097
|
-
/**
|
|
28098
|
-
*
|
|
28099
|
-
* @type {boolean}
|
|
28100
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28101
|
-
*/
|
|
28102
|
-
'include_suggestions'?: boolean;
|
|
28103
|
-
/**
|
|
28104
|
-
*
|
|
28105
|
-
* @type {string}
|
|
28106
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28107
|
-
*/
|
|
28108
|
-
'infix_mode'?: string;
|
|
28109
|
-
/**
|
|
28110
|
-
*
|
|
28111
|
-
* @type {number}
|
|
28112
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28113
|
-
*/
|
|
28114
|
-
'max_facet_values'?: number;
|
|
28115
|
-
/**
|
|
28116
|
-
*
|
|
28117
|
-
* @type {Array<string>}
|
|
28118
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28119
|
-
*/
|
|
28120
|
-
'omit_fields'?: Array<string>;
|
|
28121
|
-
/**
|
|
28122
|
-
*
|
|
28123
|
-
* @type {number}
|
|
28124
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28125
|
-
*/
|
|
28126
|
-
'page'?: number;
|
|
28127
|
-
/**
|
|
28128
|
-
*
|
|
28129
|
-
* @type {number}
|
|
28130
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28131
|
-
*/
|
|
28132
|
-
'per_page'?: number;
|
|
28133
|
-
/**
|
|
28134
|
-
*
|
|
28135
|
-
* @type {string}
|
|
28136
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28137
|
-
*/
|
|
28138
|
-
'prefix_mode'?: string;
|
|
28139
|
-
/**
|
|
28140
|
-
*
|
|
28141
|
-
* @type {string}
|
|
28142
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28143
|
-
*/
|
|
28144
|
-
'preset_name'?: string;
|
|
28145
|
-
/**
|
|
28146
|
-
*
|
|
28147
|
-
* @type {string}
|
|
28148
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28149
|
-
*/
|
|
28150
|
-
'q': string;
|
|
28151
|
-
/**
|
|
28152
|
-
*
|
|
28153
|
-
* @type {boolean}
|
|
28154
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28155
|
-
*/
|
|
28156
|
-
'require_all_terms'?: boolean;
|
|
28157
|
-
/**
|
|
28158
|
-
*
|
|
28159
|
-
* @type {Array<string>}
|
|
28160
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28161
|
-
*/
|
|
28162
|
-
'return_fields'?: Array<string>;
|
|
28163
|
-
/**
|
|
28164
|
-
* Advanced query controls (public-friendly field names)
|
|
28165
|
-
* @type {Array<string>}
|
|
28166
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28167
|
-
*/
|
|
28168
|
-
'search_fields'?: Array<string>;
|
|
28169
|
-
/**
|
|
28170
|
-
*
|
|
28171
|
-
* @type {number}
|
|
28172
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28173
|
-
*/
|
|
28174
|
-
'search_timeout_ms'?: number;
|
|
28175
|
-
/**
|
|
28176
|
-
* Session ID for session-based personalization
|
|
28177
|
-
* @type {string}
|
|
28178
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28179
|
-
*/
|
|
28180
|
-
'session_id'?: string;
|
|
28181
|
-
/**
|
|
28182
|
-
*
|
|
28183
|
-
* @type {Array<string>}
|
|
28184
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28185
|
-
*/
|
|
28186
|
-
'snippet_fields'?: Array<string>;
|
|
28187
|
-
/**
|
|
28188
|
-
*
|
|
28189
|
-
* @type {number}
|
|
28190
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28191
|
-
*/
|
|
28192
|
-
'snippet_min_len'?: number;
|
|
28193
|
-
/**
|
|
28194
|
-
*
|
|
28195
|
-
* @type {string}
|
|
28196
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28197
|
-
*/
|
|
28198
|
-
'snippet_prefix'?: string;
|
|
28199
|
-
/**
|
|
28200
|
-
*
|
|
28201
|
-
* @type {string}
|
|
28202
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28203
|
-
*/
|
|
28204
|
-
'snippet_suffix'?: string;
|
|
28205
|
-
/**
|
|
28206
|
-
*
|
|
28207
|
-
* @type {number}
|
|
28208
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28209
|
-
*/
|
|
28210
|
-
'snippet_token_limit'?: number;
|
|
28211
|
-
/**
|
|
28212
|
-
*
|
|
28213
|
-
* @type {string}
|
|
28214
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28215
|
-
*/
|
|
28216
|
-
'sort'?: string;
|
|
28217
|
-
/**
|
|
28218
|
-
* IDs of stopword sets to use
|
|
28219
|
-
* @type {Array<string>}
|
|
28220
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28221
|
-
*/
|
|
28222
|
-
'stopword_sets'?: Array<string>;
|
|
28223
|
-
/**
|
|
28224
|
-
*
|
|
28225
|
-
* @type {number}
|
|
28226
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28227
|
-
*/
|
|
28228
|
-
'suggestions_limit'?: number;
|
|
28229
|
-
/**
|
|
28230
|
-
* IDs of synonym sets to use
|
|
28231
|
-
* @type {Array<string>}
|
|
28232
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28233
|
-
*/
|
|
28234
|
-
'synonym_sets'?: Array<string>;
|
|
28235
|
-
/**
|
|
28236
|
-
*
|
|
28237
|
-
* @type {number}
|
|
28238
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28239
|
-
*/
|
|
28240
|
-
'typo_max'?: number;
|
|
28241
|
-
/**
|
|
28242
|
-
*
|
|
28243
|
-
* @type {number}
|
|
28244
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28245
|
-
*/
|
|
28246
|
-
'typo_min_len_1'?: number;
|
|
28247
|
-
/**
|
|
28248
|
-
*
|
|
28249
|
-
* @type {number}
|
|
28250
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28251
|
-
*/
|
|
28252
|
-
'typo_min_len_2'?: number;
|
|
28253
|
-
/**
|
|
28254
|
-
* Personalization fields (optional, backward compatible)
|
|
28255
|
-
* @type {string}
|
|
28256
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28257
|
-
*/
|
|
28258
|
-
'user_id'?: string;
|
|
28259
|
-
/**
|
|
28260
|
-
* If true, returns only display fields instead of full document (used in public API only)
|
|
28261
|
-
* @type {boolean}
|
|
28262
|
-
* @memberof DataTypesPublicSearchRequest
|
|
28263
|
-
*/
|
|
28264
|
-
'widget_mode'?: boolean;
|
|
28265
|
-
}
|
|
28266
|
-
/**
|
|
28267
|
-
*
|
|
28268
|
-
* @export
|
|
28269
|
-
* @interface DataTypesPublicStoreInfoResponse
|
|
28270
|
-
*/
|
|
28271
|
-
export interface DataTypesPublicStoreInfoResponse {
|
|
28272
|
-
/**
|
|
28273
|
-
*
|
|
28274
|
-
* @type {string}
|
|
28275
|
-
* @memberof DataTypesPublicStoreInfoResponse
|
|
28276
|
-
*/
|
|
28277
|
-
'createdAt'?: string;
|
|
28278
|
-
/**
|
|
28279
|
-
*
|
|
28280
|
-
* @type {boolean}
|
|
28281
|
-
* @memberof DataTypesPublicStoreInfoResponse
|
|
28282
|
-
*/
|
|
28283
|
-
'isActive'?: boolean;
|
|
28284
|
-
/**
|
|
28285
|
-
*
|
|
28286
|
-
* @type {string}
|
|
28287
|
-
* @memberof DataTypesPublicStoreInfoResponse
|
|
28288
|
-
*/
|
|
28289
|
-
'location'?: string;
|
|
28290
|
-
/**
|
|
28291
|
-
*
|
|
28292
|
-
* @type {number}
|
|
28293
|
-
* @memberof DataTypesPublicStoreInfoResponse
|
|
28294
|
-
*/
|
|
28295
|
-
'storeId'?: number;
|
|
28296
|
-
/**
|
|
28297
|
-
*
|
|
28298
|
-
* @type {string}
|
|
28299
|
-
* @memberof DataTypesPublicStoreInfoResponse
|
|
28300
|
-
*/
|
|
28301
|
-
'storeName'?: string;
|
|
28302
|
-
/**
|
|
28303
|
-
*
|
|
28304
|
-
* @type {string}
|
|
28305
|
-
* @memberof DataTypesPublicStoreInfoResponse
|
|
28306
|
-
*/
|
|
28307
|
-
'xStoreId'?: string;
|
|
28308
|
-
}
|
|
28309
28229
|
/**
|
|
28310
28230
|
*
|
|
28311
28231
|
* @export
|
|
@@ -30085,6 +30005,259 @@ export interface DataTypesSchemaResponseWrapper {
|
|
|
30085
30005
|
*/
|
|
30086
30006
|
'status'?: number;
|
|
30087
30007
|
}
|
|
30008
|
+
/**
|
|
30009
|
+
*
|
|
30010
|
+
* @export
|
|
30011
|
+
* @interface DataTypesSearchRequest
|
|
30012
|
+
*/
|
|
30013
|
+
export interface DataTypesSearchRequest {
|
|
30014
|
+
/**
|
|
30015
|
+
*
|
|
30016
|
+
* @type {Array<string>}
|
|
30017
|
+
* @memberof DataTypesSearchRequest
|
|
30018
|
+
*/
|
|
30019
|
+
'analytics_tags'?: Array<string>;
|
|
30020
|
+
/**
|
|
30021
|
+
* Anonymous/cookie ID for personalization
|
|
30022
|
+
* @type {string}
|
|
30023
|
+
* @memberof DataTypesSearchRequest
|
|
30024
|
+
*/
|
|
30025
|
+
'anon_id'?: string;
|
|
30026
|
+
/**
|
|
30027
|
+
*
|
|
30028
|
+
* @type {boolean}
|
|
30029
|
+
* @memberof DataTypesSearchRequest
|
|
30030
|
+
*/
|
|
30031
|
+
'apply_rules'?: boolean;
|
|
30032
|
+
/**
|
|
30033
|
+
*
|
|
30034
|
+
* @type {boolean}
|
|
30035
|
+
* @memberof DataTypesSearchRequest
|
|
30036
|
+
*/
|
|
30037
|
+
'cache_results'?: boolean;
|
|
30038
|
+
/**
|
|
30039
|
+
*
|
|
30040
|
+
* @type {boolean}
|
|
30041
|
+
* @memberof DataTypesSearchRequest
|
|
30042
|
+
*/
|
|
30043
|
+
'exact_match_boost'?: boolean;
|
|
30044
|
+
/**
|
|
30045
|
+
*
|
|
30046
|
+
* @type {string}
|
|
30047
|
+
* @memberof DataTypesSearchRequest
|
|
30048
|
+
*/
|
|
30049
|
+
'facet_by'?: string;
|
|
30050
|
+
/**
|
|
30051
|
+
*
|
|
30052
|
+
* @type {string}
|
|
30053
|
+
* @memberof DataTypesSearchRequest
|
|
30054
|
+
*/
|
|
30055
|
+
'facet_search_text'?: string;
|
|
30056
|
+
/**
|
|
30057
|
+
*
|
|
30058
|
+
* @type {Array<number>}
|
|
30059
|
+
* @memberof DataTypesSearchRequest
|
|
30060
|
+
*/
|
|
30061
|
+
'field_weights'?: Array<number>;
|
|
30062
|
+
/**
|
|
30063
|
+
*
|
|
30064
|
+
* @type {string}
|
|
30065
|
+
* @memberof DataTypesSearchRequest
|
|
30066
|
+
*/
|
|
30067
|
+
'filter'?: string;
|
|
30068
|
+
/**
|
|
30069
|
+
*
|
|
30070
|
+
* @type {Array<string>}
|
|
30071
|
+
* @memberof DataTypesSearchRequest
|
|
30072
|
+
*/
|
|
30073
|
+
'full_snippet_fields'?: Array<string>;
|
|
30074
|
+
/**
|
|
30075
|
+
*
|
|
30076
|
+
* @type {string}
|
|
30077
|
+
* @memberof DataTypesSearchRequest
|
|
30078
|
+
*/
|
|
30079
|
+
'group_field'?: string;
|
|
30080
|
+
/**
|
|
30081
|
+
*
|
|
30082
|
+
* @type {number}
|
|
30083
|
+
* @memberof DataTypesSearchRequest
|
|
30084
|
+
*/
|
|
30085
|
+
'group_size'?: number;
|
|
30086
|
+
/**
|
|
30087
|
+
*
|
|
30088
|
+
* @type {boolean}
|
|
30089
|
+
* @memberof DataTypesSearchRequest
|
|
30090
|
+
*/
|
|
30091
|
+
'include_snippets'?: boolean;
|
|
30092
|
+
/**
|
|
30093
|
+
*
|
|
30094
|
+
* @type {boolean}
|
|
30095
|
+
* @memberof DataTypesSearchRequest
|
|
30096
|
+
*/
|
|
30097
|
+
'include_suggestions'?: boolean;
|
|
30098
|
+
/**
|
|
30099
|
+
*
|
|
30100
|
+
* @type {string}
|
|
30101
|
+
* @memberof DataTypesSearchRequest
|
|
30102
|
+
*/
|
|
30103
|
+
'infix_mode'?: string;
|
|
30104
|
+
/**
|
|
30105
|
+
*
|
|
30106
|
+
* @type {number}
|
|
30107
|
+
* @memberof DataTypesSearchRequest
|
|
30108
|
+
*/
|
|
30109
|
+
'max_facet_values'?: number;
|
|
30110
|
+
/**
|
|
30111
|
+
*
|
|
30112
|
+
* @type {Array<string>}
|
|
30113
|
+
* @memberof DataTypesSearchRequest
|
|
30114
|
+
*/
|
|
30115
|
+
'omit_fields'?: Array<string>;
|
|
30116
|
+
/**
|
|
30117
|
+
*
|
|
30118
|
+
* @type {number}
|
|
30119
|
+
* @memberof DataTypesSearchRequest
|
|
30120
|
+
*/
|
|
30121
|
+
'page'?: number;
|
|
30122
|
+
/**
|
|
30123
|
+
*
|
|
30124
|
+
* @type {number}
|
|
30125
|
+
* @memberof DataTypesSearchRequest
|
|
30126
|
+
*/
|
|
30127
|
+
'per_page'?: number;
|
|
30128
|
+
/**
|
|
30129
|
+
*
|
|
30130
|
+
* @type {string}
|
|
30131
|
+
* @memberof DataTypesSearchRequest
|
|
30132
|
+
*/
|
|
30133
|
+
'prefix_mode'?: string;
|
|
30134
|
+
/**
|
|
30135
|
+
*
|
|
30136
|
+
* @type {string}
|
|
30137
|
+
* @memberof DataTypesSearchRequest
|
|
30138
|
+
*/
|
|
30139
|
+
'preset_name'?: string;
|
|
30140
|
+
/**
|
|
30141
|
+
*
|
|
30142
|
+
* @type {string}
|
|
30143
|
+
* @memberof DataTypesSearchRequest
|
|
30144
|
+
*/
|
|
30145
|
+
'q': string;
|
|
30146
|
+
/**
|
|
30147
|
+
*
|
|
30148
|
+
* @type {boolean}
|
|
30149
|
+
* @memberof DataTypesSearchRequest
|
|
30150
|
+
*/
|
|
30151
|
+
'require_all_terms'?: boolean;
|
|
30152
|
+
/**
|
|
30153
|
+
*
|
|
30154
|
+
* @type {Array<string>}
|
|
30155
|
+
* @memberof DataTypesSearchRequest
|
|
30156
|
+
*/
|
|
30157
|
+
'return_fields'?: Array<string>;
|
|
30158
|
+
/**
|
|
30159
|
+
* Advanced query controls (public-friendly field names)
|
|
30160
|
+
* @type {Array<string>}
|
|
30161
|
+
* @memberof DataTypesSearchRequest
|
|
30162
|
+
*/
|
|
30163
|
+
'search_fields'?: Array<string>;
|
|
30164
|
+
/**
|
|
30165
|
+
*
|
|
30166
|
+
* @type {number}
|
|
30167
|
+
* @memberof DataTypesSearchRequest
|
|
30168
|
+
*/
|
|
30169
|
+
'search_timeout_ms'?: number;
|
|
30170
|
+
/**
|
|
30171
|
+
* Session ID for session-based personalization
|
|
30172
|
+
* @type {string}
|
|
30173
|
+
* @memberof DataTypesSearchRequest
|
|
30174
|
+
*/
|
|
30175
|
+
'session_id'?: string;
|
|
30176
|
+
/**
|
|
30177
|
+
*
|
|
30178
|
+
* @type {Array<string>}
|
|
30179
|
+
* @memberof DataTypesSearchRequest
|
|
30180
|
+
*/
|
|
30181
|
+
'snippet_fields'?: Array<string>;
|
|
30182
|
+
/**
|
|
30183
|
+
*
|
|
30184
|
+
* @type {number}
|
|
30185
|
+
* @memberof DataTypesSearchRequest
|
|
30186
|
+
*/
|
|
30187
|
+
'snippet_min_len'?: number;
|
|
30188
|
+
/**
|
|
30189
|
+
*
|
|
30190
|
+
* @type {string}
|
|
30191
|
+
* @memberof DataTypesSearchRequest
|
|
30192
|
+
*/
|
|
30193
|
+
'snippet_prefix'?: string;
|
|
30194
|
+
/**
|
|
30195
|
+
*
|
|
30196
|
+
* @type {string}
|
|
30197
|
+
* @memberof DataTypesSearchRequest
|
|
30198
|
+
*/
|
|
30199
|
+
'snippet_suffix'?: string;
|
|
30200
|
+
/**
|
|
30201
|
+
*
|
|
30202
|
+
* @type {number}
|
|
30203
|
+
* @memberof DataTypesSearchRequest
|
|
30204
|
+
*/
|
|
30205
|
+
'snippet_token_limit'?: number;
|
|
30206
|
+
/**
|
|
30207
|
+
*
|
|
30208
|
+
* @type {string}
|
|
30209
|
+
* @memberof DataTypesSearchRequest
|
|
30210
|
+
*/
|
|
30211
|
+
'sort'?: string;
|
|
30212
|
+
/**
|
|
30213
|
+
* IDs of stopword sets to use
|
|
30214
|
+
* @type {Array<string>}
|
|
30215
|
+
* @memberof DataTypesSearchRequest
|
|
30216
|
+
*/
|
|
30217
|
+
'stopword_sets'?: Array<string>;
|
|
30218
|
+
/**
|
|
30219
|
+
*
|
|
30220
|
+
* @type {number}
|
|
30221
|
+
* @memberof DataTypesSearchRequest
|
|
30222
|
+
*/
|
|
30223
|
+
'suggestions_limit'?: number;
|
|
30224
|
+
/**
|
|
30225
|
+
* IDs of synonym sets to use
|
|
30226
|
+
* @type {Array<string>}
|
|
30227
|
+
* @memberof DataTypesSearchRequest
|
|
30228
|
+
*/
|
|
30229
|
+
'synonym_sets'?: Array<string>;
|
|
30230
|
+
/**
|
|
30231
|
+
*
|
|
30232
|
+
* @type {number}
|
|
30233
|
+
* @memberof DataTypesSearchRequest
|
|
30234
|
+
*/
|
|
30235
|
+
'typo_max'?: number;
|
|
30236
|
+
/**
|
|
30237
|
+
*
|
|
30238
|
+
* @type {number}
|
|
30239
|
+
* @memberof DataTypesSearchRequest
|
|
30240
|
+
*/
|
|
30241
|
+
'typo_min_len_1'?: number;
|
|
30242
|
+
/**
|
|
30243
|
+
*
|
|
30244
|
+
* @type {number}
|
|
30245
|
+
* @memberof DataTypesSearchRequest
|
|
30246
|
+
*/
|
|
30247
|
+
'typo_min_len_2'?: number;
|
|
30248
|
+
/**
|
|
30249
|
+
* Personalization fields (optional, backward compatible)
|
|
30250
|
+
* @type {string}
|
|
30251
|
+
* @memberof DataTypesSearchRequest
|
|
30252
|
+
*/
|
|
30253
|
+
'user_id'?: string;
|
|
30254
|
+
/**
|
|
30255
|
+
* If true, returns only display fields instead of full document (used in public API only)
|
|
30256
|
+
* @type {boolean}
|
|
30257
|
+
* @memberof DataTypesSearchRequest
|
|
30258
|
+
*/
|
|
30259
|
+
'widget_mode'?: boolean;
|
|
30260
|
+
}
|
|
30088
30261
|
/**
|
|
30089
30262
|
*
|
|
30090
30263
|
* @export
|
|
@@ -30128,6 +30301,86 @@ export interface DataTypesSearchRequestsGraphResponse {
|
|
|
30128
30301
|
*/
|
|
30129
30302
|
'total_requests'?: number;
|
|
30130
30303
|
}
|
|
30304
|
+
/**
|
|
30305
|
+
*
|
|
30306
|
+
* @export
|
|
30307
|
+
* @interface DataTypesSearchResponse
|
|
30308
|
+
*/
|
|
30309
|
+
export interface DataTypesSearchResponse {
|
|
30310
|
+
/**
|
|
30311
|
+
*
|
|
30312
|
+
* @type {any}
|
|
30313
|
+
* @memberof DataTypesSearchResponse
|
|
30314
|
+
*/
|
|
30315
|
+
'facets'?: any;
|
|
30316
|
+
/**
|
|
30317
|
+
*
|
|
30318
|
+
* @type {number}
|
|
30319
|
+
* @memberof DataTypesSearchResponse
|
|
30320
|
+
*/
|
|
30321
|
+
'page'?: number;
|
|
30322
|
+
/**
|
|
30323
|
+
*
|
|
30324
|
+
* @type {number}
|
|
30325
|
+
* @memberof DataTypesSearchResponse
|
|
30326
|
+
*/
|
|
30327
|
+
'per_page'?: number;
|
|
30328
|
+
/**
|
|
30329
|
+
*
|
|
30330
|
+
* @type {Array<DataTypesSearchResult>}
|
|
30331
|
+
* @memberof DataTypesSearchResponse
|
|
30332
|
+
*/
|
|
30333
|
+
'results'?: Array<DataTypesSearchResult>;
|
|
30334
|
+
/**
|
|
30335
|
+
* Unique search identifier for analytics linking
|
|
30336
|
+
* @type {string}
|
|
30337
|
+
* @memberof DataTypesSearchResponse
|
|
30338
|
+
*/
|
|
30339
|
+
'search_id'?: string;
|
|
30340
|
+
/**
|
|
30341
|
+
* Available sort options based on schema
|
|
30342
|
+
* @type {Array<DataTypesSortOption>}
|
|
30343
|
+
* @memberof DataTypesSearchResponse
|
|
30344
|
+
*/
|
|
30345
|
+
'sort_options'?: Array<DataTypesSortOption>;
|
|
30346
|
+
/**
|
|
30347
|
+
*
|
|
30348
|
+
* @type {Array<DataTypesAutocompleteSuggestion>}
|
|
30349
|
+
* @memberof DataTypesSearchResponse
|
|
30350
|
+
*/
|
|
30351
|
+
'suggestions'?: Array<DataTypesAutocompleteSuggestion>;
|
|
30352
|
+
/**
|
|
30353
|
+
*
|
|
30354
|
+
* @type {number}
|
|
30355
|
+
* @memberof DataTypesSearchResponse
|
|
30356
|
+
*/
|
|
30357
|
+
'total_results'?: number;
|
|
30358
|
+
}
|
|
30359
|
+
/**
|
|
30360
|
+
*
|
|
30361
|
+
* @export
|
|
30362
|
+
* @interface DataTypesSearchResponseWrapper
|
|
30363
|
+
*/
|
|
30364
|
+
export interface DataTypesSearchResponseWrapper {
|
|
30365
|
+
/**
|
|
30366
|
+
*
|
|
30367
|
+
* @type {DataTypesSearchResponse}
|
|
30368
|
+
* @memberof DataTypesSearchResponseWrapper
|
|
30369
|
+
*/
|
|
30370
|
+
'data'?: DataTypesSearchResponse;
|
|
30371
|
+
/**
|
|
30372
|
+
*
|
|
30373
|
+
* @type {string}
|
|
30374
|
+
* @memberof DataTypesSearchResponseWrapper
|
|
30375
|
+
*/
|
|
30376
|
+
'message'?: string;
|
|
30377
|
+
/**
|
|
30378
|
+
*
|
|
30379
|
+
* @type {number}
|
|
30380
|
+
* @memberof DataTypesSearchResponseWrapper
|
|
30381
|
+
*/
|
|
30382
|
+
'status'?: number;
|
|
30383
|
+
}
|
|
30131
30384
|
/**
|
|
30132
30385
|
*
|
|
30133
30386
|
* @export
|
|
@@ -30136,22 +30389,32 @@ export interface DataTypesSearchRequestsGraphResponse {
|
|
|
30136
30389
|
export interface DataTypesSearchResult {
|
|
30137
30390
|
/**
|
|
30138
30391
|
*
|
|
30139
|
-
* @type {
|
|
30392
|
+
* @type {{ [key: string]: any; }}
|
|
30140
30393
|
* @memberof DataTypesSearchResult
|
|
30141
30394
|
*/
|
|
30142
|
-
'
|
|
30395
|
+
'document'?: {
|
|
30396
|
+
[key: string]: any;
|
|
30397
|
+
};
|
|
30143
30398
|
/**
|
|
30144
30399
|
*
|
|
30145
|
-
* @type {
|
|
30400
|
+
* @type {{ [key: string]: any; }}
|
|
30146
30401
|
* @memberof DataTypesSearchResult
|
|
30147
30402
|
*/
|
|
30148
|
-
'
|
|
30403
|
+
'highlight'?: {
|
|
30404
|
+
[key: string]: any;
|
|
30405
|
+
};
|
|
30149
30406
|
/**
|
|
30150
30407
|
*
|
|
30151
30408
|
* @type {string}
|
|
30152
30409
|
* @memberof DataTypesSearchResult
|
|
30153
30410
|
*/
|
|
30154
|
-
'
|
|
30411
|
+
'id'?: string;
|
|
30412
|
+
/**
|
|
30413
|
+
*
|
|
30414
|
+
* @type {number}
|
|
30415
|
+
* @memberof DataTypesSearchResult
|
|
30416
|
+
*/
|
|
30417
|
+
'score'?: number;
|
|
30155
30418
|
}
|
|
30156
30419
|
/**
|
|
30157
30420
|
*
|
|
@@ -30161,10 +30424,10 @@ export interface DataTypesSearchResult {
|
|
|
30161
30424
|
export interface DataTypesSearchResultResponse {
|
|
30162
30425
|
/**
|
|
30163
30426
|
*
|
|
30164
|
-
* @type {
|
|
30427
|
+
* @type {DataTypesConnectorSearchResult}
|
|
30165
30428
|
* @memberof DataTypesSearchResultResponse
|
|
30166
30429
|
*/
|
|
30167
|
-
'data'?:
|
|
30430
|
+
'data'?: DataTypesConnectorSearchResult;
|
|
30168
30431
|
/**
|
|
30169
30432
|
*
|
|
30170
30433
|
* @type {string}
|
|
@@ -31689,6 +31952,409 @@ export interface DataTypesStoreAccessWithDetails {
|
|
|
31689
31952
|
*/
|
|
31690
31953
|
'user_id'?: number;
|
|
31691
31954
|
}
|
|
31955
|
+
/**
|
|
31956
|
+
*
|
|
31957
|
+
* @export
|
|
31958
|
+
* @interface DataTypesStoreConfigUpdateRequest
|
|
31959
|
+
*/
|
|
31960
|
+
export interface DataTypesStoreConfigUpdateRequest {
|
|
31961
|
+
/**
|
|
31962
|
+
* Optional: If set, updates the public search flag
|
|
31963
|
+
* @type {boolean}
|
|
31964
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
31965
|
+
*/
|
|
31966
|
+
'allow_public_search'?: boolean;
|
|
31967
|
+
/**
|
|
31968
|
+
*
|
|
31969
|
+
* @type {string}
|
|
31970
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
31971
|
+
*/
|
|
31972
|
+
'collection_alias'?: string;
|
|
31973
|
+
/**
|
|
31974
|
+
*
|
|
31975
|
+
* @type {string}
|
|
31976
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
31977
|
+
*/
|
|
31978
|
+
'collection_name'?: string;
|
|
31979
|
+
/**
|
|
31980
|
+
*
|
|
31981
|
+
* @type {string}
|
|
31982
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
31983
|
+
*/
|
|
31984
|
+
'default_sorting_field'?: string;
|
|
31985
|
+
/**
|
|
31986
|
+
* Default stopwords set ID to use in searches
|
|
31987
|
+
* @type {string}
|
|
31988
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
31989
|
+
*/
|
|
31990
|
+
'default_stopwords_set'?: string;
|
|
31991
|
+
/**
|
|
31992
|
+
*
|
|
31993
|
+
* @type {number}
|
|
31994
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
31995
|
+
*/
|
|
31996
|
+
'drop_tokens_threshold'?: number;
|
|
31997
|
+
/**
|
|
31998
|
+
* Dropdown recommendations configuration
|
|
31999
|
+
* @type {DataTypesDropdownRecommendationsConfig}
|
|
32000
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32001
|
+
*/
|
|
32002
|
+
'dropdown_recommendations_config'?: DataTypesDropdownRecommendationsConfig;
|
|
32003
|
+
/**
|
|
32004
|
+
*
|
|
32005
|
+
* @type {string}
|
|
32006
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32007
|
+
*/
|
|
32008
|
+
'embed'?: string;
|
|
32009
|
+
/**
|
|
32010
|
+
*
|
|
32011
|
+
* @type {boolean}
|
|
32012
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32013
|
+
*/
|
|
32014
|
+
'enable_autocomplete'?: boolean;
|
|
32015
|
+
/**
|
|
32016
|
+
*
|
|
32017
|
+
* @type {boolean}
|
|
32018
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32019
|
+
*/
|
|
32020
|
+
'enable_highlight'?: boolean;
|
|
32021
|
+
/**
|
|
32022
|
+
*
|
|
32023
|
+
* @type {boolean}
|
|
32024
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32025
|
+
*/
|
|
32026
|
+
'enable_overrides'?: boolean;
|
|
32027
|
+
/**
|
|
32028
|
+
*
|
|
32029
|
+
* @type {boolean}
|
|
32030
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32031
|
+
*/
|
|
32032
|
+
'enable_smart_autocomplete'?: boolean;
|
|
32033
|
+
/**
|
|
32034
|
+
* Enable stemming on search collections
|
|
32035
|
+
* @type {boolean}
|
|
32036
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32037
|
+
*/
|
|
32038
|
+
'enable_stemming'?: boolean;
|
|
32039
|
+
/**
|
|
32040
|
+
*
|
|
32041
|
+
* @type {boolean}
|
|
32042
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32043
|
+
*/
|
|
32044
|
+
'enable_typo_highlight'?: boolean;
|
|
32045
|
+
/**
|
|
32046
|
+
*
|
|
32047
|
+
* @type {boolean}
|
|
32048
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32049
|
+
*/
|
|
32050
|
+
'enable_typo_tolerance'?: boolean;
|
|
32051
|
+
/**
|
|
32052
|
+
* No omitempty to preserve empty arrays
|
|
32053
|
+
* @type {Array<string>}
|
|
32054
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32055
|
+
*/
|
|
32056
|
+
'exclude_fields'?: Array<string>;
|
|
32057
|
+
/**
|
|
32058
|
+
*
|
|
32059
|
+
* @type {boolean}
|
|
32060
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32061
|
+
*/
|
|
32062
|
+
'exhaustive_search'?: boolean;
|
|
32063
|
+
/**
|
|
32064
|
+
* No omitempty to preserve empty arrays
|
|
32065
|
+
* @type {Array<string>}
|
|
32066
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32067
|
+
*/
|
|
32068
|
+
'facet_by'?: Array<string>;
|
|
32069
|
+
/**
|
|
32070
|
+
*
|
|
32071
|
+
* @type {string}
|
|
32072
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32073
|
+
*/
|
|
32074
|
+
'facet_query'?: string;
|
|
32075
|
+
/**
|
|
32076
|
+
* No omitempty to preserve empty arrays
|
|
32077
|
+
* @type {Array<DataTypesFacetRangeConfig>}
|
|
32078
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32079
|
+
*/
|
|
32080
|
+
'facet_ranges'?: Array<DataTypesFacetRangeConfig>;
|
|
32081
|
+
/**
|
|
32082
|
+
*
|
|
32083
|
+
* @type {string}
|
|
32084
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32085
|
+
*/
|
|
32086
|
+
'filter_by'?: string;
|
|
32087
|
+
/**
|
|
32088
|
+
*
|
|
32089
|
+
* @type {string}
|
|
32090
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32091
|
+
*/
|
|
32092
|
+
'group_by'?: string;
|
|
32093
|
+
/**
|
|
32094
|
+
*
|
|
32095
|
+
* @type {number}
|
|
32096
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32097
|
+
*/
|
|
32098
|
+
'group_limit'?: number;
|
|
32099
|
+
/**
|
|
32100
|
+
* No omitempty to preserve empty arrays
|
|
32101
|
+
* @type {Array<string>}
|
|
32102
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32103
|
+
*/
|
|
32104
|
+
'hidden_facet_fields'?: Array<string>;
|
|
32105
|
+
/**
|
|
32106
|
+
* No omitempty to preserve empty arrays
|
|
32107
|
+
* @type {Array<string>}
|
|
32108
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32109
|
+
*/
|
|
32110
|
+
'hidden_fields'?: Array<string>;
|
|
32111
|
+
/**
|
|
32112
|
+
* No omitempty to preserve empty arrays
|
|
32113
|
+
* @type {Array<string>}
|
|
32114
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32115
|
+
*/
|
|
32116
|
+
'hidden_filter_fields'?: Array<string>;
|
|
32117
|
+
/**
|
|
32118
|
+
*
|
|
32119
|
+
* @type {number}
|
|
32120
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32121
|
+
*/
|
|
32122
|
+
'highlight_affix_num_tokens'?: number;
|
|
32123
|
+
/**
|
|
32124
|
+
*
|
|
32125
|
+
* @type {string}
|
|
32126
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32127
|
+
*/
|
|
32128
|
+
'highlight_end_tag'?: string;
|
|
32129
|
+
/**
|
|
32130
|
+
* No omitempty to preserve empty arrays
|
|
32131
|
+
* @type {Array<string>}
|
|
32132
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32133
|
+
*/
|
|
32134
|
+
'highlight_fields'?: Array<string>;
|
|
32135
|
+
/**
|
|
32136
|
+
* No omitempty to preserve empty arrays
|
|
32137
|
+
* @type {Array<string>}
|
|
32138
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32139
|
+
*/
|
|
32140
|
+
'highlight_full_fields'?: Array<string>;
|
|
32141
|
+
/**
|
|
32142
|
+
*
|
|
32143
|
+
* @type {string}
|
|
32144
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32145
|
+
*/
|
|
32146
|
+
'highlight_start_tag'?: string;
|
|
32147
|
+
/**
|
|
32148
|
+
*
|
|
32149
|
+
* @type {string}
|
|
32150
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32151
|
+
*/
|
|
32152
|
+
'image_url'?: string;
|
|
32153
|
+
/**
|
|
32154
|
+
* No omitempty to preserve empty arrays
|
|
32155
|
+
* @type {Array<string>}
|
|
32156
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32157
|
+
*/
|
|
32158
|
+
'include_fields'?: Array<string>;
|
|
32159
|
+
/**
|
|
32160
|
+
* \"always\", \"fallback\", or \"off\"
|
|
32161
|
+
* @type {string}
|
|
32162
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32163
|
+
*/
|
|
32164
|
+
'infix'?: string;
|
|
32165
|
+
/**
|
|
32166
|
+
*
|
|
32167
|
+
* @type {string}
|
|
32168
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32169
|
+
*/
|
|
32170
|
+
'locale'?: string;
|
|
32171
|
+
/**
|
|
32172
|
+
*
|
|
32173
|
+
* @type {number}
|
|
32174
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32175
|
+
*/
|
|
32176
|
+
'max_candidates'?: number;
|
|
32177
|
+
/**
|
|
32178
|
+
*
|
|
32179
|
+
* @type {number}
|
|
32180
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32181
|
+
*/
|
|
32182
|
+
'max_facet_values'?: number;
|
|
32183
|
+
/**
|
|
32184
|
+
*
|
|
32185
|
+
* @type {number}
|
|
32186
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32187
|
+
*/
|
|
32188
|
+
'min_len_1typo'?: number;
|
|
32189
|
+
/**
|
|
32190
|
+
*
|
|
32191
|
+
* @type {number}
|
|
32192
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32193
|
+
*/
|
|
32194
|
+
'min_len_2typo'?: number;
|
|
32195
|
+
/**
|
|
32196
|
+
*
|
|
32197
|
+
* @type {number}
|
|
32198
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32199
|
+
*/
|
|
32200
|
+
'num_typos'?: number;
|
|
32201
|
+
/**
|
|
32202
|
+
*
|
|
32203
|
+
* @type {number}
|
|
32204
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32205
|
+
*/
|
|
32206
|
+
'page'?: number;
|
|
32207
|
+
/**
|
|
32208
|
+
*
|
|
32209
|
+
* @type {number}
|
|
32210
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32211
|
+
*/
|
|
32212
|
+
'per_page'?: number;
|
|
32213
|
+
/**
|
|
32214
|
+
*
|
|
32215
|
+
* @type {string}
|
|
32216
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32217
|
+
*/
|
|
32218
|
+
'prefix'?: string;
|
|
32219
|
+
/**
|
|
32220
|
+
*
|
|
32221
|
+
* @type {string}
|
|
32222
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32223
|
+
*/
|
|
32224
|
+
'preset'?: string;
|
|
32225
|
+
/**
|
|
32226
|
+
*
|
|
32227
|
+
* @type {string}
|
|
32228
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32229
|
+
*/
|
|
32230
|
+
'primary_text'?: string;
|
|
32231
|
+
/**
|
|
32232
|
+
*
|
|
32233
|
+
* @type {boolean}
|
|
32234
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32235
|
+
*/
|
|
32236
|
+
'prioritize_exact_match'?: boolean;
|
|
32237
|
+
/**
|
|
32238
|
+
* Required: Query string
|
|
32239
|
+
* @type {string}
|
|
32240
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32241
|
+
*/
|
|
32242
|
+
'q'?: string;
|
|
32243
|
+
/**
|
|
32244
|
+
* Required: Array of search fields
|
|
32245
|
+
* @type {Array<string>}
|
|
32246
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32247
|
+
*/
|
|
32248
|
+
'query_by'?: Array<string>;
|
|
32249
|
+
/**
|
|
32250
|
+
* Optional: Relative field weights as array (no omitempty to preserve empty arrays)
|
|
32251
|
+
* @type {Array<number>}
|
|
32252
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32253
|
+
*/
|
|
32254
|
+
'query_by_weights'?: Array<number>;
|
|
32255
|
+
/**
|
|
32256
|
+
* Query suggestions configuration
|
|
32257
|
+
* @type {DataTypesQuerySuggestionsConfig}
|
|
32258
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32259
|
+
*/
|
|
32260
|
+
'query_suggestions_config'?: DataTypesQuerySuggestionsConfig;
|
|
32261
|
+
/**
|
|
32262
|
+
*
|
|
32263
|
+
* @type {boolean}
|
|
32264
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32265
|
+
*/
|
|
32266
|
+
'query_syntax'?: boolean;
|
|
32267
|
+
/**
|
|
32268
|
+
*
|
|
32269
|
+
* @type {number}
|
|
32270
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32271
|
+
*/
|
|
32272
|
+
'search_cutoff_ms'?: number;
|
|
32273
|
+
/**
|
|
32274
|
+
* \"text\", \"vector\", \"hybrid\"
|
|
32275
|
+
* @type {string}
|
|
32276
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32277
|
+
*/
|
|
32278
|
+
'search_strategy'?: string;
|
|
32279
|
+
/**
|
|
32280
|
+
*
|
|
32281
|
+
* @type {string}
|
|
32282
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32283
|
+
*/
|
|
32284
|
+
'secondary_text'?: string;
|
|
32285
|
+
/**
|
|
32286
|
+
*
|
|
32287
|
+
* @type {boolean}
|
|
32288
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32289
|
+
*/
|
|
32290
|
+
'semantic_ranker'?: boolean;
|
|
32291
|
+
/**
|
|
32292
|
+
*
|
|
32293
|
+
* @type {number}
|
|
32294
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32295
|
+
*/
|
|
32296
|
+
'snippet_threshold'?: number;
|
|
32297
|
+
/**
|
|
32298
|
+
* No omitempty to preserve empty arrays
|
|
32299
|
+
* @type {Array<DataTypesSortField>}
|
|
32300
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32301
|
+
*/
|
|
32302
|
+
'sort_by'?: Array<DataTypesSortField>;
|
|
32303
|
+
/**
|
|
32304
|
+
* Locale for stemming (e.g., \"en\", \"fr\", \"de\")
|
|
32305
|
+
* @type {string}
|
|
32306
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32307
|
+
*/
|
|
32308
|
+
'stemming_locale'?: string;
|
|
32309
|
+
/**
|
|
32310
|
+
* Flattened stopwords and synonyms fields
|
|
32311
|
+
* @type {Array<DataTypesStopwordEntry>}
|
|
32312
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32313
|
+
*/
|
|
32314
|
+
'stopwords'?: Array<DataTypesStopwordEntry>;
|
|
32315
|
+
/**
|
|
32316
|
+
* No omitempty to preserve empty arrays
|
|
32317
|
+
* @type {Array<string>}
|
|
32318
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32319
|
+
*/
|
|
32320
|
+
'symbols_to_index'?: Array<string>;
|
|
32321
|
+
/**
|
|
32322
|
+
* No omitempty to preserve empty arrays
|
|
32323
|
+
* @type {Array<DataTypesSynonymEntry>}
|
|
32324
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32325
|
+
*/
|
|
32326
|
+
'synonyms'?: Array<DataTypesSynonymEntry>;
|
|
32327
|
+
/**
|
|
32328
|
+
*
|
|
32329
|
+
* @type {string}
|
|
32330
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32331
|
+
*/
|
|
32332
|
+
'tertiary_text'?: string;
|
|
32333
|
+
/**
|
|
32334
|
+
* Optional: Search-only scoped API key
|
|
32335
|
+
* @type {string}
|
|
32336
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32337
|
+
*/
|
|
32338
|
+
'token'?: string;
|
|
32339
|
+
/**
|
|
32340
|
+
* No omitempty to preserve empty arrays
|
|
32341
|
+
* @type {Array<string>}
|
|
32342
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32343
|
+
*/
|
|
32344
|
+
'token_separators'?: Array<string>;
|
|
32345
|
+
/**
|
|
32346
|
+
*
|
|
32347
|
+
* @type {boolean}
|
|
32348
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32349
|
+
*/
|
|
32350
|
+
'use_cache'?: boolean;
|
|
32351
|
+
/**
|
|
32352
|
+
*
|
|
32353
|
+
* @type {string}
|
|
32354
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32355
|
+
*/
|
|
32356
|
+
'vector_query'?: string;
|
|
32357
|
+
}
|
|
31692
32358
|
/**
|
|
31693
32359
|
*
|
|
31694
32360
|
* @export
|
|
@@ -31873,6 +32539,49 @@ export interface DataTypesStoreCredentialsResponse {
|
|
|
31873
32539
|
*/
|
|
31874
32540
|
'status'?: number;
|
|
31875
32541
|
}
|
|
32542
|
+
/**
|
|
32543
|
+
*
|
|
32544
|
+
* @export
|
|
32545
|
+
* @interface DataTypesStoreInfoResponse
|
|
32546
|
+
*/
|
|
32547
|
+
export interface DataTypesStoreInfoResponse {
|
|
32548
|
+
/**
|
|
32549
|
+
*
|
|
32550
|
+
* @type {string}
|
|
32551
|
+
* @memberof DataTypesStoreInfoResponse
|
|
32552
|
+
*/
|
|
32553
|
+
'createdAt'?: string;
|
|
32554
|
+
/**
|
|
32555
|
+
*
|
|
32556
|
+
* @type {boolean}
|
|
32557
|
+
* @memberof DataTypesStoreInfoResponse
|
|
32558
|
+
*/
|
|
32559
|
+
'isActive'?: boolean;
|
|
32560
|
+
/**
|
|
32561
|
+
*
|
|
32562
|
+
* @type {string}
|
|
32563
|
+
* @memberof DataTypesStoreInfoResponse
|
|
32564
|
+
*/
|
|
32565
|
+
'location'?: string;
|
|
32566
|
+
/**
|
|
32567
|
+
*
|
|
32568
|
+
* @type {number}
|
|
32569
|
+
* @memberof DataTypesStoreInfoResponse
|
|
32570
|
+
*/
|
|
32571
|
+
'storeId'?: number;
|
|
32572
|
+
/**
|
|
32573
|
+
*
|
|
32574
|
+
* @type {string}
|
|
32575
|
+
* @memberof DataTypesStoreInfoResponse
|
|
32576
|
+
*/
|
|
32577
|
+
'storeName'?: string;
|
|
32578
|
+
/**
|
|
32579
|
+
*
|
|
32580
|
+
* @type {string}
|
|
32581
|
+
* @memberof DataTypesStoreInfoResponse
|
|
32582
|
+
*/
|
|
32583
|
+
'xStoreId'?: string;
|
|
32584
|
+
}
|
|
31876
32585
|
/**
|
|
31877
32586
|
*
|
|
31878
32587
|
* @export
|
|
@@ -45114,7 +45823,7 @@ export declare const AnalyticsEventsApiFp: (configuration?: Configuration) => {
|
|
|
45114
45823
|
* @param {*} [options] Override http request option.
|
|
45115
45824
|
* @throws {RequiredError}
|
|
45116
45825
|
*/
|
|
45117
|
-
analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
45826
|
+
analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesBatchEventData>>;
|
|
45118
45827
|
/**
|
|
45119
45828
|
* Retrieve analytics configuration including supported event types, batch limits, and funnel stages for client integration
|
|
45120
45829
|
* @summary Get Analytics Configuration
|
|
@@ -45123,7 +45832,7 @@ export declare const AnalyticsEventsApiFp: (configuration?: Configuration) => {
|
|
|
45123
45832
|
* @param {*} [options] Override http request option.
|
|
45124
45833
|
* @throws {RequiredError}
|
|
45125
45834
|
*/
|
|
45126
|
-
analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
45835
|
+
analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesAnalyticsConfigData>>;
|
|
45127
45836
|
/**
|
|
45128
45837
|
* Submit a single analytics event for tracking user interactions, search behavior, and conversions
|
|
45129
45838
|
* @summary Submit Analytics Event
|
|
@@ -45133,7 +45842,7 @@ export declare const AnalyticsEventsApiFp: (configuration?: Configuration) => {
|
|
|
45133
45842
|
* @param {*} [options] Override http request option.
|
|
45134
45843
|
* @throws {RequiredError}
|
|
45135
45844
|
*/
|
|
45136
|
-
analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
45845
|
+
analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesEventSubmitData>>;
|
|
45137
45846
|
/**
|
|
45138
45847
|
* Retrieve the complete event schema including required and optional fields, data types, and validation rules
|
|
45139
45848
|
* @summary Get Event Schema
|
|
@@ -45152,7 +45861,7 @@ export declare const AnalyticsEventsApiFp: (configuration?: Configuration) => {
|
|
|
45152
45861
|
* @param {*} [options] Override http request option.
|
|
45153
45862
|
* @throws {RequiredError}
|
|
45154
45863
|
*/
|
|
45155
|
-
analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
45864
|
+
analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesEventValidateData>>;
|
|
45156
45865
|
};
|
|
45157
45866
|
/**
|
|
45158
45867
|
* AnalyticsEventsApi - factory interface
|
|
@@ -45168,7 +45877,7 @@ export declare const AnalyticsEventsApiFactory: (configuration?: Configuration,
|
|
|
45168
45877
|
* @param {*} [options] Override http request option.
|
|
45169
45878
|
* @throws {RequiredError}
|
|
45170
45879
|
*/
|
|
45171
|
-
analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
45880
|
+
analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesBatchEventData>;
|
|
45172
45881
|
/**
|
|
45173
45882
|
* Retrieve analytics configuration including supported event types, batch limits, and funnel stages for client integration
|
|
45174
45883
|
* @summary Get Analytics Configuration
|
|
@@ -45177,7 +45886,7 @@ export declare const AnalyticsEventsApiFactory: (configuration?: Configuration,
|
|
|
45177
45886
|
* @param {*} [options] Override http request option.
|
|
45178
45887
|
* @throws {RequiredError}
|
|
45179
45888
|
*/
|
|
45180
|
-
analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
45889
|
+
analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesAnalyticsConfigData>;
|
|
45181
45890
|
/**
|
|
45182
45891
|
* Submit a single analytics event for tracking user interactions, search behavior, and conversions
|
|
45183
45892
|
* @summary Submit Analytics Event
|
|
@@ -45187,7 +45896,7 @@ export declare const AnalyticsEventsApiFactory: (configuration?: Configuration,
|
|
|
45187
45896
|
* @param {*} [options] Override http request option.
|
|
45188
45897
|
* @throws {RequiredError}
|
|
45189
45898
|
*/
|
|
45190
|
-
analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
45899
|
+
analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesEventSubmitData>;
|
|
45191
45900
|
/**
|
|
45192
45901
|
* Retrieve the complete event schema including required and optional fields, data types, and validation rules
|
|
45193
45902
|
* @summary Get Event Schema
|
|
@@ -45206,7 +45915,7 @@ export declare const AnalyticsEventsApiFactory: (configuration?: Configuration,
|
|
|
45206
45915
|
* @param {*} [options] Override http request option.
|
|
45207
45916
|
* @throws {RequiredError}
|
|
45208
45917
|
*/
|
|
45209
|
-
analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
45918
|
+
analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesEventValidateData>;
|
|
45210
45919
|
};
|
|
45211
45920
|
/**
|
|
45212
45921
|
* AnalyticsEventsApi - object-oriented interface
|
|
@@ -45225,7 +45934,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
45225
45934
|
* @throws {RequiredError}
|
|
45226
45935
|
* @memberof AnalyticsEventsApi
|
|
45227
45936
|
*/
|
|
45228
|
-
analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
45937
|
+
analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesBatchEventData, any, {}>>;
|
|
45229
45938
|
/**
|
|
45230
45939
|
* Retrieve analytics configuration including supported event types, batch limits, and funnel stages for client integration
|
|
45231
45940
|
* @summary Get Analytics Configuration
|
|
@@ -45235,7 +45944,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
45235
45944
|
* @throws {RequiredError}
|
|
45236
45945
|
* @memberof AnalyticsEventsApi
|
|
45237
45946
|
*/
|
|
45238
|
-
analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
45947
|
+
analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesAnalyticsConfigData, any, {}>>;
|
|
45239
45948
|
/**
|
|
45240
45949
|
* Submit a single analytics event for tracking user interactions, search behavior, and conversions
|
|
45241
45950
|
* @summary Submit Analytics Event
|
|
@@ -45246,7 +45955,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
45246
45955
|
* @throws {RequiredError}
|
|
45247
45956
|
* @memberof AnalyticsEventsApi
|
|
45248
45957
|
*/
|
|
45249
|
-
analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
45958
|
+
analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesEventSubmitData, any, {}>>;
|
|
45250
45959
|
/**
|
|
45251
45960
|
* Retrieve the complete event schema including required and optional fields, data types, and validation rules
|
|
45252
45961
|
* @summary Get Event Schema
|
|
@@ -45267,7 +45976,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
45267
45976
|
* @throws {RequiredError}
|
|
45268
45977
|
* @memberof AnalyticsEventsApi
|
|
45269
45978
|
*/
|
|
45270
|
-
analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
45979
|
+
analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesEventValidateData, any, {}>>;
|
|
45271
45980
|
}
|
|
45272
45981
|
/**
|
|
45273
45982
|
* AnalyticsFunnelsApi - axios parameter creator
|
|
@@ -63355,14 +64064,14 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
63355
64064
|
* @summary Search (POST)
|
|
63356
64065
|
* @param {string} xStoreid Store ID (from dashboard)
|
|
63357
64066
|
* @param {string} xStoresecret Store read secret (from dashboard)
|
|
63358
|
-
* @param {
|
|
64067
|
+
* @param {DataTypesSearchRequest} dataTypesSearchRequest Search query, filters, pagination, and options
|
|
63359
64068
|
* @param {string} [xUserId] User ID for personalization
|
|
63360
64069
|
* @param {string} [xAnonId] Anonymous user ID for personalization
|
|
63361
64070
|
* @param {string} [xSessionId] Session ID for personalization
|
|
63362
64071
|
* @param {*} [options] Override http request option.
|
|
63363
64072
|
* @throws {RequiredError}
|
|
63364
64073
|
*/
|
|
63365
|
-
v1SearchPost: (xStoreid: string, xStoresecret: string,
|
|
64074
|
+
v1SearchPost: (xStoreid: string, xStoresecret: string, dataTypesSearchRequest: DataTypesSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
63366
64075
|
};
|
|
63367
64076
|
/**
|
|
63368
64077
|
* SearchApi - functional programming interface
|
|
@@ -63470,20 +64179,20 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
|
63470
64179
|
* @param {*} [options] Override http request option.
|
|
63471
64180
|
* @throws {RequiredError}
|
|
63472
64181
|
*/
|
|
63473
|
-
v1SearchGet(xStoreid: string, xStoresecret: string, q: string, xUserId?: string, xAnonId?: string, xSessionId?: string, page?: number, perPage?: number, sortBy?: string, filterBy?: string, facetBy?: string, maxFacetValues?: number, widgetMode?: boolean, includeSuggestions?: boolean, suggestionsLimit?: number, analyticsTags?: string, stopwordSets?: string, synonymSets?: string, searchFields?: string, returnFields?: string, omitFields?: string, snippetFields?: string, fullSnippetFields?: string, fieldWeights?: string, groupField?: string, groupSize?: number, snippetPrefix?: string, snippetSuffix?: string, snippetTokenLimit?: number, snippetMinLen?: number, includeSnippets?: boolean, prefixMode?: string, infixMode?: string, typoMax?: number, typoMinLen1?: number, typoMinLen2?: number, searchTimeoutMs?: number, requireAllTerms?: boolean, exactMatchBoost?: boolean, cacheResults?: boolean, applyRules?: boolean, presetName?: string, facetSearchText?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
64182
|
+
v1SearchGet(xStoreid: string, xStoresecret: string, q: string, xUserId?: string, xAnonId?: string, xSessionId?: string, page?: number, perPage?: number, sortBy?: string, filterBy?: string, facetBy?: string, maxFacetValues?: number, widgetMode?: boolean, includeSuggestions?: boolean, suggestionsLimit?: number, analyticsTags?: string, stopwordSets?: string, synonymSets?: string, searchFields?: string, returnFields?: string, omitFields?: string, snippetFields?: string, fullSnippetFields?: string, fieldWeights?: string, groupField?: string, groupSize?: number, snippetPrefix?: string, snippetSuffix?: string, snippetTokenLimit?: number, snippetMinLen?: number, includeSnippets?: boolean, prefixMode?: string, infixMode?: string, typoMax?: number, typoMinLen1?: number, typoMinLen2?: number, searchTimeoutMs?: number, requireAllTerms?: boolean, exactMatchBoost?: boolean, cacheResults?: boolean, applyRules?: boolean, presetName?: string, facetSearchText?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSearchResponseWrapper>>;
|
|
63474
64183
|
/**
|
|
63475
64184
|
* Run a full-text search for your store. **Authentication:** Send `x-storeid` and `x-storesecret` (from Seekora dashboard). Optional: `x-user-id`, `x-anon-id`, `x-session-id` for personalization. Supports pagination, filters, facets, sorting, snippets, and autocomplete suggestions. Use `widget_mode: true` for lightweight widget results.
|
|
63476
64185
|
* @summary Search (POST)
|
|
63477
64186
|
* @param {string} xStoreid Store ID (from dashboard)
|
|
63478
64187
|
* @param {string} xStoresecret Store read secret (from dashboard)
|
|
63479
|
-
* @param {
|
|
64188
|
+
* @param {DataTypesSearchRequest} dataTypesSearchRequest Search query, filters, pagination, and options
|
|
63480
64189
|
* @param {string} [xUserId] User ID for personalization
|
|
63481
64190
|
* @param {string} [xAnonId] Anonymous user ID for personalization
|
|
63482
64191
|
* @param {string} [xSessionId] Session ID for personalization
|
|
63483
64192
|
* @param {*} [options] Override http request option.
|
|
63484
64193
|
* @throws {RequiredError}
|
|
63485
64194
|
*/
|
|
63486
|
-
v1SearchPost(xStoreid: string, xStoresecret: string,
|
|
64195
|
+
v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesSearchRequest: DataTypesSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSearchResponseWrapper>>;
|
|
63487
64196
|
};
|
|
63488
64197
|
/**
|
|
63489
64198
|
* SearchApi - factory interface
|
|
@@ -63591,20 +64300,20 @@ export declare const SearchApiFactory: (configuration?: Configuration, basePath?
|
|
|
63591
64300
|
* @param {*} [options] Override http request option.
|
|
63592
64301
|
* @throws {RequiredError}
|
|
63593
64302
|
*/
|
|
63594
|
-
v1SearchGet(xStoreid: string, xStoresecret: string, q: string, xUserId?: string, xAnonId?: string, xSessionId?: string, page?: number, perPage?: number, sortBy?: string, filterBy?: string, facetBy?: string, maxFacetValues?: number, widgetMode?: boolean, includeSuggestions?: boolean, suggestionsLimit?: number, analyticsTags?: string, stopwordSets?: string, synonymSets?: string, searchFields?: string, returnFields?: string, omitFields?: string, snippetFields?: string, fullSnippetFields?: string, fieldWeights?: string, groupField?: string, groupSize?: number, snippetPrefix?: string, snippetSuffix?: string, snippetTokenLimit?: number, snippetMinLen?: number, includeSnippets?: boolean, prefixMode?: string, infixMode?: string, typoMax?: number, typoMinLen1?: number, typoMinLen2?: number, searchTimeoutMs?: number, requireAllTerms?: boolean, exactMatchBoost?: boolean, cacheResults?: boolean, applyRules?: boolean, presetName?: string, facetSearchText?: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
64303
|
+
v1SearchGet(xStoreid: string, xStoresecret: string, q: string, xUserId?: string, xAnonId?: string, xSessionId?: string, page?: number, perPage?: number, sortBy?: string, filterBy?: string, facetBy?: string, maxFacetValues?: number, widgetMode?: boolean, includeSuggestions?: boolean, suggestionsLimit?: number, analyticsTags?: string, stopwordSets?: string, synonymSets?: string, searchFields?: string, returnFields?: string, omitFields?: string, snippetFields?: string, fullSnippetFields?: string, fieldWeights?: string, groupField?: string, groupSize?: number, snippetPrefix?: string, snippetSuffix?: string, snippetTokenLimit?: number, snippetMinLen?: number, includeSnippets?: boolean, prefixMode?: string, infixMode?: string, typoMax?: number, typoMinLen1?: number, typoMinLen2?: number, searchTimeoutMs?: number, requireAllTerms?: boolean, exactMatchBoost?: boolean, cacheResults?: boolean, applyRules?: boolean, presetName?: string, facetSearchText?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSearchResponseWrapper>;
|
|
63595
64304
|
/**
|
|
63596
64305
|
* Run a full-text search for your store. **Authentication:** Send `x-storeid` and `x-storesecret` (from Seekora dashboard). Optional: `x-user-id`, `x-anon-id`, `x-session-id` for personalization. Supports pagination, filters, facets, sorting, snippets, and autocomplete suggestions. Use `widget_mode: true` for lightweight widget results.
|
|
63597
64306
|
* @summary Search (POST)
|
|
63598
64307
|
* @param {string} xStoreid Store ID (from dashboard)
|
|
63599
64308
|
* @param {string} xStoresecret Store read secret (from dashboard)
|
|
63600
|
-
* @param {
|
|
64309
|
+
* @param {DataTypesSearchRequest} dataTypesSearchRequest Search query, filters, pagination, and options
|
|
63601
64310
|
* @param {string} [xUserId] User ID for personalization
|
|
63602
64311
|
* @param {string} [xAnonId] Anonymous user ID for personalization
|
|
63603
64312
|
* @param {string} [xSessionId] Session ID for personalization
|
|
63604
64313
|
* @param {*} [options] Override http request option.
|
|
63605
64314
|
* @throws {RequiredError}
|
|
63606
64315
|
*/
|
|
63607
|
-
v1SearchPost(xStoreid: string, xStoresecret: string,
|
|
64316
|
+
v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesSearchRequest: DataTypesSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSearchResponseWrapper>;
|
|
63608
64317
|
};
|
|
63609
64318
|
/**
|
|
63610
64319
|
* SearchApi - object-oriented interface
|
|
@@ -63721,13 +64430,13 @@ export declare class SearchApi extends BaseAPI {
|
|
|
63721
64430
|
* @throws {RequiredError}
|
|
63722
64431
|
* @memberof SearchApi
|
|
63723
64432
|
*/
|
|
63724
|
-
v1SearchGet(xStoreid: string, xStoresecret: string, q: string, xUserId?: string, xAnonId?: string, xSessionId?: string, page?: number, perPage?: number, sortBy?: string, filterBy?: string, facetBy?: string, maxFacetValues?: number, widgetMode?: boolean, includeSuggestions?: boolean, suggestionsLimit?: number, analyticsTags?: string, stopwordSets?: string, synonymSets?: string, searchFields?: string, returnFields?: string, omitFields?: string, snippetFields?: string, fullSnippetFields?: string, fieldWeights?: string, groupField?: string, groupSize?: number, snippetPrefix?: string, snippetSuffix?: string, snippetTokenLimit?: number, snippetMinLen?: number, includeSnippets?: boolean, prefixMode?: string, infixMode?: string, typoMax?: number, typoMinLen1?: number, typoMinLen2?: number, searchTimeoutMs?: number, requireAllTerms?: boolean, exactMatchBoost?: boolean, cacheResults?: boolean, applyRules?: boolean, presetName?: string, facetSearchText?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
64433
|
+
v1SearchGet(xStoreid: string, xStoresecret: string, q: string, xUserId?: string, xAnonId?: string, xSessionId?: string, page?: number, perPage?: number, sortBy?: string, filterBy?: string, facetBy?: string, maxFacetValues?: number, widgetMode?: boolean, includeSuggestions?: boolean, suggestionsLimit?: number, analyticsTags?: string, stopwordSets?: string, synonymSets?: string, searchFields?: string, returnFields?: string, omitFields?: string, snippetFields?: string, fullSnippetFields?: string, fieldWeights?: string, groupField?: string, groupSize?: number, snippetPrefix?: string, snippetSuffix?: string, snippetTokenLimit?: number, snippetMinLen?: number, includeSnippets?: boolean, prefixMode?: string, infixMode?: string, typoMax?: number, typoMinLen1?: number, typoMinLen2?: number, searchTimeoutMs?: number, requireAllTerms?: boolean, exactMatchBoost?: boolean, cacheResults?: boolean, applyRules?: boolean, presetName?: string, facetSearchText?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSearchResponseWrapper, any, {}>>;
|
|
63725
64434
|
/**
|
|
63726
64435
|
* Run a full-text search for your store. **Authentication:** Send `x-storeid` and `x-storesecret` (from Seekora dashboard). Optional: `x-user-id`, `x-anon-id`, `x-session-id` for personalization. Supports pagination, filters, facets, sorting, snippets, and autocomplete suggestions. Use `widget_mode: true` for lightweight widget results.
|
|
63727
64436
|
* @summary Search (POST)
|
|
63728
64437
|
* @param {string} xStoreid Store ID (from dashboard)
|
|
63729
64438
|
* @param {string} xStoresecret Store read secret (from dashboard)
|
|
63730
|
-
* @param {
|
|
64439
|
+
* @param {DataTypesSearchRequest} dataTypesSearchRequest Search query, filters, pagination, and options
|
|
63731
64440
|
* @param {string} [xUserId] User ID for personalization
|
|
63732
64441
|
* @param {string} [xAnonId] Anonymous user ID for personalization
|
|
63733
64442
|
* @param {string} [xSessionId] Session ID for personalization
|
|
@@ -63735,7 +64444,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
63735
64444
|
* @throws {RequiredError}
|
|
63736
64445
|
* @memberof SearchApi
|
|
63737
64446
|
*/
|
|
63738
|
-
v1SearchPost(xStoreid: string, xStoresecret: string,
|
|
64447
|
+
v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesSearchRequest: DataTypesSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSearchResponseWrapper, any, {}>>;
|
|
63739
64448
|
}
|
|
63740
64449
|
/**
|
|
63741
64450
|
* StopwordsApi - axios parameter creator
|
|
@@ -64732,11 +65441,11 @@ export declare const StoreManagementApiAxiosParamCreator: (configuration?: Confi
|
|
|
64732
65441
|
* Creates a new store with minimal information. Returns store credentials (xStoreID, xStoreSecret, xStoreWriteSecret) immediately. This is a public API for SDK integration. Requires JWT authentication.
|
|
64733
65442
|
* @summary Create Store (Public SDK API)
|
|
64734
65443
|
* @param {string} authorization Bearer JWT Token
|
|
64735
|
-
* @param {
|
|
65444
|
+
* @param {DataTypesCreateStoreRequest} dataTypesCreateStoreRequest Store creation request
|
|
64736
65445
|
* @param {*} [options] Override http request option.
|
|
64737
65446
|
* @throws {RequiredError}
|
|
64738
65447
|
*/
|
|
64739
|
-
apiV1StoresPost: (authorization: string,
|
|
65448
|
+
apiV1StoresPost: (authorization: string, dataTypesCreateStoreRequest: DataTypesCreateStoreRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
64740
65449
|
/**
|
|
64741
65450
|
* Returns search and query-suggestions configuration for the store. **Auth:** `x-storeid` and `x-storesecret`. Path `xStoreID` must match the `x-storeid` header.
|
|
64742
65451
|
* @summary Get store configuration
|
|
@@ -64753,11 +65462,11 @@ export declare const StoreManagementApiAxiosParamCreator: (configuration?: Confi
|
|
|
64753
65462
|
* @param {string} xStoreid Store ID (from dashboard)
|
|
64754
65463
|
* @param {string} xStoreWriteSecret Store write secret
|
|
64755
65464
|
* @param {string} xStoreID Store ID (must match x-storeid header)
|
|
64756
|
-
* @param {
|
|
65465
|
+
* @param {DataTypesStoreConfigUpdateRequest} dataTypesStoreConfigUpdateRequest Fields to update (partial, includes allow_public_search)
|
|
64757
65466
|
* @param {*} [options] Override http request option.
|
|
64758
65467
|
* @throws {RequiredError}
|
|
64759
65468
|
*/
|
|
64760
|
-
apiV1StoresXStoreIDConfigPut: (xStoreid: string, xStoreWriteSecret: string, xStoreID: string,
|
|
65469
|
+
apiV1StoresXStoreIDConfigPut: (xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesStoreConfigUpdateRequest: DataTypesStoreConfigUpdateRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
64761
65470
|
/**
|
|
64762
65471
|
* Returns metadata for all configurable store fields (types, defaults, validation). **Auth:** `x-storeid` and `x-storesecret`. Path `xStoreID` must match the `x-storeid` header.
|
|
64763
65472
|
* @summary Get store config schema
|
|
@@ -64884,11 +65593,11 @@ export declare const StoreManagementApiFp: (configuration?: Configuration) => {
|
|
|
64884
65593
|
* Creates a new store with minimal information. Returns store credentials (xStoreID, xStoreSecret, xStoreWriteSecret) immediately. This is a public API for SDK integration. Requires JWT authentication.
|
|
64885
65594
|
* @summary Create Store (Public SDK API)
|
|
64886
65595
|
* @param {string} authorization Bearer JWT Token
|
|
64887
|
-
* @param {
|
|
65596
|
+
* @param {DataTypesCreateStoreRequest} dataTypesCreateStoreRequest Store creation request
|
|
64888
65597
|
* @param {*} [options] Override http request option.
|
|
64889
65598
|
* @throws {RequiredError}
|
|
64890
65599
|
*/
|
|
64891
|
-
apiV1StoresPost(authorization: string,
|
|
65600
|
+
apiV1StoresPost(authorization: string, dataTypesCreateStoreRequest: DataTypesCreateStoreRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesCreateStoreResponse>>;
|
|
64892
65601
|
/**
|
|
64893
65602
|
* Returns search and query-suggestions configuration for the store. **Auth:** `x-storeid` and `x-storesecret`. Path `xStoreID` must match the `x-storeid` header.
|
|
64894
65603
|
* @summary Get store configuration
|
|
@@ -64905,11 +65614,11 @@ export declare const StoreManagementApiFp: (configuration?: Configuration) => {
|
|
|
64905
65614
|
* @param {string} xStoreid Store ID (from dashboard)
|
|
64906
65615
|
* @param {string} xStoreWriteSecret Store write secret
|
|
64907
65616
|
* @param {string} xStoreID Store ID (must match x-storeid header)
|
|
64908
|
-
* @param {
|
|
65617
|
+
* @param {DataTypesStoreConfigUpdateRequest} dataTypesStoreConfigUpdateRequest Fields to update (partial, includes allow_public_search)
|
|
64909
65618
|
* @param {*} [options] Override http request option.
|
|
64910
65619
|
* @throws {RequiredError}
|
|
64911
65620
|
*/
|
|
64912
|
-
apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string,
|
|
65621
|
+
apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesStoreConfigUpdateRequest: DataTypesStoreConfigUpdateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesIndexConfigResponseWrapper>>;
|
|
64913
65622
|
/**
|
|
64914
65623
|
* Returns metadata for all configurable store fields (types, defaults, validation). **Auth:** `x-storeid` and `x-storesecret`. Path `xStoreID` must match the `x-storeid` header.
|
|
64915
65624
|
* @summary Get store config schema
|
|
@@ -64983,7 +65692,7 @@ export declare const StoreManagementApiFp: (configuration?: Configuration) => {
|
|
|
64983
65692
|
* @param {*} [options] Override http request option.
|
|
64984
65693
|
* @throws {RequiredError}
|
|
64985
65694
|
*/
|
|
64986
|
-
apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
65695
|
+
apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesStoreInfoResponse>>;
|
|
64987
65696
|
/**
|
|
64988
65697
|
* Returns autocomplete/suggestions configuration for the store. **Auth:** `x-storeid` and `x-storesecret`. Path `xStoreID` must match the `x-storeid` header.
|
|
64989
65698
|
* @summary Get query suggestions configuration
|
|
@@ -65036,11 +65745,11 @@ export declare const StoreManagementApiFactory: (configuration?: Configuration,
|
|
|
65036
65745
|
* Creates a new store with minimal information. Returns store credentials (xStoreID, xStoreSecret, xStoreWriteSecret) immediately. This is a public API for SDK integration. Requires JWT authentication.
|
|
65037
65746
|
* @summary Create Store (Public SDK API)
|
|
65038
65747
|
* @param {string} authorization Bearer JWT Token
|
|
65039
|
-
* @param {
|
|
65748
|
+
* @param {DataTypesCreateStoreRequest} dataTypesCreateStoreRequest Store creation request
|
|
65040
65749
|
* @param {*} [options] Override http request option.
|
|
65041
65750
|
* @throws {RequiredError}
|
|
65042
65751
|
*/
|
|
65043
|
-
apiV1StoresPost(authorization: string,
|
|
65752
|
+
apiV1StoresPost(authorization: string, dataTypesCreateStoreRequest: DataTypesCreateStoreRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesCreateStoreResponse>;
|
|
65044
65753
|
/**
|
|
65045
65754
|
* Returns search and query-suggestions configuration for the store. **Auth:** `x-storeid` and `x-storesecret`. Path `xStoreID` must match the `x-storeid` header.
|
|
65046
65755
|
* @summary Get store configuration
|
|
@@ -65057,11 +65766,11 @@ export declare const StoreManagementApiFactory: (configuration?: Configuration,
|
|
|
65057
65766
|
* @param {string} xStoreid Store ID (from dashboard)
|
|
65058
65767
|
* @param {string} xStoreWriteSecret Store write secret
|
|
65059
65768
|
* @param {string} xStoreID Store ID (must match x-storeid header)
|
|
65060
|
-
* @param {
|
|
65769
|
+
* @param {DataTypesStoreConfigUpdateRequest} dataTypesStoreConfigUpdateRequest Fields to update (partial, includes allow_public_search)
|
|
65061
65770
|
* @param {*} [options] Override http request option.
|
|
65062
65771
|
* @throws {RequiredError}
|
|
65063
65772
|
*/
|
|
65064
|
-
apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string,
|
|
65773
|
+
apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesStoreConfigUpdateRequest: DataTypesStoreConfigUpdateRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesIndexConfigResponseWrapper>;
|
|
65065
65774
|
/**
|
|
65066
65775
|
* Returns metadata for all configurable store fields (types, defaults, validation). **Auth:** `x-storeid` and `x-storesecret`. Path `xStoreID` must match the `x-storeid` header.
|
|
65067
65776
|
* @summary Get store config schema
|
|
@@ -65135,7 +65844,7 @@ export declare const StoreManagementApiFactory: (configuration?: Configuration,
|
|
|
65135
65844
|
* @param {*} [options] Override http request option.
|
|
65136
65845
|
* @throws {RequiredError}
|
|
65137
65846
|
*/
|
|
65138
|
-
apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
65847
|
+
apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesStoreInfoResponse>;
|
|
65139
65848
|
/**
|
|
65140
65849
|
* Returns autocomplete/suggestions configuration for the store. **Auth:** `x-storeid` and `x-storesecret`. Path `xStoreID` must match the `x-storeid` header.
|
|
65141
65850
|
* @summary Get query suggestions configuration
|
|
@@ -65190,12 +65899,12 @@ export declare class StoreManagementApi extends BaseAPI {
|
|
|
65190
65899
|
* Creates a new store with minimal information. Returns store credentials (xStoreID, xStoreSecret, xStoreWriteSecret) immediately. This is a public API for SDK integration. Requires JWT authentication.
|
|
65191
65900
|
* @summary Create Store (Public SDK API)
|
|
65192
65901
|
* @param {string} authorization Bearer JWT Token
|
|
65193
|
-
* @param {
|
|
65902
|
+
* @param {DataTypesCreateStoreRequest} dataTypesCreateStoreRequest Store creation request
|
|
65194
65903
|
* @param {*} [options] Override http request option.
|
|
65195
65904
|
* @throws {RequiredError}
|
|
65196
65905
|
* @memberof StoreManagementApi
|
|
65197
65906
|
*/
|
|
65198
|
-
apiV1StoresPost(authorization: string,
|
|
65907
|
+
apiV1StoresPost(authorization: string, dataTypesCreateStoreRequest: DataTypesCreateStoreRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreateStoreResponse, any, {}>>;
|
|
65199
65908
|
/**
|
|
65200
65909
|
* Returns search and query-suggestions configuration for the store. **Auth:** `x-storeid` and `x-storesecret`. Path `xStoreID` must match the `x-storeid` header.
|
|
65201
65910
|
* @summary Get store configuration
|
|
@@ -65213,12 +65922,12 @@ export declare class StoreManagementApi extends BaseAPI {
|
|
|
65213
65922
|
* @param {string} xStoreid Store ID (from dashboard)
|
|
65214
65923
|
* @param {string} xStoreWriteSecret Store write secret
|
|
65215
65924
|
* @param {string} xStoreID Store ID (must match x-storeid header)
|
|
65216
|
-
* @param {
|
|
65925
|
+
* @param {DataTypesStoreConfigUpdateRequest} dataTypesStoreConfigUpdateRequest Fields to update (partial, includes allow_public_search)
|
|
65217
65926
|
* @param {*} [options] Override http request option.
|
|
65218
65927
|
* @throws {RequiredError}
|
|
65219
65928
|
* @memberof StoreManagementApi
|
|
65220
65929
|
*/
|
|
65221
|
-
apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string,
|
|
65930
|
+
apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesStoreConfigUpdateRequest: DataTypesStoreConfigUpdateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any, {}>>;
|
|
65222
65931
|
/**
|
|
65223
65932
|
* Returns metadata for all configurable store fields (types, defaults, validation). **Auth:** `x-storeid` and `x-storesecret`. Path `xStoreID` must match the `x-storeid` header.
|
|
65224
65933
|
* @summary Get store config schema
|
|
@@ -65299,7 +66008,7 @@ export declare class StoreManagementApi extends BaseAPI {
|
|
|
65299
66008
|
* @throws {RequiredError}
|
|
65300
66009
|
* @memberof StoreManagementApi
|
|
65301
66010
|
*/
|
|
65302
|
-
apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
66011
|
+
apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesStoreInfoResponse, any, {}>>;
|
|
65303
66012
|
/**
|
|
65304
66013
|
* Returns autocomplete/suggestions configuration for the store. **Auth:** `x-storeid` and `x-storesecret`. Path `xStoreID` must match the `x-storeid` header.
|
|
65305
66014
|
* @summary Get query suggestions configuration
|