@seekora-ai/admin-api 1.1.94 → 1.1.96
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 +28 -11
- package/api.ts +1724 -816
- package/dist/api.d.ts +1459 -626
- package/dist/api.js +171 -42
- package/dist/esm/api.d.ts +1459 -626
- package/dist/esm/api.js +171 -42
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.96.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
|
|
@@ -15595,6 +15864,12 @@ export interface DataTypesCreditBalanceInfo {
|
|
|
15595
15864
|
* @memberof DataTypesCreditBalanceInfo
|
|
15596
15865
|
*/
|
|
15597
15866
|
'total_credits'?: number;
|
|
15867
|
+
/**
|
|
15868
|
+
*
|
|
15869
|
+
* @type {number}
|
|
15870
|
+
* @memberof DataTypesCreditBalanceInfo
|
|
15871
|
+
*/
|
|
15872
|
+
'trial_credit_allocation'?: number;
|
|
15598
15873
|
}
|
|
15599
15874
|
/**
|
|
15600
15875
|
*
|
|
@@ -15775,6 +16050,12 @@ export interface DataTypesCreditPlan {
|
|
|
15775
16050
|
* @memberof DataTypesCreditPlan
|
|
15776
16051
|
*/
|
|
15777
16052
|
'price': number;
|
|
16053
|
+
/**
|
|
16054
|
+
*
|
|
16055
|
+
* @type {number}
|
|
16056
|
+
* @memberof DataTypesCreditPlan
|
|
16057
|
+
*/
|
|
16058
|
+
'trial_credit_amount'?: number;
|
|
15778
16059
|
/**
|
|
15779
16060
|
* Deprecated: kept for DB compat, ignored
|
|
15780
16061
|
* @type {number}
|
|
@@ -15916,6 +16197,18 @@ export interface DataTypesCurrentPlanInfo {
|
|
|
15916
16197
|
* @memberof DataTypesCurrentPlanInfo
|
|
15917
16198
|
*/
|
|
15918
16199
|
'end_date'?: string;
|
|
16200
|
+
/**
|
|
16201
|
+
*
|
|
16202
|
+
* @type {number}
|
|
16203
|
+
* @memberof DataTypesCurrentPlanInfo
|
|
16204
|
+
*/
|
|
16205
|
+
'full_credit_amount'?: number;
|
|
16206
|
+
/**
|
|
16207
|
+
*
|
|
16208
|
+
* @type {boolean}
|
|
16209
|
+
* @memberof DataTypesCurrentPlanInfo
|
|
16210
|
+
*/
|
|
16211
|
+
'is_trial'?: boolean;
|
|
15919
16212
|
/**
|
|
15920
16213
|
*
|
|
15921
16214
|
* @type {number}
|
|
@@ -15952,6 +16245,12 @@ export interface DataTypesCurrentPlanInfo {
|
|
|
15952
16245
|
* @memberof DataTypesCurrentPlanInfo
|
|
15953
16246
|
*/
|
|
15954
16247
|
'subscription_id'?: string;
|
|
16248
|
+
/**
|
|
16249
|
+
*
|
|
16250
|
+
* @type {number}
|
|
16251
|
+
* @memberof DataTypesCurrentPlanInfo
|
|
16252
|
+
*/
|
|
16253
|
+
'trial_credit_amount'?: number;
|
|
15955
16254
|
}
|
|
15956
16255
|
/**
|
|
15957
16256
|
*
|
|
@@ -17238,7 +17537,7 @@ export interface DataTypesErrorMetaResponse {
|
|
|
17238
17537
|
*/
|
|
17239
17538
|
export interface DataTypesEventPayload {
|
|
17240
17539
|
/**
|
|
17241
|
-
*
|
|
17540
|
+
* Experiment identifier
|
|
17242
17541
|
* @type {string}
|
|
17243
17542
|
* @memberof DataTypesEventPayload
|
|
17244
17543
|
*/
|
|
@@ -17250,7 +17549,7 @@ export interface DataTypesEventPayload {
|
|
|
17250
17549
|
*/
|
|
17251
17550
|
'ab_variant'?: string;
|
|
17252
17551
|
/**
|
|
17253
|
-
*
|
|
17552
|
+
*
|
|
17254
17553
|
* @type {Array<string>}
|
|
17255
17554
|
* @memberof DataTypesEventPayload
|
|
17256
17555
|
*/
|
|
@@ -17310,7 +17609,7 @@ export interface DataTypesEventPayload {
|
|
|
17310
17609
|
*/
|
|
17311
17610
|
'click_type'?: string;
|
|
17312
17611
|
/**
|
|
17313
|
-
*
|
|
17612
|
+
*
|
|
17314
17613
|
* @type {string}
|
|
17315
17614
|
* @memberof DataTypesEventPayload
|
|
17316
17615
|
*/
|
|
@@ -17358,7 +17657,7 @@ export interface DataTypesEventPayload {
|
|
|
17358
17657
|
*/
|
|
17359
17658
|
'correlation_id'?: string;
|
|
17360
17659
|
/**
|
|
17361
|
-
*
|
|
17660
|
+
*
|
|
17362
17661
|
* @type {string}
|
|
17363
17662
|
* @memberof DataTypesEventPayload
|
|
17364
17663
|
*/
|
|
@@ -17382,7 +17681,7 @@ export interface DataTypesEventPayload {
|
|
|
17382
17681
|
*/
|
|
17383
17682
|
'custom_json'?: string;
|
|
17384
17683
|
/**
|
|
17385
|
-
*
|
|
17684
|
+
* URL user navigates to after click
|
|
17386
17685
|
* @type {string}
|
|
17387
17686
|
* @memberof DataTypesEventPayload
|
|
17388
17687
|
*/
|
|
@@ -17400,7 +17699,7 @@ export interface DataTypesEventPayload {
|
|
|
17400
17699
|
*/
|
|
17401
17700
|
'device_type'?: string;
|
|
17402
17701
|
/**
|
|
17403
|
-
*
|
|
17702
|
+
*
|
|
17404
17703
|
* @type {string}
|
|
17405
17704
|
* @memberof DataTypesEventPayload
|
|
17406
17705
|
*/
|
|
@@ -17442,7 +17741,7 @@ export interface DataTypesEventPayload {
|
|
|
17442
17741
|
*/
|
|
17443
17742
|
'insert_id'?: string;
|
|
17444
17743
|
/**
|
|
17445
|
-
*
|
|
17744
|
+
*
|
|
17446
17745
|
* @type {string}
|
|
17447
17746
|
* @memberof DataTypesEventPayload
|
|
17448
17747
|
*/
|
|
@@ -17492,7 +17791,7 @@ export interface DataTypesEventPayload {
|
|
|
17492
17791
|
[key: string]: any;
|
|
17493
17792
|
};
|
|
17494
17793
|
/**
|
|
17495
|
-
*
|
|
17794
|
+
*
|
|
17496
17795
|
* @type {string}
|
|
17497
17796
|
* @memberof DataTypesEventPayload
|
|
17498
17797
|
*/
|
|
@@ -17564,7 +17863,7 @@ export interface DataTypesEventPayload {
|
|
|
17564
17863
|
*/
|
|
17565
17864
|
'quantity'?: number;
|
|
17566
17865
|
/**
|
|
17567
|
-
*
|
|
17866
|
+
*
|
|
17568
17867
|
* @type {string}
|
|
17569
17868
|
* @memberof DataTypesEventPayload
|
|
17570
17869
|
*/
|
|
@@ -17726,7 +18025,7 @@ export interface DataTypesEventPayload {
|
|
|
17726
18025
|
*/
|
|
17727
18026
|
'utm_medium'?: string;
|
|
17728
18027
|
/**
|
|
17729
|
-
*
|
|
18028
|
+
*
|
|
17730
18029
|
* @type {string}
|
|
17731
18030
|
* @memberof DataTypesEventPayload
|
|
17732
18031
|
*/
|
|
@@ -17738,7 +18037,7 @@ export interface DataTypesEventPayload {
|
|
|
17738
18037
|
*/
|
|
17739
18038
|
'utm_term'?: string;
|
|
17740
18039
|
/**
|
|
17741
|
-
*
|
|
18040
|
+
*
|
|
17742
18041
|
* @type {number}
|
|
17743
18042
|
* @memberof DataTypesEventPayload
|
|
17744
18043
|
*/
|
|
@@ -17762,6 +18061,44 @@ export interface DataTypesEventPayload {
|
|
|
17762
18061
|
*/
|
|
17763
18062
|
'xstoreid'?: string;
|
|
17764
18063
|
}
|
|
18064
|
+
/**
|
|
18065
|
+
*
|
|
18066
|
+
* @export
|
|
18067
|
+
* @interface DataTypesEventSubmitData
|
|
18068
|
+
*/
|
|
18069
|
+
export interface DataTypesEventSubmitData {
|
|
18070
|
+
/**
|
|
18071
|
+
*
|
|
18072
|
+
* @type {string}
|
|
18073
|
+
* @memberof DataTypesEventSubmitData
|
|
18074
|
+
*/
|
|
18075
|
+
'event_id'?: string;
|
|
18076
|
+
/**
|
|
18077
|
+
*
|
|
18078
|
+
* @type {string}
|
|
18079
|
+
* @memberof DataTypesEventSubmitData
|
|
18080
|
+
*/
|
|
18081
|
+
'timestamp'?: string;
|
|
18082
|
+
}
|
|
18083
|
+
/**
|
|
18084
|
+
*
|
|
18085
|
+
* @export
|
|
18086
|
+
* @interface DataTypesEventValidateData
|
|
18087
|
+
*/
|
|
18088
|
+
export interface DataTypesEventValidateData {
|
|
18089
|
+
/**
|
|
18090
|
+
*
|
|
18091
|
+
* @type {string}
|
|
18092
|
+
* @memberof DataTypesEventValidateData
|
|
18093
|
+
*/
|
|
18094
|
+
'event_name'?: string;
|
|
18095
|
+
/**
|
|
18096
|
+
*
|
|
18097
|
+
* @type {string}
|
|
18098
|
+
* @memberof DataTypesEventValidateData
|
|
18099
|
+
*/
|
|
18100
|
+
'event_type'?: string;
|
|
18101
|
+
}
|
|
17765
18102
|
/**
|
|
17766
18103
|
*
|
|
17767
18104
|
* @export
|
|
@@ -20344,6 +20681,56 @@ export interface DataTypesGenericResponseBillingServiceTrialEligibilityResponse
|
|
|
20344
20681
|
*/
|
|
20345
20682
|
'status'?: number;
|
|
20346
20683
|
}
|
|
20684
|
+
/**
|
|
20685
|
+
*
|
|
20686
|
+
* @export
|
|
20687
|
+
* @interface DataTypesGenericResponseDataTypesAnalyticsConfigData
|
|
20688
|
+
*/
|
|
20689
|
+
export interface DataTypesGenericResponseDataTypesAnalyticsConfigData {
|
|
20690
|
+
/**
|
|
20691
|
+
*
|
|
20692
|
+
* @type {DataTypesAnalyticsConfigData}
|
|
20693
|
+
* @memberof DataTypesGenericResponseDataTypesAnalyticsConfigData
|
|
20694
|
+
*/
|
|
20695
|
+
'data'?: DataTypesAnalyticsConfigData;
|
|
20696
|
+
/**
|
|
20697
|
+
*
|
|
20698
|
+
* @type {string}
|
|
20699
|
+
* @memberof DataTypesGenericResponseDataTypesAnalyticsConfigData
|
|
20700
|
+
*/
|
|
20701
|
+
'message'?: string;
|
|
20702
|
+
/**
|
|
20703
|
+
*
|
|
20704
|
+
* @type {number}
|
|
20705
|
+
* @memberof DataTypesGenericResponseDataTypesAnalyticsConfigData
|
|
20706
|
+
*/
|
|
20707
|
+
'status'?: number;
|
|
20708
|
+
}
|
|
20709
|
+
/**
|
|
20710
|
+
*
|
|
20711
|
+
* @export
|
|
20712
|
+
* @interface DataTypesGenericResponseDataTypesBatchEventData
|
|
20713
|
+
*/
|
|
20714
|
+
export interface DataTypesGenericResponseDataTypesBatchEventData {
|
|
20715
|
+
/**
|
|
20716
|
+
*
|
|
20717
|
+
* @type {DataTypesBatchEventData}
|
|
20718
|
+
* @memberof DataTypesGenericResponseDataTypesBatchEventData
|
|
20719
|
+
*/
|
|
20720
|
+
'data'?: DataTypesBatchEventData;
|
|
20721
|
+
/**
|
|
20722
|
+
*
|
|
20723
|
+
* @type {string}
|
|
20724
|
+
* @memberof DataTypesGenericResponseDataTypesBatchEventData
|
|
20725
|
+
*/
|
|
20726
|
+
'message'?: string;
|
|
20727
|
+
/**
|
|
20728
|
+
*
|
|
20729
|
+
* @type {number}
|
|
20730
|
+
* @memberof DataTypesGenericResponseDataTypesBatchEventData
|
|
20731
|
+
*/
|
|
20732
|
+
'status'?: number;
|
|
20733
|
+
}
|
|
20347
20734
|
/**
|
|
20348
20735
|
*
|
|
20349
20736
|
* @export
|
|
@@ -20419,6 +20806,31 @@ export interface DataTypesGenericResponseDataTypesConsumptionHistoryResponse {
|
|
|
20419
20806
|
*/
|
|
20420
20807
|
'status'?: number;
|
|
20421
20808
|
}
|
|
20809
|
+
/**
|
|
20810
|
+
*
|
|
20811
|
+
* @export
|
|
20812
|
+
* @interface DataTypesGenericResponseDataTypesCreateStoreResponse
|
|
20813
|
+
*/
|
|
20814
|
+
export interface DataTypesGenericResponseDataTypesCreateStoreResponse {
|
|
20815
|
+
/**
|
|
20816
|
+
*
|
|
20817
|
+
* @type {DataTypesCreateStoreResponse}
|
|
20818
|
+
* @memberof DataTypesGenericResponseDataTypesCreateStoreResponse
|
|
20819
|
+
*/
|
|
20820
|
+
'data'?: DataTypesCreateStoreResponse;
|
|
20821
|
+
/**
|
|
20822
|
+
*
|
|
20823
|
+
* @type {string}
|
|
20824
|
+
* @memberof DataTypesGenericResponseDataTypesCreateStoreResponse
|
|
20825
|
+
*/
|
|
20826
|
+
'message'?: string;
|
|
20827
|
+
/**
|
|
20828
|
+
*
|
|
20829
|
+
* @type {number}
|
|
20830
|
+
* @memberof DataTypesGenericResponseDataTypesCreateStoreResponse
|
|
20831
|
+
*/
|
|
20832
|
+
'status'?: number;
|
|
20833
|
+
}
|
|
20422
20834
|
/**
|
|
20423
20835
|
*
|
|
20424
20836
|
* @export
|
|
@@ -20469,6 +20881,56 @@ export interface DataTypesGenericResponseDataTypesCurrentPlanInfo {
|
|
|
20469
20881
|
*/
|
|
20470
20882
|
'status'?: number;
|
|
20471
20883
|
}
|
|
20884
|
+
/**
|
|
20885
|
+
*
|
|
20886
|
+
* @export
|
|
20887
|
+
* @interface DataTypesGenericResponseDataTypesEventSubmitData
|
|
20888
|
+
*/
|
|
20889
|
+
export interface DataTypesGenericResponseDataTypesEventSubmitData {
|
|
20890
|
+
/**
|
|
20891
|
+
*
|
|
20892
|
+
* @type {DataTypesEventSubmitData}
|
|
20893
|
+
* @memberof DataTypesGenericResponseDataTypesEventSubmitData
|
|
20894
|
+
*/
|
|
20895
|
+
'data'?: DataTypesEventSubmitData;
|
|
20896
|
+
/**
|
|
20897
|
+
*
|
|
20898
|
+
* @type {string}
|
|
20899
|
+
* @memberof DataTypesGenericResponseDataTypesEventSubmitData
|
|
20900
|
+
*/
|
|
20901
|
+
'message'?: string;
|
|
20902
|
+
/**
|
|
20903
|
+
*
|
|
20904
|
+
* @type {number}
|
|
20905
|
+
* @memberof DataTypesGenericResponseDataTypesEventSubmitData
|
|
20906
|
+
*/
|
|
20907
|
+
'status'?: number;
|
|
20908
|
+
}
|
|
20909
|
+
/**
|
|
20910
|
+
*
|
|
20911
|
+
* @export
|
|
20912
|
+
* @interface DataTypesGenericResponseDataTypesEventValidateData
|
|
20913
|
+
*/
|
|
20914
|
+
export interface DataTypesGenericResponseDataTypesEventValidateData {
|
|
20915
|
+
/**
|
|
20916
|
+
*
|
|
20917
|
+
* @type {DataTypesEventValidateData}
|
|
20918
|
+
* @memberof DataTypesGenericResponseDataTypesEventValidateData
|
|
20919
|
+
*/
|
|
20920
|
+
'data'?: DataTypesEventValidateData;
|
|
20921
|
+
/**
|
|
20922
|
+
*
|
|
20923
|
+
* @type {string}
|
|
20924
|
+
* @memberof DataTypesGenericResponseDataTypesEventValidateData
|
|
20925
|
+
*/
|
|
20926
|
+
'message'?: string;
|
|
20927
|
+
/**
|
|
20928
|
+
*
|
|
20929
|
+
* @type {number}
|
|
20930
|
+
* @memberof DataTypesGenericResponseDataTypesEventValidateData
|
|
20931
|
+
*/
|
|
20932
|
+
'status'?: number;
|
|
20933
|
+
}
|
|
20472
20934
|
/**
|
|
20473
20935
|
*
|
|
20474
20936
|
* @export
|
|
@@ -20672,175 +21134,175 @@ export interface DataTypesGenericResponseDataTypesPayInvoiceResponse {
|
|
|
20672
21134
|
/**
|
|
20673
21135
|
*
|
|
20674
21136
|
* @export
|
|
20675
|
-
* @interface
|
|
21137
|
+
* @interface DataTypesGenericResponseDataTypesReceipt
|
|
20676
21138
|
*/
|
|
20677
|
-
export interface
|
|
21139
|
+
export interface DataTypesGenericResponseDataTypesReceipt {
|
|
20678
21140
|
/**
|
|
20679
21141
|
*
|
|
20680
|
-
* @type {
|
|
20681
|
-
* @memberof
|
|
21142
|
+
* @type {DataTypesReceipt}
|
|
21143
|
+
* @memberof DataTypesGenericResponseDataTypesReceipt
|
|
20682
21144
|
*/
|
|
20683
|
-
'data'?:
|
|
21145
|
+
'data'?: DataTypesReceipt;
|
|
20684
21146
|
/**
|
|
20685
21147
|
*
|
|
20686
21148
|
* @type {string}
|
|
20687
|
-
* @memberof
|
|
21149
|
+
* @memberof DataTypesGenericResponseDataTypesReceipt
|
|
20688
21150
|
*/
|
|
20689
21151
|
'message'?: string;
|
|
20690
21152
|
/**
|
|
20691
21153
|
*
|
|
20692
21154
|
* @type {number}
|
|
20693
|
-
* @memberof
|
|
21155
|
+
* @memberof DataTypesGenericResponseDataTypesReceipt
|
|
20694
21156
|
*/
|
|
20695
21157
|
'status'?: number;
|
|
20696
21158
|
}
|
|
20697
21159
|
/**
|
|
20698
21160
|
*
|
|
20699
21161
|
* @export
|
|
20700
|
-
* @interface
|
|
21162
|
+
* @interface DataTypesGenericResponseDataTypesRegenerateXStoreSecretResponse
|
|
20701
21163
|
*/
|
|
20702
|
-
export interface
|
|
21164
|
+
export interface DataTypesGenericResponseDataTypesRegenerateXStoreSecretResponse {
|
|
20703
21165
|
/**
|
|
20704
21166
|
*
|
|
20705
|
-
* @type {
|
|
20706
|
-
* @memberof
|
|
21167
|
+
* @type {DataTypesRegenerateXStoreSecretResponse}
|
|
21168
|
+
* @memberof DataTypesGenericResponseDataTypesRegenerateXStoreSecretResponse
|
|
20707
21169
|
*/
|
|
20708
|
-
'data'?:
|
|
21170
|
+
'data'?: DataTypesRegenerateXStoreSecretResponse;
|
|
20709
21171
|
/**
|
|
20710
21172
|
*
|
|
20711
21173
|
* @type {string}
|
|
20712
|
-
* @memberof
|
|
21174
|
+
* @memberof DataTypesGenericResponseDataTypesRegenerateXStoreSecretResponse
|
|
20713
21175
|
*/
|
|
20714
21176
|
'message'?: string;
|
|
20715
21177
|
/**
|
|
20716
21178
|
*
|
|
20717
21179
|
* @type {number}
|
|
20718
|
-
* @memberof
|
|
21180
|
+
* @memberof DataTypesGenericResponseDataTypesRegenerateXStoreSecretResponse
|
|
20719
21181
|
*/
|
|
20720
21182
|
'status'?: number;
|
|
20721
21183
|
}
|
|
20722
21184
|
/**
|
|
20723
21185
|
*
|
|
20724
21186
|
* @export
|
|
20725
|
-
* @interface
|
|
21187
|
+
* @interface DataTypesGenericResponseDataTypesRolePermissionsResponse
|
|
20726
21188
|
*/
|
|
20727
|
-
export interface
|
|
21189
|
+
export interface DataTypesGenericResponseDataTypesRolePermissionsResponse {
|
|
20728
21190
|
/**
|
|
20729
21191
|
*
|
|
20730
|
-
* @type {
|
|
20731
|
-
* @memberof
|
|
21192
|
+
* @type {DataTypesRolePermissionsResponse}
|
|
21193
|
+
* @memberof DataTypesGenericResponseDataTypesRolePermissionsResponse
|
|
20732
21194
|
*/
|
|
20733
|
-
'data'?:
|
|
21195
|
+
'data'?: DataTypesRolePermissionsResponse;
|
|
20734
21196
|
/**
|
|
20735
21197
|
*
|
|
20736
21198
|
* @type {string}
|
|
20737
|
-
* @memberof
|
|
21199
|
+
* @memberof DataTypesGenericResponseDataTypesRolePermissionsResponse
|
|
20738
21200
|
*/
|
|
20739
21201
|
'message'?: string;
|
|
20740
21202
|
/**
|
|
20741
21203
|
*
|
|
20742
21204
|
* @type {number}
|
|
20743
|
-
* @memberof
|
|
21205
|
+
* @memberof DataTypesGenericResponseDataTypesRolePermissionsResponse
|
|
20744
21206
|
*/
|
|
20745
21207
|
'status'?: number;
|
|
20746
21208
|
}
|
|
20747
21209
|
/**
|
|
20748
21210
|
*
|
|
20749
21211
|
* @export
|
|
20750
|
-
* @interface
|
|
21212
|
+
* @interface DataTypesGenericResponseDataTypesSearchRequestsGraphResponse
|
|
20751
21213
|
*/
|
|
20752
|
-
export interface
|
|
21214
|
+
export interface DataTypesGenericResponseDataTypesSearchRequestsGraphResponse {
|
|
20753
21215
|
/**
|
|
20754
21216
|
*
|
|
20755
|
-
* @type {
|
|
20756
|
-
* @memberof
|
|
21217
|
+
* @type {DataTypesSearchRequestsGraphResponse}
|
|
21218
|
+
* @memberof DataTypesGenericResponseDataTypesSearchRequestsGraphResponse
|
|
20757
21219
|
*/
|
|
20758
|
-
'data'?:
|
|
21220
|
+
'data'?: DataTypesSearchRequestsGraphResponse;
|
|
20759
21221
|
/**
|
|
20760
21222
|
*
|
|
20761
21223
|
* @type {string}
|
|
20762
|
-
* @memberof
|
|
21224
|
+
* @memberof DataTypesGenericResponseDataTypesSearchRequestsGraphResponse
|
|
20763
21225
|
*/
|
|
20764
21226
|
'message'?: string;
|
|
20765
21227
|
/**
|
|
20766
21228
|
*
|
|
20767
21229
|
* @type {number}
|
|
20768
|
-
* @memberof
|
|
21230
|
+
* @memberof DataTypesGenericResponseDataTypesSearchRequestsGraphResponse
|
|
20769
21231
|
*/
|
|
20770
21232
|
'status'?: number;
|
|
20771
21233
|
}
|
|
20772
21234
|
/**
|
|
20773
21235
|
*
|
|
20774
21236
|
* @export
|
|
20775
|
-
* @interface
|
|
21237
|
+
* @interface DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
|
|
20776
21238
|
*/
|
|
20777
|
-
export interface
|
|
21239
|
+
export interface DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse {
|
|
20778
21240
|
/**
|
|
20779
21241
|
*
|
|
20780
|
-
* @type {
|
|
20781
|
-
* @memberof
|
|
21242
|
+
* @type {DataTypesStoreConfigWithOnboardingResponse}
|
|
21243
|
+
* @memberof DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
|
|
20782
21244
|
*/
|
|
20783
|
-
'data'?:
|
|
21245
|
+
'data'?: DataTypesStoreConfigWithOnboardingResponse;
|
|
20784
21246
|
/**
|
|
20785
21247
|
*
|
|
20786
21248
|
* @type {string}
|
|
20787
|
-
* @memberof
|
|
21249
|
+
* @memberof DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
|
|
20788
21250
|
*/
|
|
20789
21251
|
'message'?: string;
|
|
20790
21252
|
/**
|
|
20791
21253
|
*
|
|
20792
21254
|
* @type {number}
|
|
20793
|
-
* @memberof
|
|
21255
|
+
* @memberof DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
|
|
20794
21256
|
*/
|
|
20795
21257
|
'status'?: number;
|
|
20796
21258
|
}
|
|
20797
21259
|
/**
|
|
20798
21260
|
*
|
|
20799
21261
|
* @export
|
|
20800
|
-
* @interface
|
|
21262
|
+
* @interface DataTypesGenericResponseDataTypesStoreInfoResponse
|
|
20801
21263
|
*/
|
|
20802
|
-
export interface
|
|
21264
|
+
export interface DataTypesGenericResponseDataTypesStoreInfoResponse {
|
|
20803
21265
|
/**
|
|
20804
21266
|
*
|
|
20805
|
-
* @type {
|
|
20806
|
-
* @memberof
|
|
21267
|
+
* @type {DataTypesStoreInfoResponse}
|
|
21268
|
+
* @memberof DataTypesGenericResponseDataTypesStoreInfoResponse
|
|
20807
21269
|
*/
|
|
20808
|
-
'data'?:
|
|
21270
|
+
'data'?: DataTypesStoreInfoResponse;
|
|
20809
21271
|
/**
|
|
20810
21272
|
*
|
|
20811
21273
|
* @type {string}
|
|
20812
|
-
* @memberof
|
|
21274
|
+
* @memberof DataTypesGenericResponseDataTypesStoreInfoResponse
|
|
20813
21275
|
*/
|
|
20814
21276
|
'message'?: string;
|
|
20815
21277
|
/**
|
|
20816
21278
|
*
|
|
20817
21279
|
* @type {number}
|
|
20818
|
-
* @memberof
|
|
21280
|
+
* @memberof DataTypesGenericResponseDataTypesStoreInfoResponse
|
|
20819
21281
|
*/
|
|
20820
21282
|
'status'?: number;
|
|
20821
21283
|
}
|
|
20822
21284
|
/**
|
|
20823
21285
|
*
|
|
20824
21286
|
* @export
|
|
20825
|
-
* @interface
|
|
21287
|
+
* @interface DataTypesGenericResponseDataTypesStoreRecordSizeMetrics
|
|
20826
21288
|
*/
|
|
20827
|
-
export interface
|
|
21289
|
+
export interface DataTypesGenericResponseDataTypesStoreRecordSizeMetrics {
|
|
20828
21290
|
/**
|
|
20829
21291
|
*
|
|
20830
|
-
* @type {
|
|
20831
|
-
* @memberof
|
|
21292
|
+
* @type {DataTypesStoreRecordSizeMetrics}
|
|
21293
|
+
* @memberof DataTypesGenericResponseDataTypesStoreRecordSizeMetrics
|
|
20832
21294
|
*/
|
|
20833
|
-
'data'?:
|
|
21295
|
+
'data'?: DataTypesStoreRecordSizeMetrics;
|
|
20834
21296
|
/**
|
|
20835
21297
|
*
|
|
20836
21298
|
* @type {string}
|
|
20837
|
-
* @memberof
|
|
21299
|
+
* @memberof DataTypesGenericResponseDataTypesStoreRecordSizeMetrics
|
|
20838
21300
|
*/
|
|
20839
21301
|
'message'?: string;
|
|
20840
21302
|
/**
|
|
20841
21303
|
*
|
|
20842
21304
|
* @type {number}
|
|
20843
|
-
* @memberof
|
|
21305
|
+
* @memberof DataTypesGenericResponseDataTypesStoreRecordSizeMetrics
|
|
20844
21306
|
*/
|
|
20845
21307
|
'status'?: number;
|
|
20846
21308
|
}
|
|
@@ -25233,121 +25695,6 @@ export interface DataTypesOTPPayload {
|
|
|
25233
25695
|
*/
|
|
25234
25696
|
'otp'?: string;
|
|
25235
25697
|
}
|
|
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
25698
|
/**
|
|
25352
25699
|
*
|
|
25353
25700
|
* @export
|
|
@@ -25633,6 +25980,12 @@ export interface DataTypesOnboardingStatus {
|
|
|
25633
25980
|
* @memberof DataTypesOnboardingStatus
|
|
25634
25981
|
*/
|
|
25635
25982
|
'is_complete'?: boolean;
|
|
25983
|
+
/**
|
|
25984
|
+
* Whether the check was unreliable due to transient infrastructure errors
|
|
25985
|
+
* @type {boolean}
|
|
25986
|
+
* @memberof DataTypesOnboardingStatus
|
|
25987
|
+
*/
|
|
25988
|
+
'is_degraded'?: boolean;
|
|
25636
25989
|
/**
|
|
25637
25990
|
* List of missing components
|
|
25638
25991
|
* @type {Array<string>}
|
|
@@ -27928,384 +28281,6 @@ export interface DataTypesProjectedRunoutInfo {
|
|
|
27928
28281
|
*/
|
|
27929
28282
|
'warning_level'?: string;
|
|
27930
28283
|
}
|
|
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
28284
|
/**
|
|
28310
28285
|
*
|
|
28311
28286
|
* @export
|
|
@@ -30085,6 +30060,259 @@ export interface DataTypesSchemaResponseWrapper {
|
|
|
30085
30060
|
*/
|
|
30086
30061
|
'status'?: number;
|
|
30087
30062
|
}
|
|
30063
|
+
/**
|
|
30064
|
+
*
|
|
30065
|
+
* @export
|
|
30066
|
+
* @interface DataTypesSearchRequest
|
|
30067
|
+
*/
|
|
30068
|
+
export interface DataTypesSearchRequest {
|
|
30069
|
+
/**
|
|
30070
|
+
*
|
|
30071
|
+
* @type {Array<string>}
|
|
30072
|
+
* @memberof DataTypesSearchRequest
|
|
30073
|
+
*/
|
|
30074
|
+
'analytics_tags'?: Array<string>;
|
|
30075
|
+
/**
|
|
30076
|
+
* Anonymous/cookie ID for personalization
|
|
30077
|
+
* @type {string}
|
|
30078
|
+
* @memberof DataTypesSearchRequest
|
|
30079
|
+
*/
|
|
30080
|
+
'anon_id'?: string;
|
|
30081
|
+
/**
|
|
30082
|
+
*
|
|
30083
|
+
* @type {boolean}
|
|
30084
|
+
* @memberof DataTypesSearchRequest
|
|
30085
|
+
*/
|
|
30086
|
+
'apply_rules'?: boolean;
|
|
30087
|
+
/**
|
|
30088
|
+
*
|
|
30089
|
+
* @type {boolean}
|
|
30090
|
+
* @memberof DataTypesSearchRequest
|
|
30091
|
+
*/
|
|
30092
|
+
'cache_results'?: boolean;
|
|
30093
|
+
/**
|
|
30094
|
+
*
|
|
30095
|
+
* @type {boolean}
|
|
30096
|
+
* @memberof DataTypesSearchRequest
|
|
30097
|
+
*/
|
|
30098
|
+
'exact_match_boost'?: boolean;
|
|
30099
|
+
/**
|
|
30100
|
+
*
|
|
30101
|
+
* @type {string}
|
|
30102
|
+
* @memberof DataTypesSearchRequest
|
|
30103
|
+
*/
|
|
30104
|
+
'facet_by'?: string;
|
|
30105
|
+
/**
|
|
30106
|
+
*
|
|
30107
|
+
* @type {string}
|
|
30108
|
+
* @memberof DataTypesSearchRequest
|
|
30109
|
+
*/
|
|
30110
|
+
'facet_search_text'?: string;
|
|
30111
|
+
/**
|
|
30112
|
+
*
|
|
30113
|
+
* @type {Array<number>}
|
|
30114
|
+
* @memberof DataTypesSearchRequest
|
|
30115
|
+
*/
|
|
30116
|
+
'field_weights'?: Array<number>;
|
|
30117
|
+
/**
|
|
30118
|
+
*
|
|
30119
|
+
* @type {string}
|
|
30120
|
+
* @memberof DataTypesSearchRequest
|
|
30121
|
+
*/
|
|
30122
|
+
'filter'?: string;
|
|
30123
|
+
/**
|
|
30124
|
+
*
|
|
30125
|
+
* @type {Array<string>}
|
|
30126
|
+
* @memberof DataTypesSearchRequest
|
|
30127
|
+
*/
|
|
30128
|
+
'full_snippet_fields'?: Array<string>;
|
|
30129
|
+
/**
|
|
30130
|
+
*
|
|
30131
|
+
* @type {string}
|
|
30132
|
+
* @memberof DataTypesSearchRequest
|
|
30133
|
+
*/
|
|
30134
|
+
'group_field'?: string;
|
|
30135
|
+
/**
|
|
30136
|
+
*
|
|
30137
|
+
* @type {number}
|
|
30138
|
+
* @memberof DataTypesSearchRequest
|
|
30139
|
+
*/
|
|
30140
|
+
'group_size'?: number;
|
|
30141
|
+
/**
|
|
30142
|
+
*
|
|
30143
|
+
* @type {boolean}
|
|
30144
|
+
* @memberof DataTypesSearchRequest
|
|
30145
|
+
*/
|
|
30146
|
+
'include_snippets'?: boolean;
|
|
30147
|
+
/**
|
|
30148
|
+
*
|
|
30149
|
+
* @type {boolean}
|
|
30150
|
+
* @memberof DataTypesSearchRequest
|
|
30151
|
+
*/
|
|
30152
|
+
'include_suggestions'?: boolean;
|
|
30153
|
+
/**
|
|
30154
|
+
*
|
|
30155
|
+
* @type {string}
|
|
30156
|
+
* @memberof DataTypesSearchRequest
|
|
30157
|
+
*/
|
|
30158
|
+
'infix_mode'?: string;
|
|
30159
|
+
/**
|
|
30160
|
+
*
|
|
30161
|
+
* @type {number}
|
|
30162
|
+
* @memberof DataTypesSearchRequest
|
|
30163
|
+
*/
|
|
30164
|
+
'max_facet_values'?: number;
|
|
30165
|
+
/**
|
|
30166
|
+
*
|
|
30167
|
+
* @type {Array<string>}
|
|
30168
|
+
* @memberof DataTypesSearchRequest
|
|
30169
|
+
*/
|
|
30170
|
+
'omit_fields'?: Array<string>;
|
|
30171
|
+
/**
|
|
30172
|
+
*
|
|
30173
|
+
* @type {number}
|
|
30174
|
+
* @memberof DataTypesSearchRequest
|
|
30175
|
+
*/
|
|
30176
|
+
'page'?: number;
|
|
30177
|
+
/**
|
|
30178
|
+
*
|
|
30179
|
+
* @type {number}
|
|
30180
|
+
* @memberof DataTypesSearchRequest
|
|
30181
|
+
*/
|
|
30182
|
+
'per_page'?: number;
|
|
30183
|
+
/**
|
|
30184
|
+
*
|
|
30185
|
+
* @type {string}
|
|
30186
|
+
* @memberof DataTypesSearchRequest
|
|
30187
|
+
*/
|
|
30188
|
+
'prefix_mode'?: string;
|
|
30189
|
+
/**
|
|
30190
|
+
*
|
|
30191
|
+
* @type {string}
|
|
30192
|
+
* @memberof DataTypesSearchRequest
|
|
30193
|
+
*/
|
|
30194
|
+
'preset_name'?: string;
|
|
30195
|
+
/**
|
|
30196
|
+
*
|
|
30197
|
+
* @type {string}
|
|
30198
|
+
* @memberof DataTypesSearchRequest
|
|
30199
|
+
*/
|
|
30200
|
+
'q': string;
|
|
30201
|
+
/**
|
|
30202
|
+
*
|
|
30203
|
+
* @type {boolean}
|
|
30204
|
+
* @memberof DataTypesSearchRequest
|
|
30205
|
+
*/
|
|
30206
|
+
'require_all_terms'?: boolean;
|
|
30207
|
+
/**
|
|
30208
|
+
*
|
|
30209
|
+
* @type {Array<string>}
|
|
30210
|
+
* @memberof DataTypesSearchRequest
|
|
30211
|
+
*/
|
|
30212
|
+
'return_fields'?: Array<string>;
|
|
30213
|
+
/**
|
|
30214
|
+
* Advanced query controls (public-friendly field names)
|
|
30215
|
+
* @type {Array<string>}
|
|
30216
|
+
* @memberof DataTypesSearchRequest
|
|
30217
|
+
*/
|
|
30218
|
+
'search_fields'?: Array<string>;
|
|
30219
|
+
/**
|
|
30220
|
+
*
|
|
30221
|
+
* @type {number}
|
|
30222
|
+
* @memberof DataTypesSearchRequest
|
|
30223
|
+
*/
|
|
30224
|
+
'search_timeout_ms'?: number;
|
|
30225
|
+
/**
|
|
30226
|
+
* Session ID for session-based personalization
|
|
30227
|
+
* @type {string}
|
|
30228
|
+
* @memberof DataTypesSearchRequest
|
|
30229
|
+
*/
|
|
30230
|
+
'session_id'?: string;
|
|
30231
|
+
/**
|
|
30232
|
+
*
|
|
30233
|
+
* @type {Array<string>}
|
|
30234
|
+
* @memberof DataTypesSearchRequest
|
|
30235
|
+
*/
|
|
30236
|
+
'snippet_fields'?: Array<string>;
|
|
30237
|
+
/**
|
|
30238
|
+
*
|
|
30239
|
+
* @type {number}
|
|
30240
|
+
* @memberof DataTypesSearchRequest
|
|
30241
|
+
*/
|
|
30242
|
+
'snippet_min_len'?: number;
|
|
30243
|
+
/**
|
|
30244
|
+
*
|
|
30245
|
+
* @type {string}
|
|
30246
|
+
* @memberof DataTypesSearchRequest
|
|
30247
|
+
*/
|
|
30248
|
+
'snippet_prefix'?: string;
|
|
30249
|
+
/**
|
|
30250
|
+
*
|
|
30251
|
+
* @type {string}
|
|
30252
|
+
* @memberof DataTypesSearchRequest
|
|
30253
|
+
*/
|
|
30254
|
+
'snippet_suffix'?: string;
|
|
30255
|
+
/**
|
|
30256
|
+
*
|
|
30257
|
+
* @type {number}
|
|
30258
|
+
* @memberof DataTypesSearchRequest
|
|
30259
|
+
*/
|
|
30260
|
+
'snippet_token_limit'?: number;
|
|
30261
|
+
/**
|
|
30262
|
+
*
|
|
30263
|
+
* @type {string}
|
|
30264
|
+
* @memberof DataTypesSearchRequest
|
|
30265
|
+
*/
|
|
30266
|
+
'sort'?: string;
|
|
30267
|
+
/**
|
|
30268
|
+
* IDs of stopword sets to use
|
|
30269
|
+
* @type {Array<string>}
|
|
30270
|
+
* @memberof DataTypesSearchRequest
|
|
30271
|
+
*/
|
|
30272
|
+
'stopword_sets'?: Array<string>;
|
|
30273
|
+
/**
|
|
30274
|
+
*
|
|
30275
|
+
* @type {number}
|
|
30276
|
+
* @memberof DataTypesSearchRequest
|
|
30277
|
+
*/
|
|
30278
|
+
'suggestions_limit'?: number;
|
|
30279
|
+
/**
|
|
30280
|
+
* IDs of synonym sets to use
|
|
30281
|
+
* @type {Array<string>}
|
|
30282
|
+
* @memberof DataTypesSearchRequest
|
|
30283
|
+
*/
|
|
30284
|
+
'synonym_sets'?: Array<string>;
|
|
30285
|
+
/**
|
|
30286
|
+
*
|
|
30287
|
+
* @type {number}
|
|
30288
|
+
* @memberof DataTypesSearchRequest
|
|
30289
|
+
*/
|
|
30290
|
+
'typo_max'?: number;
|
|
30291
|
+
/**
|
|
30292
|
+
*
|
|
30293
|
+
* @type {number}
|
|
30294
|
+
* @memberof DataTypesSearchRequest
|
|
30295
|
+
*/
|
|
30296
|
+
'typo_min_len_1'?: number;
|
|
30297
|
+
/**
|
|
30298
|
+
*
|
|
30299
|
+
* @type {number}
|
|
30300
|
+
* @memberof DataTypesSearchRequest
|
|
30301
|
+
*/
|
|
30302
|
+
'typo_min_len_2'?: number;
|
|
30303
|
+
/**
|
|
30304
|
+
* Personalization fields (optional, backward compatible)
|
|
30305
|
+
* @type {string}
|
|
30306
|
+
* @memberof DataTypesSearchRequest
|
|
30307
|
+
*/
|
|
30308
|
+
'user_id'?: string;
|
|
30309
|
+
/**
|
|
30310
|
+
* If true, returns only display fields instead of full document (used in public API only)
|
|
30311
|
+
* @type {boolean}
|
|
30312
|
+
* @memberof DataTypesSearchRequest
|
|
30313
|
+
*/
|
|
30314
|
+
'widget_mode'?: boolean;
|
|
30315
|
+
}
|
|
30088
30316
|
/**
|
|
30089
30317
|
*
|
|
30090
30318
|
* @export
|
|
@@ -30128,6 +30356,86 @@ export interface DataTypesSearchRequestsGraphResponse {
|
|
|
30128
30356
|
*/
|
|
30129
30357
|
'total_requests'?: number;
|
|
30130
30358
|
}
|
|
30359
|
+
/**
|
|
30360
|
+
*
|
|
30361
|
+
* @export
|
|
30362
|
+
* @interface DataTypesSearchResponse
|
|
30363
|
+
*/
|
|
30364
|
+
export interface DataTypesSearchResponse {
|
|
30365
|
+
/**
|
|
30366
|
+
*
|
|
30367
|
+
* @type {any}
|
|
30368
|
+
* @memberof DataTypesSearchResponse
|
|
30369
|
+
*/
|
|
30370
|
+
'facets'?: any;
|
|
30371
|
+
/**
|
|
30372
|
+
*
|
|
30373
|
+
* @type {number}
|
|
30374
|
+
* @memberof DataTypesSearchResponse
|
|
30375
|
+
*/
|
|
30376
|
+
'page'?: number;
|
|
30377
|
+
/**
|
|
30378
|
+
*
|
|
30379
|
+
* @type {number}
|
|
30380
|
+
* @memberof DataTypesSearchResponse
|
|
30381
|
+
*/
|
|
30382
|
+
'per_page'?: number;
|
|
30383
|
+
/**
|
|
30384
|
+
*
|
|
30385
|
+
* @type {Array<DataTypesSearchResult>}
|
|
30386
|
+
* @memberof DataTypesSearchResponse
|
|
30387
|
+
*/
|
|
30388
|
+
'results'?: Array<DataTypesSearchResult>;
|
|
30389
|
+
/**
|
|
30390
|
+
* Unique search identifier for analytics linking
|
|
30391
|
+
* @type {string}
|
|
30392
|
+
* @memberof DataTypesSearchResponse
|
|
30393
|
+
*/
|
|
30394
|
+
'search_id'?: string;
|
|
30395
|
+
/**
|
|
30396
|
+
* Available sort options based on schema
|
|
30397
|
+
* @type {Array<DataTypesSortOption>}
|
|
30398
|
+
* @memberof DataTypesSearchResponse
|
|
30399
|
+
*/
|
|
30400
|
+
'sort_options'?: Array<DataTypesSortOption>;
|
|
30401
|
+
/**
|
|
30402
|
+
*
|
|
30403
|
+
* @type {Array<DataTypesAutocompleteSuggestion>}
|
|
30404
|
+
* @memberof DataTypesSearchResponse
|
|
30405
|
+
*/
|
|
30406
|
+
'suggestions'?: Array<DataTypesAutocompleteSuggestion>;
|
|
30407
|
+
/**
|
|
30408
|
+
*
|
|
30409
|
+
* @type {number}
|
|
30410
|
+
* @memberof DataTypesSearchResponse
|
|
30411
|
+
*/
|
|
30412
|
+
'total_results'?: number;
|
|
30413
|
+
}
|
|
30414
|
+
/**
|
|
30415
|
+
*
|
|
30416
|
+
* @export
|
|
30417
|
+
* @interface DataTypesSearchResponseWrapper
|
|
30418
|
+
*/
|
|
30419
|
+
export interface DataTypesSearchResponseWrapper {
|
|
30420
|
+
/**
|
|
30421
|
+
*
|
|
30422
|
+
* @type {DataTypesSearchResponse}
|
|
30423
|
+
* @memberof DataTypesSearchResponseWrapper
|
|
30424
|
+
*/
|
|
30425
|
+
'data'?: DataTypesSearchResponse;
|
|
30426
|
+
/**
|
|
30427
|
+
*
|
|
30428
|
+
* @type {string}
|
|
30429
|
+
* @memberof DataTypesSearchResponseWrapper
|
|
30430
|
+
*/
|
|
30431
|
+
'message'?: string;
|
|
30432
|
+
/**
|
|
30433
|
+
*
|
|
30434
|
+
* @type {number}
|
|
30435
|
+
* @memberof DataTypesSearchResponseWrapper
|
|
30436
|
+
*/
|
|
30437
|
+
'status'?: number;
|
|
30438
|
+
}
|
|
30131
30439
|
/**
|
|
30132
30440
|
*
|
|
30133
30441
|
* @export
|
|
@@ -30136,22 +30444,32 @@ export interface DataTypesSearchRequestsGraphResponse {
|
|
|
30136
30444
|
export interface DataTypesSearchResult {
|
|
30137
30445
|
/**
|
|
30138
30446
|
*
|
|
30139
|
-
* @type {
|
|
30447
|
+
* @type {{ [key: string]: any; }}
|
|
30140
30448
|
* @memberof DataTypesSearchResult
|
|
30141
30449
|
*/
|
|
30142
|
-
'
|
|
30450
|
+
'document'?: {
|
|
30451
|
+
[key: string]: any;
|
|
30452
|
+
};
|
|
30143
30453
|
/**
|
|
30144
30454
|
*
|
|
30145
|
-
* @type {
|
|
30455
|
+
* @type {{ [key: string]: any; }}
|
|
30146
30456
|
* @memberof DataTypesSearchResult
|
|
30147
30457
|
*/
|
|
30148
|
-
'
|
|
30458
|
+
'highlight'?: {
|
|
30459
|
+
[key: string]: any;
|
|
30460
|
+
};
|
|
30149
30461
|
/**
|
|
30150
30462
|
*
|
|
30151
30463
|
* @type {string}
|
|
30152
30464
|
* @memberof DataTypesSearchResult
|
|
30153
30465
|
*/
|
|
30154
|
-
'
|
|
30466
|
+
'id'?: string;
|
|
30467
|
+
/**
|
|
30468
|
+
*
|
|
30469
|
+
* @type {number}
|
|
30470
|
+
* @memberof DataTypesSearchResult
|
|
30471
|
+
*/
|
|
30472
|
+
'score'?: number;
|
|
30155
30473
|
}
|
|
30156
30474
|
/**
|
|
30157
30475
|
*
|
|
@@ -30161,10 +30479,10 @@ export interface DataTypesSearchResult {
|
|
|
30161
30479
|
export interface DataTypesSearchResultResponse {
|
|
30162
30480
|
/**
|
|
30163
30481
|
*
|
|
30164
|
-
* @type {
|
|
30482
|
+
* @type {DataTypesConnectorSearchResult}
|
|
30165
30483
|
* @memberof DataTypesSearchResultResponse
|
|
30166
30484
|
*/
|
|
30167
|
-
'data'?:
|
|
30485
|
+
'data'?: DataTypesConnectorSearchResult;
|
|
30168
30486
|
/**
|
|
30169
30487
|
*
|
|
30170
30488
|
* @type {string}
|
|
@@ -31689,6 +32007,409 @@ export interface DataTypesStoreAccessWithDetails {
|
|
|
31689
32007
|
*/
|
|
31690
32008
|
'user_id'?: number;
|
|
31691
32009
|
}
|
|
32010
|
+
/**
|
|
32011
|
+
*
|
|
32012
|
+
* @export
|
|
32013
|
+
* @interface DataTypesStoreConfigUpdateRequest
|
|
32014
|
+
*/
|
|
32015
|
+
export interface DataTypesStoreConfigUpdateRequest {
|
|
32016
|
+
/**
|
|
32017
|
+
* Optional: If set, updates the public search flag
|
|
32018
|
+
* @type {boolean}
|
|
32019
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32020
|
+
*/
|
|
32021
|
+
'allow_public_search'?: boolean;
|
|
32022
|
+
/**
|
|
32023
|
+
*
|
|
32024
|
+
* @type {string}
|
|
32025
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32026
|
+
*/
|
|
32027
|
+
'collection_alias'?: string;
|
|
32028
|
+
/**
|
|
32029
|
+
*
|
|
32030
|
+
* @type {string}
|
|
32031
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32032
|
+
*/
|
|
32033
|
+
'collection_name'?: string;
|
|
32034
|
+
/**
|
|
32035
|
+
*
|
|
32036
|
+
* @type {string}
|
|
32037
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32038
|
+
*/
|
|
32039
|
+
'default_sorting_field'?: string;
|
|
32040
|
+
/**
|
|
32041
|
+
* Default stopwords set ID to use in searches
|
|
32042
|
+
* @type {string}
|
|
32043
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32044
|
+
*/
|
|
32045
|
+
'default_stopwords_set'?: string;
|
|
32046
|
+
/**
|
|
32047
|
+
*
|
|
32048
|
+
* @type {number}
|
|
32049
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32050
|
+
*/
|
|
32051
|
+
'drop_tokens_threshold'?: number;
|
|
32052
|
+
/**
|
|
32053
|
+
* Dropdown recommendations configuration
|
|
32054
|
+
* @type {DataTypesDropdownRecommendationsConfig}
|
|
32055
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32056
|
+
*/
|
|
32057
|
+
'dropdown_recommendations_config'?: DataTypesDropdownRecommendationsConfig;
|
|
32058
|
+
/**
|
|
32059
|
+
*
|
|
32060
|
+
* @type {string}
|
|
32061
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32062
|
+
*/
|
|
32063
|
+
'embed'?: string;
|
|
32064
|
+
/**
|
|
32065
|
+
*
|
|
32066
|
+
* @type {boolean}
|
|
32067
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32068
|
+
*/
|
|
32069
|
+
'enable_autocomplete'?: boolean;
|
|
32070
|
+
/**
|
|
32071
|
+
*
|
|
32072
|
+
* @type {boolean}
|
|
32073
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32074
|
+
*/
|
|
32075
|
+
'enable_highlight'?: boolean;
|
|
32076
|
+
/**
|
|
32077
|
+
*
|
|
32078
|
+
* @type {boolean}
|
|
32079
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32080
|
+
*/
|
|
32081
|
+
'enable_overrides'?: boolean;
|
|
32082
|
+
/**
|
|
32083
|
+
*
|
|
32084
|
+
* @type {boolean}
|
|
32085
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32086
|
+
*/
|
|
32087
|
+
'enable_smart_autocomplete'?: boolean;
|
|
32088
|
+
/**
|
|
32089
|
+
* Enable stemming on search collections
|
|
32090
|
+
* @type {boolean}
|
|
32091
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32092
|
+
*/
|
|
32093
|
+
'enable_stemming'?: boolean;
|
|
32094
|
+
/**
|
|
32095
|
+
*
|
|
32096
|
+
* @type {boolean}
|
|
32097
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32098
|
+
*/
|
|
32099
|
+
'enable_typo_highlight'?: boolean;
|
|
32100
|
+
/**
|
|
32101
|
+
*
|
|
32102
|
+
* @type {boolean}
|
|
32103
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32104
|
+
*/
|
|
32105
|
+
'enable_typo_tolerance'?: boolean;
|
|
32106
|
+
/**
|
|
32107
|
+
* No omitempty to preserve empty arrays
|
|
32108
|
+
* @type {Array<string>}
|
|
32109
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32110
|
+
*/
|
|
32111
|
+
'exclude_fields'?: Array<string>;
|
|
32112
|
+
/**
|
|
32113
|
+
*
|
|
32114
|
+
* @type {boolean}
|
|
32115
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32116
|
+
*/
|
|
32117
|
+
'exhaustive_search'?: boolean;
|
|
32118
|
+
/**
|
|
32119
|
+
* No omitempty to preserve empty arrays
|
|
32120
|
+
* @type {Array<string>}
|
|
32121
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32122
|
+
*/
|
|
32123
|
+
'facet_by'?: Array<string>;
|
|
32124
|
+
/**
|
|
32125
|
+
*
|
|
32126
|
+
* @type {string}
|
|
32127
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32128
|
+
*/
|
|
32129
|
+
'facet_query'?: string;
|
|
32130
|
+
/**
|
|
32131
|
+
* No omitempty to preserve empty arrays
|
|
32132
|
+
* @type {Array<DataTypesFacetRangeConfig>}
|
|
32133
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32134
|
+
*/
|
|
32135
|
+
'facet_ranges'?: Array<DataTypesFacetRangeConfig>;
|
|
32136
|
+
/**
|
|
32137
|
+
*
|
|
32138
|
+
* @type {string}
|
|
32139
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32140
|
+
*/
|
|
32141
|
+
'filter_by'?: string;
|
|
32142
|
+
/**
|
|
32143
|
+
*
|
|
32144
|
+
* @type {string}
|
|
32145
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32146
|
+
*/
|
|
32147
|
+
'group_by'?: string;
|
|
32148
|
+
/**
|
|
32149
|
+
*
|
|
32150
|
+
* @type {number}
|
|
32151
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32152
|
+
*/
|
|
32153
|
+
'group_limit'?: number;
|
|
32154
|
+
/**
|
|
32155
|
+
* No omitempty to preserve empty arrays
|
|
32156
|
+
* @type {Array<string>}
|
|
32157
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32158
|
+
*/
|
|
32159
|
+
'hidden_facet_fields'?: Array<string>;
|
|
32160
|
+
/**
|
|
32161
|
+
* No omitempty to preserve empty arrays
|
|
32162
|
+
* @type {Array<string>}
|
|
32163
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32164
|
+
*/
|
|
32165
|
+
'hidden_fields'?: Array<string>;
|
|
32166
|
+
/**
|
|
32167
|
+
* No omitempty to preserve empty arrays
|
|
32168
|
+
* @type {Array<string>}
|
|
32169
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32170
|
+
*/
|
|
32171
|
+
'hidden_filter_fields'?: Array<string>;
|
|
32172
|
+
/**
|
|
32173
|
+
*
|
|
32174
|
+
* @type {number}
|
|
32175
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32176
|
+
*/
|
|
32177
|
+
'highlight_affix_num_tokens'?: number;
|
|
32178
|
+
/**
|
|
32179
|
+
*
|
|
32180
|
+
* @type {string}
|
|
32181
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32182
|
+
*/
|
|
32183
|
+
'highlight_end_tag'?: string;
|
|
32184
|
+
/**
|
|
32185
|
+
* No omitempty to preserve empty arrays
|
|
32186
|
+
* @type {Array<string>}
|
|
32187
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32188
|
+
*/
|
|
32189
|
+
'highlight_fields'?: Array<string>;
|
|
32190
|
+
/**
|
|
32191
|
+
* No omitempty to preserve empty arrays
|
|
32192
|
+
* @type {Array<string>}
|
|
32193
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32194
|
+
*/
|
|
32195
|
+
'highlight_full_fields'?: Array<string>;
|
|
32196
|
+
/**
|
|
32197
|
+
*
|
|
32198
|
+
* @type {string}
|
|
32199
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32200
|
+
*/
|
|
32201
|
+
'highlight_start_tag'?: string;
|
|
32202
|
+
/**
|
|
32203
|
+
*
|
|
32204
|
+
* @type {string}
|
|
32205
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32206
|
+
*/
|
|
32207
|
+
'image_url'?: string;
|
|
32208
|
+
/**
|
|
32209
|
+
* No omitempty to preserve empty arrays
|
|
32210
|
+
* @type {Array<string>}
|
|
32211
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32212
|
+
*/
|
|
32213
|
+
'include_fields'?: Array<string>;
|
|
32214
|
+
/**
|
|
32215
|
+
* \"always\", \"fallback\", or \"off\"
|
|
32216
|
+
* @type {string}
|
|
32217
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32218
|
+
*/
|
|
32219
|
+
'infix'?: string;
|
|
32220
|
+
/**
|
|
32221
|
+
*
|
|
32222
|
+
* @type {string}
|
|
32223
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32224
|
+
*/
|
|
32225
|
+
'locale'?: string;
|
|
32226
|
+
/**
|
|
32227
|
+
*
|
|
32228
|
+
* @type {number}
|
|
32229
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32230
|
+
*/
|
|
32231
|
+
'max_candidates'?: number;
|
|
32232
|
+
/**
|
|
32233
|
+
*
|
|
32234
|
+
* @type {number}
|
|
32235
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32236
|
+
*/
|
|
32237
|
+
'max_facet_values'?: number;
|
|
32238
|
+
/**
|
|
32239
|
+
*
|
|
32240
|
+
* @type {number}
|
|
32241
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32242
|
+
*/
|
|
32243
|
+
'min_len_1typo'?: number;
|
|
32244
|
+
/**
|
|
32245
|
+
*
|
|
32246
|
+
* @type {number}
|
|
32247
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32248
|
+
*/
|
|
32249
|
+
'min_len_2typo'?: number;
|
|
32250
|
+
/**
|
|
32251
|
+
*
|
|
32252
|
+
* @type {number}
|
|
32253
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32254
|
+
*/
|
|
32255
|
+
'num_typos'?: number;
|
|
32256
|
+
/**
|
|
32257
|
+
*
|
|
32258
|
+
* @type {number}
|
|
32259
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32260
|
+
*/
|
|
32261
|
+
'page'?: number;
|
|
32262
|
+
/**
|
|
32263
|
+
*
|
|
32264
|
+
* @type {number}
|
|
32265
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32266
|
+
*/
|
|
32267
|
+
'per_page'?: number;
|
|
32268
|
+
/**
|
|
32269
|
+
*
|
|
32270
|
+
* @type {string}
|
|
32271
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32272
|
+
*/
|
|
32273
|
+
'prefix'?: string;
|
|
32274
|
+
/**
|
|
32275
|
+
*
|
|
32276
|
+
* @type {string}
|
|
32277
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32278
|
+
*/
|
|
32279
|
+
'preset'?: string;
|
|
32280
|
+
/**
|
|
32281
|
+
*
|
|
32282
|
+
* @type {string}
|
|
32283
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32284
|
+
*/
|
|
32285
|
+
'primary_text'?: string;
|
|
32286
|
+
/**
|
|
32287
|
+
*
|
|
32288
|
+
* @type {boolean}
|
|
32289
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32290
|
+
*/
|
|
32291
|
+
'prioritize_exact_match'?: boolean;
|
|
32292
|
+
/**
|
|
32293
|
+
* Required: Query string
|
|
32294
|
+
* @type {string}
|
|
32295
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32296
|
+
*/
|
|
32297
|
+
'q'?: string;
|
|
32298
|
+
/**
|
|
32299
|
+
* Required: Array of search fields
|
|
32300
|
+
* @type {Array<string>}
|
|
32301
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32302
|
+
*/
|
|
32303
|
+
'query_by'?: Array<string>;
|
|
32304
|
+
/**
|
|
32305
|
+
* Optional: Relative field weights as array (no omitempty to preserve empty arrays)
|
|
32306
|
+
* @type {Array<number>}
|
|
32307
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32308
|
+
*/
|
|
32309
|
+
'query_by_weights'?: Array<number>;
|
|
32310
|
+
/**
|
|
32311
|
+
* Query suggestions configuration
|
|
32312
|
+
* @type {DataTypesQuerySuggestionsConfig}
|
|
32313
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32314
|
+
*/
|
|
32315
|
+
'query_suggestions_config'?: DataTypesQuerySuggestionsConfig;
|
|
32316
|
+
/**
|
|
32317
|
+
*
|
|
32318
|
+
* @type {boolean}
|
|
32319
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32320
|
+
*/
|
|
32321
|
+
'query_syntax'?: boolean;
|
|
32322
|
+
/**
|
|
32323
|
+
*
|
|
32324
|
+
* @type {number}
|
|
32325
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32326
|
+
*/
|
|
32327
|
+
'search_cutoff_ms'?: number;
|
|
32328
|
+
/**
|
|
32329
|
+
* \"text\", \"vector\", \"hybrid\"
|
|
32330
|
+
* @type {string}
|
|
32331
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32332
|
+
*/
|
|
32333
|
+
'search_strategy'?: string;
|
|
32334
|
+
/**
|
|
32335
|
+
*
|
|
32336
|
+
* @type {string}
|
|
32337
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32338
|
+
*/
|
|
32339
|
+
'secondary_text'?: string;
|
|
32340
|
+
/**
|
|
32341
|
+
*
|
|
32342
|
+
* @type {boolean}
|
|
32343
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32344
|
+
*/
|
|
32345
|
+
'semantic_ranker'?: boolean;
|
|
32346
|
+
/**
|
|
32347
|
+
*
|
|
32348
|
+
* @type {number}
|
|
32349
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32350
|
+
*/
|
|
32351
|
+
'snippet_threshold'?: number;
|
|
32352
|
+
/**
|
|
32353
|
+
* No omitempty to preserve empty arrays
|
|
32354
|
+
* @type {Array<DataTypesSortField>}
|
|
32355
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32356
|
+
*/
|
|
32357
|
+
'sort_by'?: Array<DataTypesSortField>;
|
|
32358
|
+
/**
|
|
32359
|
+
* Locale for stemming (e.g., \"en\", \"fr\", \"de\")
|
|
32360
|
+
* @type {string}
|
|
32361
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32362
|
+
*/
|
|
32363
|
+
'stemming_locale'?: string;
|
|
32364
|
+
/**
|
|
32365
|
+
* Flattened stopwords and synonyms fields
|
|
32366
|
+
* @type {Array<DataTypesStopwordEntry>}
|
|
32367
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32368
|
+
*/
|
|
32369
|
+
'stopwords'?: Array<DataTypesStopwordEntry>;
|
|
32370
|
+
/**
|
|
32371
|
+
* No omitempty to preserve empty arrays
|
|
32372
|
+
* @type {Array<string>}
|
|
32373
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32374
|
+
*/
|
|
32375
|
+
'symbols_to_index'?: Array<string>;
|
|
32376
|
+
/**
|
|
32377
|
+
* No omitempty to preserve empty arrays
|
|
32378
|
+
* @type {Array<DataTypesSynonymEntry>}
|
|
32379
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32380
|
+
*/
|
|
32381
|
+
'synonyms'?: Array<DataTypesSynonymEntry>;
|
|
32382
|
+
/**
|
|
32383
|
+
*
|
|
32384
|
+
* @type {string}
|
|
32385
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32386
|
+
*/
|
|
32387
|
+
'tertiary_text'?: string;
|
|
32388
|
+
/**
|
|
32389
|
+
* Optional: Search-only scoped API key
|
|
32390
|
+
* @type {string}
|
|
32391
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32392
|
+
*/
|
|
32393
|
+
'token'?: string;
|
|
32394
|
+
/**
|
|
32395
|
+
* No omitempty to preserve empty arrays
|
|
32396
|
+
* @type {Array<string>}
|
|
32397
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32398
|
+
*/
|
|
32399
|
+
'token_separators'?: Array<string>;
|
|
32400
|
+
/**
|
|
32401
|
+
*
|
|
32402
|
+
* @type {boolean}
|
|
32403
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32404
|
+
*/
|
|
32405
|
+
'use_cache'?: boolean;
|
|
32406
|
+
/**
|
|
32407
|
+
*
|
|
32408
|
+
* @type {string}
|
|
32409
|
+
* @memberof DataTypesStoreConfigUpdateRequest
|
|
32410
|
+
*/
|
|
32411
|
+
'vector_query'?: string;
|
|
32412
|
+
}
|
|
31692
32413
|
/**
|
|
31693
32414
|
*
|
|
31694
32415
|
* @export
|
|
@@ -31873,6 +32594,49 @@ export interface DataTypesStoreCredentialsResponse {
|
|
|
31873
32594
|
*/
|
|
31874
32595
|
'status'?: number;
|
|
31875
32596
|
}
|
|
32597
|
+
/**
|
|
32598
|
+
*
|
|
32599
|
+
* @export
|
|
32600
|
+
* @interface DataTypesStoreInfoResponse
|
|
32601
|
+
*/
|
|
32602
|
+
export interface DataTypesStoreInfoResponse {
|
|
32603
|
+
/**
|
|
32604
|
+
*
|
|
32605
|
+
* @type {string}
|
|
32606
|
+
* @memberof DataTypesStoreInfoResponse
|
|
32607
|
+
*/
|
|
32608
|
+
'createdAt'?: string;
|
|
32609
|
+
/**
|
|
32610
|
+
*
|
|
32611
|
+
* @type {boolean}
|
|
32612
|
+
* @memberof DataTypesStoreInfoResponse
|
|
32613
|
+
*/
|
|
32614
|
+
'isActive'?: boolean;
|
|
32615
|
+
/**
|
|
32616
|
+
*
|
|
32617
|
+
* @type {string}
|
|
32618
|
+
* @memberof DataTypesStoreInfoResponse
|
|
32619
|
+
*/
|
|
32620
|
+
'location'?: string;
|
|
32621
|
+
/**
|
|
32622
|
+
*
|
|
32623
|
+
* @type {number}
|
|
32624
|
+
* @memberof DataTypesStoreInfoResponse
|
|
32625
|
+
*/
|
|
32626
|
+
'storeId'?: number;
|
|
32627
|
+
/**
|
|
32628
|
+
*
|
|
32629
|
+
* @type {string}
|
|
32630
|
+
* @memberof DataTypesStoreInfoResponse
|
|
32631
|
+
*/
|
|
32632
|
+
'storeName'?: string;
|
|
32633
|
+
/**
|
|
32634
|
+
*
|
|
32635
|
+
* @type {string}
|
|
32636
|
+
* @memberof DataTypesStoreInfoResponse
|
|
32637
|
+
*/
|
|
32638
|
+
'xStoreId'?: string;
|
|
32639
|
+
}
|
|
31876
32640
|
/**
|
|
31877
32641
|
*
|
|
31878
32642
|
* @export
|
|
@@ -32057,6 +32821,31 @@ export interface DataTypesStoreLevelMenuRightWithMenu {
|
|
|
32057
32821
|
*/
|
|
32058
32822
|
'storeName'?: string;
|
|
32059
32823
|
}
|
|
32824
|
+
/**
|
|
32825
|
+
*
|
|
32826
|
+
* @export
|
|
32827
|
+
* @interface DataTypesStoreRecordSizeMetrics
|
|
32828
|
+
*/
|
|
32829
|
+
export interface DataTypesStoreRecordSizeMetrics {
|
|
32830
|
+
/**
|
|
32831
|
+
*
|
|
32832
|
+
* @type {number}
|
|
32833
|
+
* @memberof DataTypesStoreRecordSizeMetrics
|
|
32834
|
+
*/
|
|
32835
|
+
'avg_record_size_bytes'?: number;
|
|
32836
|
+
/**
|
|
32837
|
+
*
|
|
32838
|
+
* @type {number}
|
|
32839
|
+
* @memberof DataTypesStoreRecordSizeMetrics
|
|
32840
|
+
*/
|
|
32841
|
+
'max_record_size_bytes'?: number;
|
|
32842
|
+
/**
|
|
32843
|
+
*
|
|
32844
|
+
* @type {number}
|
|
32845
|
+
* @memberof DataTypesStoreRecordSizeMetrics
|
|
32846
|
+
*/
|
|
32847
|
+
'record_count'?: number;
|
|
32848
|
+
}
|
|
32060
32849
|
/**
|
|
32061
32850
|
*
|
|
32062
32851
|
* @export
|
|
@@ -32292,12 +33081,6 @@ export interface DataTypesSubscription {
|
|
|
32292
33081
|
'createdAt'?: string;
|
|
32293
33082
|
/**
|
|
32294
33083
|
*
|
|
32295
|
-
* @type {number}
|
|
32296
|
-
* @memberof DataTypesSubscription
|
|
32297
|
-
*/
|
|
32298
|
-
'createdBy'?: number;
|
|
32299
|
-
/**
|
|
32300
|
-
* Subscription end date
|
|
32301
33084
|
* @type {string}
|
|
32302
33085
|
* @memberof DataTypesSubscription
|
|
32303
33086
|
*/
|
|
@@ -32316,46 +33099,34 @@ export interface DataTypesSubscription {
|
|
|
32316
33099
|
'modifiedAt'?: string;
|
|
32317
33100
|
/**
|
|
32318
33101
|
*
|
|
32319
|
-
* @type {number}
|
|
32320
|
-
* @memberof DataTypesSubscription
|
|
32321
|
-
*/
|
|
32322
|
-
'modifiedBy'?: number;
|
|
32323
|
-
/**
|
|
32324
|
-
* Nullable
|
|
32325
33102
|
* @type {string}
|
|
32326
33103
|
* @memberof DataTypesSubscription
|
|
32327
33104
|
*/
|
|
32328
33105
|
'nextBillingDate'?: string;
|
|
32329
33106
|
/**
|
|
32330
|
-
*
|
|
32331
|
-
* @type {number}
|
|
32332
|
-
* @memberof DataTypesSubscription
|
|
32333
|
-
*/
|
|
32334
|
-
'orgID'?: number;
|
|
32335
|
-
/**
|
|
32336
|
-
* Foreign key to mPlans
|
|
33107
|
+
* plan is config, not sensitive
|
|
32337
33108
|
* @type {number}
|
|
32338
33109
|
* @memberof DataTypesSubscription
|
|
32339
33110
|
*/
|
|
32340
33111
|
'planID'?: number;
|
|
32341
33112
|
/**
|
|
32342
|
-
*
|
|
33113
|
+
*
|
|
32343
33114
|
* @type {string}
|
|
32344
33115
|
* @memberof DataTypesSubscription
|
|
32345
33116
|
*/
|
|
32346
33117
|
'startDate'?: string;
|
|
32347
33118
|
/**
|
|
32348
|
-
*
|
|
33119
|
+
*
|
|
32349
33120
|
* @type {string}
|
|
32350
33121
|
* @memberof DataTypesSubscription
|
|
32351
33122
|
*/
|
|
32352
33123
|
'status'?: string;
|
|
32353
33124
|
/**
|
|
32354
|
-
*
|
|
32355
|
-
* @type {
|
|
33125
|
+
* public identifier
|
|
33126
|
+
* @type {string}
|
|
32356
33127
|
* @memberof DataTypesSubscription
|
|
32357
33128
|
*/
|
|
32358
|
-
'
|
|
33129
|
+
'subscription_id'?: string;
|
|
32359
33130
|
}
|
|
32360
33131
|
/**
|
|
32361
33132
|
*
|
|
@@ -45114,7 +45885,7 @@ export declare const AnalyticsEventsApiFp: (configuration?: Configuration) => {
|
|
|
45114
45885
|
* @param {*} [options] Override http request option.
|
|
45115
45886
|
* @throws {RequiredError}
|
|
45116
45887
|
*/
|
|
45117
|
-
analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
45888
|
+
analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesBatchEventData>>;
|
|
45118
45889
|
/**
|
|
45119
45890
|
* Retrieve analytics configuration including supported event types, batch limits, and funnel stages for client integration
|
|
45120
45891
|
* @summary Get Analytics Configuration
|
|
@@ -45123,7 +45894,7 @@ export declare const AnalyticsEventsApiFp: (configuration?: Configuration) => {
|
|
|
45123
45894
|
* @param {*} [options] Override http request option.
|
|
45124
45895
|
* @throws {RequiredError}
|
|
45125
45896
|
*/
|
|
45126
|
-
analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
45897
|
+
analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesAnalyticsConfigData>>;
|
|
45127
45898
|
/**
|
|
45128
45899
|
* Submit a single analytics event for tracking user interactions, search behavior, and conversions
|
|
45129
45900
|
* @summary Submit Analytics Event
|
|
@@ -45133,7 +45904,7 @@ export declare const AnalyticsEventsApiFp: (configuration?: Configuration) => {
|
|
|
45133
45904
|
* @param {*} [options] Override http request option.
|
|
45134
45905
|
* @throws {RequiredError}
|
|
45135
45906
|
*/
|
|
45136
|
-
analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
45907
|
+
analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesEventSubmitData>>;
|
|
45137
45908
|
/**
|
|
45138
45909
|
* Retrieve the complete event schema including required and optional fields, data types, and validation rules
|
|
45139
45910
|
* @summary Get Event Schema
|
|
@@ -45152,7 +45923,7 @@ export declare const AnalyticsEventsApiFp: (configuration?: Configuration) => {
|
|
|
45152
45923
|
* @param {*} [options] Override http request option.
|
|
45153
45924
|
* @throws {RequiredError}
|
|
45154
45925
|
*/
|
|
45155
|
-
analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
45926
|
+
analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesEventValidateData>>;
|
|
45156
45927
|
};
|
|
45157
45928
|
/**
|
|
45158
45929
|
* AnalyticsEventsApi - factory interface
|
|
@@ -45168,7 +45939,7 @@ export declare const AnalyticsEventsApiFactory: (configuration?: Configuration,
|
|
|
45168
45939
|
* @param {*} [options] Override http request option.
|
|
45169
45940
|
* @throws {RequiredError}
|
|
45170
45941
|
*/
|
|
45171
|
-
analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
45942
|
+
analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesBatchEventData>;
|
|
45172
45943
|
/**
|
|
45173
45944
|
* Retrieve analytics configuration including supported event types, batch limits, and funnel stages for client integration
|
|
45174
45945
|
* @summary Get Analytics Configuration
|
|
@@ -45177,7 +45948,7 @@ export declare const AnalyticsEventsApiFactory: (configuration?: Configuration,
|
|
|
45177
45948
|
* @param {*} [options] Override http request option.
|
|
45178
45949
|
* @throws {RequiredError}
|
|
45179
45950
|
*/
|
|
45180
|
-
analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
45951
|
+
analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesAnalyticsConfigData>;
|
|
45181
45952
|
/**
|
|
45182
45953
|
* Submit a single analytics event for tracking user interactions, search behavior, and conversions
|
|
45183
45954
|
* @summary Submit Analytics Event
|
|
@@ -45187,7 +45958,7 @@ export declare const AnalyticsEventsApiFactory: (configuration?: Configuration,
|
|
|
45187
45958
|
* @param {*} [options] Override http request option.
|
|
45188
45959
|
* @throws {RequiredError}
|
|
45189
45960
|
*/
|
|
45190
|
-
analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
45961
|
+
analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesEventSubmitData>;
|
|
45191
45962
|
/**
|
|
45192
45963
|
* Retrieve the complete event schema including required and optional fields, data types, and validation rules
|
|
45193
45964
|
* @summary Get Event Schema
|
|
@@ -45206,7 +45977,7 @@ export declare const AnalyticsEventsApiFactory: (configuration?: Configuration,
|
|
|
45206
45977
|
* @param {*} [options] Override http request option.
|
|
45207
45978
|
* @throws {RequiredError}
|
|
45208
45979
|
*/
|
|
45209
|
-
analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
45980
|
+
analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesEventValidateData>;
|
|
45210
45981
|
};
|
|
45211
45982
|
/**
|
|
45212
45983
|
* AnalyticsEventsApi - object-oriented interface
|
|
@@ -45225,7 +45996,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
45225
45996
|
* @throws {RequiredError}
|
|
45226
45997
|
* @memberof AnalyticsEventsApi
|
|
45227
45998
|
*/
|
|
45228
|
-
analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
45999
|
+
analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesBatchEventData, any, {}>>;
|
|
45229
46000
|
/**
|
|
45230
46001
|
* Retrieve analytics configuration including supported event types, batch limits, and funnel stages for client integration
|
|
45231
46002
|
* @summary Get Analytics Configuration
|
|
@@ -45235,7 +46006,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
45235
46006
|
* @throws {RequiredError}
|
|
45236
46007
|
* @memberof AnalyticsEventsApi
|
|
45237
46008
|
*/
|
|
45238
|
-
analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
46009
|
+
analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesAnalyticsConfigData, any, {}>>;
|
|
45239
46010
|
/**
|
|
45240
46011
|
* Submit a single analytics event for tracking user interactions, search behavior, and conversions
|
|
45241
46012
|
* @summary Submit Analytics Event
|
|
@@ -45246,7 +46017,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
45246
46017
|
* @throws {RequiredError}
|
|
45247
46018
|
* @memberof AnalyticsEventsApi
|
|
45248
46019
|
*/
|
|
45249
|
-
analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
46020
|
+
analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesEventSubmitData, any, {}>>;
|
|
45250
46021
|
/**
|
|
45251
46022
|
* Retrieve the complete event schema including required and optional fields, data types, and validation rules
|
|
45252
46023
|
* @summary Get Event Schema
|
|
@@ -45267,7 +46038,7 @@ export declare class AnalyticsEventsApi extends BaseAPI {
|
|
|
45267
46038
|
* @throws {RequiredError}
|
|
45268
46039
|
* @memberof AnalyticsEventsApi
|
|
45269
46040
|
*/
|
|
45270
|
-
analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
46041
|
+
analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesEventValidateData, any, {}>>;
|
|
45271
46042
|
}
|
|
45272
46043
|
/**
|
|
45273
46044
|
* AnalyticsFunnelsApi - axios parameter creator
|
|
@@ -54400,6 +55171,13 @@ export declare class FeatureLimitsApi extends BaseAPI {
|
|
|
54400
55171
|
* @export
|
|
54401
55172
|
*/
|
|
54402
55173
|
export declare const FeatureLimitsAdminApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
55174
|
+
/**
|
|
55175
|
+
* Flushes all feature_limit:org_plan:* keys from Redis. Use after updating plan-level feature limits in the database so every org picks up the new limits on their next request.
|
|
55176
|
+
* @summary Invalidate all org plan caches (Admin)
|
|
55177
|
+
* @param {*} [options] Override http request option.
|
|
55178
|
+
* @throws {RequiredError}
|
|
55179
|
+
*/
|
|
55180
|
+
adminV1FeatureLimitsCacheInvalidateAllPost: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
54403
55181
|
/**
|
|
54404
55182
|
* Invalidates the cached plan data for an organization
|
|
54405
55183
|
* @summary Invalidate plan cache (Admin)
|
|
@@ -54429,6 +55207,13 @@ export declare const FeatureLimitsAdminApiAxiosParamCreator: (configuration?: Co
|
|
|
54429
55207
|
* @export
|
|
54430
55208
|
*/
|
|
54431
55209
|
export declare const FeatureLimitsAdminApiFp: (configuration?: Configuration) => {
|
|
55210
|
+
/**
|
|
55211
|
+
* Flushes all feature_limit:org_plan:* keys from Redis. Use after updating plan-level feature limits in the database so every org picks up the new limits on their next request.
|
|
55212
|
+
* @summary Invalidate all org plan caches (Admin)
|
|
55213
|
+
* @param {*} [options] Override http request option.
|
|
55214
|
+
* @throws {RequiredError}
|
|
55215
|
+
*/
|
|
55216
|
+
adminV1FeatureLimitsCacheInvalidateAllPost(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
54432
55217
|
/**
|
|
54433
55218
|
* Invalidates the cached plan data for an organization
|
|
54434
55219
|
* @summary Invalidate plan cache (Admin)
|
|
@@ -54458,6 +55243,13 @@ export declare const FeatureLimitsAdminApiFp: (configuration?: Configuration) =>
|
|
|
54458
55243
|
* @export
|
|
54459
55244
|
*/
|
|
54460
55245
|
export declare const FeatureLimitsAdminApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
55246
|
+
/**
|
|
55247
|
+
* Flushes all feature_limit:org_plan:* keys from Redis. Use after updating plan-level feature limits in the database so every org picks up the new limits on their next request.
|
|
55248
|
+
* @summary Invalidate all org plan caches (Admin)
|
|
55249
|
+
* @param {*} [options] Override http request option.
|
|
55250
|
+
* @throws {RequiredError}
|
|
55251
|
+
*/
|
|
55252
|
+
adminV1FeatureLimitsCacheInvalidateAllPost(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
54461
55253
|
/**
|
|
54462
55254
|
* Invalidates the cached plan data for an organization
|
|
54463
55255
|
* @summary Invalidate plan cache (Admin)
|
|
@@ -54489,6 +55281,14 @@ export declare const FeatureLimitsAdminApiFactory: (configuration?: Configuratio
|
|
|
54489
55281
|
* @extends {BaseAPI}
|
|
54490
55282
|
*/
|
|
54491
55283
|
export declare class FeatureLimitsAdminApi extends BaseAPI {
|
|
55284
|
+
/**
|
|
55285
|
+
* Flushes all feature_limit:org_plan:* keys from Redis. Use after updating plan-level feature limits in the database so every org picks up the new limits on their next request.
|
|
55286
|
+
* @summary Invalidate all org plan caches (Admin)
|
|
55287
|
+
* @param {*} [options] Override http request option.
|
|
55288
|
+
* @throws {RequiredError}
|
|
55289
|
+
* @memberof FeatureLimitsAdminApi
|
|
55290
|
+
*/
|
|
55291
|
+
adminV1FeatureLimitsCacheInvalidateAllPost(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
54492
55292
|
/**
|
|
54493
55293
|
* Invalidates the cached plan data for an organization
|
|
54494
55294
|
* @summary Invalidate plan cache (Admin)
|
|
@@ -63355,14 +64155,14 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
63355
64155
|
* @summary Search (POST)
|
|
63356
64156
|
* @param {string} xStoreid Store ID (from dashboard)
|
|
63357
64157
|
* @param {string} xStoresecret Store read secret (from dashboard)
|
|
63358
|
-
* @param {
|
|
64158
|
+
* @param {DataTypesSearchRequest} dataTypesSearchRequest Search query, filters, pagination, and options
|
|
63359
64159
|
* @param {string} [xUserId] User ID for personalization
|
|
63360
64160
|
* @param {string} [xAnonId] Anonymous user ID for personalization
|
|
63361
64161
|
* @param {string} [xSessionId] Session ID for personalization
|
|
63362
64162
|
* @param {*} [options] Override http request option.
|
|
63363
64163
|
* @throws {RequiredError}
|
|
63364
64164
|
*/
|
|
63365
|
-
v1SearchPost: (xStoreid: string, xStoresecret: string,
|
|
64165
|
+
v1SearchPost: (xStoreid: string, xStoresecret: string, dataTypesSearchRequest: DataTypesSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
63366
64166
|
};
|
|
63367
64167
|
/**
|
|
63368
64168
|
* SearchApi - functional programming interface
|
|
@@ -63470,20 +64270,20 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
|
63470
64270
|
* @param {*} [options] Override http request option.
|
|
63471
64271
|
* @throws {RequiredError}
|
|
63472
64272
|
*/
|
|
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<
|
|
64273
|
+
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
64274
|
/**
|
|
63475
64275
|
* 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
64276
|
* @summary Search (POST)
|
|
63477
64277
|
* @param {string} xStoreid Store ID (from dashboard)
|
|
63478
64278
|
* @param {string} xStoresecret Store read secret (from dashboard)
|
|
63479
|
-
* @param {
|
|
64279
|
+
* @param {DataTypesSearchRequest} dataTypesSearchRequest Search query, filters, pagination, and options
|
|
63480
64280
|
* @param {string} [xUserId] User ID for personalization
|
|
63481
64281
|
* @param {string} [xAnonId] Anonymous user ID for personalization
|
|
63482
64282
|
* @param {string} [xSessionId] Session ID for personalization
|
|
63483
64283
|
* @param {*} [options] Override http request option.
|
|
63484
64284
|
* @throws {RequiredError}
|
|
63485
64285
|
*/
|
|
63486
|
-
v1SearchPost(xStoreid: string, xStoresecret: string,
|
|
64286
|
+
v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesSearchRequest: DataTypesSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSearchResponseWrapper>>;
|
|
63487
64287
|
};
|
|
63488
64288
|
/**
|
|
63489
64289
|
* SearchApi - factory interface
|
|
@@ -63591,20 +64391,20 @@ export declare const SearchApiFactory: (configuration?: Configuration, basePath?
|
|
|
63591
64391
|
* @param {*} [options] Override http request option.
|
|
63592
64392
|
* @throws {RequiredError}
|
|
63593
64393
|
*/
|
|
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<
|
|
64394
|
+
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
64395
|
/**
|
|
63596
64396
|
* 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
64397
|
* @summary Search (POST)
|
|
63598
64398
|
* @param {string} xStoreid Store ID (from dashboard)
|
|
63599
64399
|
* @param {string} xStoresecret Store read secret (from dashboard)
|
|
63600
|
-
* @param {
|
|
64400
|
+
* @param {DataTypesSearchRequest} dataTypesSearchRequest Search query, filters, pagination, and options
|
|
63601
64401
|
* @param {string} [xUserId] User ID for personalization
|
|
63602
64402
|
* @param {string} [xAnonId] Anonymous user ID for personalization
|
|
63603
64403
|
* @param {string} [xSessionId] Session ID for personalization
|
|
63604
64404
|
* @param {*} [options] Override http request option.
|
|
63605
64405
|
* @throws {RequiredError}
|
|
63606
64406
|
*/
|
|
63607
|
-
v1SearchPost(xStoreid: string, xStoresecret: string,
|
|
64407
|
+
v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesSearchRequest: DataTypesSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSearchResponseWrapper>;
|
|
63608
64408
|
};
|
|
63609
64409
|
/**
|
|
63610
64410
|
* SearchApi - object-oriented interface
|
|
@@ -63721,13 +64521,13 @@ export declare class SearchApi extends BaseAPI {
|
|
|
63721
64521
|
* @throws {RequiredError}
|
|
63722
64522
|
* @memberof SearchApi
|
|
63723
64523
|
*/
|
|
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<
|
|
64524
|
+
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
64525
|
/**
|
|
63726
64526
|
* 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
64527
|
* @summary Search (POST)
|
|
63728
64528
|
* @param {string} xStoreid Store ID (from dashboard)
|
|
63729
64529
|
* @param {string} xStoresecret Store read secret (from dashboard)
|
|
63730
|
-
* @param {
|
|
64530
|
+
* @param {DataTypesSearchRequest} dataTypesSearchRequest Search query, filters, pagination, and options
|
|
63731
64531
|
* @param {string} [xUserId] User ID for personalization
|
|
63732
64532
|
* @param {string} [xAnonId] Anonymous user ID for personalization
|
|
63733
64533
|
* @param {string} [xSessionId] Session ID for personalization
|
|
@@ -63735,7 +64535,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
63735
64535
|
* @throws {RequiredError}
|
|
63736
64536
|
* @memberof SearchApi
|
|
63737
64537
|
*/
|
|
63738
|
-
v1SearchPost(xStoreid: string, xStoresecret: string,
|
|
64538
|
+
v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesSearchRequest: DataTypesSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesSearchResponseWrapper, any, {}>>;
|
|
63739
64539
|
}
|
|
63740
64540
|
/**
|
|
63741
64541
|
* StopwordsApi - axios parameter creator
|
|
@@ -64732,11 +65532,11 @@ export declare const StoreManagementApiAxiosParamCreator: (configuration?: Confi
|
|
|
64732
65532
|
* 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
65533
|
* @summary Create Store (Public SDK API)
|
|
64734
65534
|
* @param {string} authorization Bearer JWT Token
|
|
64735
|
-
* @param {
|
|
65535
|
+
* @param {DataTypesCreateStoreRequest} dataTypesCreateStoreRequest Store creation request
|
|
64736
65536
|
* @param {*} [options] Override http request option.
|
|
64737
65537
|
* @throws {RequiredError}
|
|
64738
65538
|
*/
|
|
64739
|
-
apiV1StoresPost: (authorization: string,
|
|
65539
|
+
apiV1StoresPost: (authorization: string, dataTypesCreateStoreRequest: DataTypesCreateStoreRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
64740
65540
|
/**
|
|
64741
65541
|
* Returns search and query-suggestions configuration for the store. **Auth:** `x-storeid` and `x-storesecret`. Path `xStoreID` must match the `x-storeid` header.
|
|
64742
65542
|
* @summary Get store configuration
|
|
@@ -64753,11 +65553,11 @@ export declare const StoreManagementApiAxiosParamCreator: (configuration?: Confi
|
|
|
64753
65553
|
* @param {string} xStoreid Store ID (from dashboard)
|
|
64754
65554
|
* @param {string} xStoreWriteSecret Store write secret
|
|
64755
65555
|
* @param {string} xStoreID Store ID (must match x-storeid header)
|
|
64756
|
-
* @param {
|
|
65556
|
+
* @param {DataTypesStoreConfigUpdateRequest} dataTypesStoreConfigUpdateRequest Fields to update (partial, includes allow_public_search)
|
|
64757
65557
|
* @param {*} [options] Override http request option.
|
|
64758
65558
|
* @throws {RequiredError}
|
|
64759
65559
|
*/
|
|
64760
|
-
apiV1StoresXStoreIDConfigPut: (xStoreid: string, xStoreWriteSecret: string, xStoreID: string,
|
|
65560
|
+
apiV1StoresXStoreIDConfigPut: (xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesStoreConfigUpdateRequest: DataTypesStoreConfigUpdateRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
64761
65561
|
/**
|
|
64762
65562
|
* 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
65563
|
* @summary Get store config schema
|
|
@@ -64884,11 +65684,11 @@ export declare const StoreManagementApiFp: (configuration?: Configuration) => {
|
|
|
64884
65684
|
* 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
65685
|
* @summary Create Store (Public SDK API)
|
|
64886
65686
|
* @param {string} authorization Bearer JWT Token
|
|
64887
|
-
* @param {
|
|
65687
|
+
* @param {DataTypesCreateStoreRequest} dataTypesCreateStoreRequest Store creation request
|
|
64888
65688
|
* @param {*} [options] Override http request option.
|
|
64889
65689
|
* @throws {RequiredError}
|
|
64890
65690
|
*/
|
|
64891
|
-
apiV1StoresPost(authorization: string,
|
|
65691
|
+
apiV1StoresPost(authorization: string, dataTypesCreateStoreRequest: DataTypesCreateStoreRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesCreateStoreResponse>>;
|
|
64892
65692
|
/**
|
|
64893
65693
|
* Returns search and query-suggestions configuration for the store. **Auth:** `x-storeid` and `x-storesecret`. Path `xStoreID` must match the `x-storeid` header.
|
|
64894
65694
|
* @summary Get store configuration
|
|
@@ -64905,11 +65705,11 @@ export declare const StoreManagementApiFp: (configuration?: Configuration) => {
|
|
|
64905
65705
|
* @param {string} xStoreid Store ID (from dashboard)
|
|
64906
65706
|
* @param {string} xStoreWriteSecret Store write secret
|
|
64907
65707
|
* @param {string} xStoreID Store ID (must match x-storeid header)
|
|
64908
|
-
* @param {
|
|
65708
|
+
* @param {DataTypesStoreConfigUpdateRequest} dataTypesStoreConfigUpdateRequest Fields to update (partial, includes allow_public_search)
|
|
64909
65709
|
* @param {*} [options] Override http request option.
|
|
64910
65710
|
* @throws {RequiredError}
|
|
64911
65711
|
*/
|
|
64912
|
-
apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string,
|
|
65712
|
+
apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesStoreConfigUpdateRequest: DataTypesStoreConfigUpdateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesIndexConfigResponseWrapper>>;
|
|
64913
65713
|
/**
|
|
64914
65714
|
* 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
65715
|
* @summary Get store config schema
|
|
@@ -64983,7 +65783,7 @@ export declare const StoreManagementApiFp: (configuration?: Configuration) => {
|
|
|
64983
65783
|
* @param {*} [options] Override http request option.
|
|
64984
65784
|
* @throws {RequiredError}
|
|
64985
65785
|
*/
|
|
64986
|
-
apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
65786
|
+
apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesStoreInfoResponse>>;
|
|
64987
65787
|
/**
|
|
64988
65788
|
* Returns autocomplete/suggestions configuration for the store. **Auth:** `x-storeid` and `x-storesecret`. Path `xStoreID` must match the `x-storeid` header.
|
|
64989
65789
|
* @summary Get query suggestions configuration
|
|
@@ -65036,11 +65836,11 @@ export declare const StoreManagementApiFactory: (configuration?: Configuration,
|
|
|
65036
65836
|
* 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
65837
|
* @summary Create Store (Public SDK API)
|
|
65038
65838
|
* @param {string} authorization Bearer JWT Token
|
|
65039
|
-
* @param {
|
|
65839
|
+
* @param {DataTypesCreateStoreRequest} dataTypesCreateStoreRequest Store creation request
|
|
65040
65840
|
* @param {*} [options] Override http request option.
|
|
65041
65841
|
* @throws {RequiredError}
|
|
65042
65842
|
*/
|
|
65043
|
-
apiV1StoresPost(authorization: string,
|
|
65843
|
+
apiV1StoresPost(authorization: string, dataTypesCreateStoreRequest: DataTypesCreateStoreRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesCreateStoreResponse>;
|
|
65044
65844
|
/**
|
|
65045
65845
|
* Returns search and query-suggestions configuration for the store. **Auth:** `x-storeid` and `x-storesecret`. Path `xStoreID` must match the `x-storeid` header.
|
|
65046
65846
|
* @summary Get store configuration
|
|
@@ -65057,11 +65857,11 @@ export declare const StoreManagementApiFactory: (configuration?: Configuration,
|
|
|
65057
65857
|
* @param {string} xStoreid Store ID (from dashboard)
|
|
65058
65858
|
* @param {string} xStoreWriteSecret Store write secret
|
|
65059
65859
|
* @param {string} xStoreID Store ID (must match x-storeid header)
|
|
65060
|
-
* @param {
|
|
65860
|
+
* @param {DataTypesStoreConfigUpdateRequest} dataTypesStoreConfigUpdateRequest Fields to update (partial, includes allow_public_search)
|
|
65061
65861
|
* @param {*} [options] Override http request option.
|
|
65062
65862
|
* @throws {RequiredError}
|
|
65063
65863
|
*/
|
|
65064
|
-
apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string,
|
|
65864
|
+
apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesStoreConfigUpdateRequest: DataTypesStoreConfigUpdateRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesIndexConfigResponseWrapper>;
|
|
65065
65865
|
/**
|
|
65066
65866
|
* 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
65867
|
* @summary Get store config schema
|
|
@@ -65135,7 +65935,7 @@ export declare const StoreManagementApiFactory: (configuration?: Configuration,
|
|
|
65135
65935
|
* @param {*} [options] Override http request option.
|
|
65136
65936
|
* @throws {RequiredError}
|
|
65137
65937
|
*/
|
|
65138
|
-
apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
65938
|
+
apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesStoreInfoResponse>;
|
|
65139
65939
|
/**
|
|
65140
65940
|
* Returns autocomplete/suggestions configuration for the store. **Auth:** `x-storeid` and `x-storesecret`. Path `xStoreID` must match the `x-storeid` header.
|
|
65141
65941
|
* @summary Get query suggestions configuration
|
|
@@ -65190,12 +65990,12 @@ export declare class StoreManagementApi extends BaseAPI {
|
|
|
65190
65990
|
* 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
65991
|
* @summary Create Store (Public SDK API)
|
|
65192
65992
|
* @param {string} authorization Bearer JWT Token
|
|
65193
|
-
* @param {
|
|
65993
|
+
* @param {DataTypesCreateStoreRequest} dataTypesCreateStoreRequest Store creation request
|
|
65194
65994
|
* @param {*} [options] Override http request option.
|
|
65195
65995
|
* @throws {RequiredError}
|
|
65196
65996
|
* @memberof StoreManagementApi
|
|
65197
65997
|
*/
|
|
65198
|
-
apiV1StoresPost(authorization: string,
|
|
65998
|
+
apiV1StoresPost(authorization: string, dataTypesCreateStoreRequest: DataTypesCreateStoreRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesCreateStoreResponse, any, {}>>;
|
|
65199
65999
|
/**
|
|
65200
66000
|
* Returns search and query-suggestions configuration for the store. **Auth:** `x-storeid` and `x-storesecret`. Path `xStoreID` must match the `x-storeid` header.
|
|
65201
66001
|
* @summary Get store configuration
|
|
@@ -65213,12 +66013,12 @@ export declare class StoreManagementApi extends BaseAPI {
|
|
|
65213
66013
|
* @param {string} xStoreid Store ID (from dashboard)
|
|
65214
66014
|
* @param {string} xStoreWriteSecret Store write secret
|
|
65215
66015
|
* @param {string} xStoreID Store ID (must match x-storeid header)
|
|
65216
|
-
* @param {
|
|
66016
|
+
* @param {DataTypesStoreConfigUpdateRequest} dataTypesStoreConfigUpdateRequest Fields to update (partial, includes allow_public_search)
|
|
65217
66017
|
* @param {*} [options] Override http request option.
|
|
65218
66018
|
* @throws {RequiredError}
|
|
65219
66019
|
* @memberof StoreManagementApi
|
|
65220
66020
|
*/
|
|
65221
|
-
apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string,
|
|
66021
|
+
apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesStoreConfigUpdateRequest: DataTypesStoreConfigUpdateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesIndexConfigResponseWrapper, any, {}>>;
|
|
65222
66022
|
/**
|
|
65223
66023
|
* 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
66024
|
* @summary Get store config schema
|
|
@@ -65299,7 +66099,7 @@ export declare class StoreManagementApi extends BaseAPI {
|
|
|
65299
66099
|
* @throws {RequiredError}
|
|
65300
66100
|
* @memberof StoreManagementApi
|
|
65301
66101
|
*/
|
|
65302
|
-
apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
66102
|
+
apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesStoreInfoResponse, any, {}>>;
|
|
65303
66103
|
/**
|
|
65304
66104
|
* Returns autocomplete/suggestions configuration for the store. **Auth:** `x-storeid` and `x-storesecret`. Path `xStoreID` must match the `x-storeid` header.
|
|
65305
66105
|
* @summary Get query suggestions configuration
|
|
@@ -65383,6 +66183,14 @@ export declare const StoresApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
65383
66183
|
* @throws {RequiredError}
|
|
65384
66184
|
*/
|
|
65385
66185
|
adminStoresStoreIDDocumentsDelete: (storeID: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
66186
|
+
/**
|
|
66187
|
+
*
|
|
66188
|
+
* @summary Get store record size metrics
|
|
66189
|
+
* @param {number} storeID Store ID
|
|
66190
|
+
* @param {*} [options] Override http request option.
|
|
66191
|
+
* @throws {RequiredError}
|
|
66192
|
+
*/
|
|
66193
|
+
adminStoresStoreIDMetricsRecordSizeGet: (storeID: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65386
66194
|
/**
|
|
65387
66195
|
* Updates store information by ID.
|
|
65388
66196
|
* @summary Update an existing store
|
|
@@ -65619,6 +66427,14 @@ export declare const StoresApiFp: (configuration?: Configuration) => {
|
|
|
65619
66427
|
* @throws {RequiredError}
|
|
65620
66428
|
*/
|
|
65621
66429
|
adminStoresStoreIDDocumentsDelete(storeID: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesClearDocumentsResponseWrapper>>;
|
|
66430
|
+
/**
|
|
66431
|
+
*
|
|
66432
|
+
* @summary Get store record size metrics
|
|
66433
|
+
* @param {number} storeID Store ID
|
|
66434
|
+
* @param {*} [options] Override http request option.
|
|
66435
|
+
* @throws {RequiredError}
|
|
66436
|
+
*/
|
|
66437
|
+
adminStoresStoreIDMetricsRecordSizeGet(storeID: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesStoreRecordSizeMetrics>>;
|
|
65622
66438
|
/**
|
|
65623
66439
|
* Updates store information by ID.
|
|
65624
66440
|
* @summary Update an existing store
|
|
@@ -65855,6 +66671,14 @@ export declare const StoresApiFactory: (configuration?: Configuration, basePath?
|
|
|
65855
66671
|
* @throws {RequiredError}
|
|
65856
66672
|
*/
|
|
65857
66673
|
adminStoresStoreIDDocumentsDelete(storeID: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesClearDocumentsResponseWrapper>;
|
|
66674
|
+
/**
|
|
66675
|
+
*
|
|
66676
|
+
* @summary Get store record size metrics
|
|
66677
|
+
* @param {number} storeID Store ID
|
|
66678
|
+
* @param {*} [options] Override http request option.
|
|
66679
|
+
* @throws {RequiredError}
|
|
66680
|
+
*/
|
|
66681
|
+
adminStoresStoreIDMetricsRecordSizeGet(storeID: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesStoreRecordSizeMetrics>;
|
|
65858
66682
|
/**
|
|
65859
66683
|
* Updates store information by ID.
|
|
65860
66684
|
* @summary Update an existing store
|
|
@@ -66097,6 +66921,15 @@ export declare class StoresApi extends BaseAPI {
|
|
|
66097
66921
|
* @memberof StoresApi
|
|
66098
66922
|
*/
|
|
66099
66923
|
adminStoresStoreIDDocumentsDelete(storeID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesClearDocumentsResponseWrapper, any, {}>>;
|
|
66924
|
+
/**
|
|
66925
|
+
*
|
|
66926
|
+
* @summary Get store record size metrics
|
|
66927
|
+
* @param {number} storeID Store ID
|
|
66928
|
+
* @param {*} [options] Override http request option.
|
|
66929
|
+
* @throws {RequiredError}
|
|
66930
|
+
* @memberof StoresApi
|
|
66931
|
+
*/
|
|
66932
|
+
adminStoresStoreIDMetricsRecordSizeGet(storeID: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseDataTypesStoreRecordSizeMetrics, any, {}>>;
|
|
66100
66933
|
/**
|
|
66101
66934
|
* Updates store information by ID.
|
|
66102
66935
|
* @summary Update an existing store
|