@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/api.ts CHANGED
@@ -12546,6 +12546,118 @@ export interface DataTypesAdminSearchRequest {
12546
12546
  */
12547
12547
  'widget_mode'?: boolean;
12548
12548
  }
12549
+ /**
12550
+ *
12551
+ * @export
12552
+ * @interface DataTypesAnalyticsConfigBatchLimits
12553
+ */
12554
+ export interface DataTypesAnalyticsConfigBatchLimits {
12555
+ /**
12556
+ *
12557
+ * @type {number}
12558
+ * @memberof DataTypesAnalyticsConfigBatchLimits
12559
+ */
12560
+ 'max_event_size_bytes'?: number;
12561
+ /**
12562
+ *
12563
+ * @type {number}
12564
+ * @memberof DataTypesAnalyticsConfigBatchLimits
12565
+ */
12566
+ 'max_events_per_batch'?: number;
12567
+ }
12568
+ /**
12569
+ *
12570
+ * @export
12571
+ * @interface DataTypesAnalyticsConfigData
12572
+ */
12573
+ export interface DataTypesAnalyticsConfigData {
12574
+ /**
12575
+ *
12576
+ * @type {DataTypesAnalyticsConfigBatchLimits}
12577
+ * @memberof DataTypesAnalyticsConfigData
12578
+ */
12579
+ 'batch_limits'?: DataTypesAnalyticsConfigBatchLimits;
12580
+ /**
12581
+ *
12582
+ * @type {DataTypesAnalyticsConfigFunnelStages}
12583
+ * @memberof DataTypesAnalyticsConfigData
12584
+ */
12585
+ 'funnel_stages'?: DataTypesAnalyticsConfigFunnelStages;
12586
+ /**
12587
+ *
12588
+ * @type {DataTypesAnalyticsConfigMetadataGuidelines}
12589
+ * @memberof DataTypesAnalyticsConfigData
12590
+ */
12591
+ 'metadata_guidelines'?: DataTypesAnalyticsConfigMetadataGuidelines;
12592
+ /**
12593
+ *
12594
+ * @type {Array<string>}
12595
+ * @memberof DataTypesAnalyticsConfigData
12596
+ */
12597
+ 'optional_fields'?: Array<string>;
12598
+ /**
12599
+ *
12600
+ * @type {Array<string>}
12601
+ * @memberof DataTypesAnalyticsConfigData
12602
+ */
12603
+ 'required_fields'?: Array<string>;
12604
+ /**
12605
+ *
12606
+ * @type {Array<string>}
12607
+ * @memberof DataTypesAnalyticsConfigData
12608
+ */
12609
+ 'supported_event_categories'?: Array<string>;
12610
+ /**
12611
+ *
12612
+ * @type {Array<string>}
12613
+ * @memberof DataTypesAnalyticsConfigData
12614
+ */
12615
+ 'supported_event_types'?: Array<string>;
12616
+ }
12617
+ /**
12618
+ *
12619
+ * @export
12620
+ * @interface DataTypesAnalyticsConfigFunnelStages
12621
+ */
12622
+ export interface DataTypesAnalyticsConfigFunnelStages {
12623
+ /**
12624
+ *
12625
+ * @type {string}
12626
+ * @memberof DataTypesAnalyticsConfigFunnelStages
12627
+ */
12628
+ 'description'?: string;
12629
+ /**
12630
+ *
12631
+ * @type {Array<string>}
12632
+ * @memberof DataTypesAnalyticsConfigFunnelStages
12633
+ */
12634
+ 'examples'?: Array<string>;
12635
+ }
12636
+ /**
12637
+ *
12638
+ * @export
12639
+ * @interface DataTypesAnalyticsConfigMetadataGuidelines
12640
+ */
12641
+ export interface DataTypesAnalyticsConfigMetadataGuidelines {
12642
+ /**
12643
+ *
12644
+ * @type {number}
12645
+ * @memberof DataTypesAnalyticsConfigMetadataGuidelines
12646
+ */
12647
+ 'max_keys'?: number;
12648
+ /**
12649
+ *
12650
+ * @type {number}
12651
+ * @memberof DataTypesAnalyticsConfigMetadataGuidelines
12652
+ */
12653
+ 'max_value_length'?: number;
12654
+ /**
12655
+ *
12656
+ * @type {Array<string>}
12657
+ * @memberof DataTypesAnalyticsConfigMetadataGuidelines
12658
+ */
12659
+ 'reserved_keys'?: Array<string>;
12660
+ }
12549
12661
  /**
12550
12662
  * Standard error response format for analytics rules API
12551
12663
  * @export
@@ -12848,6 +12960,56 @@ export interface DataTypesAutocompleteSuggestion {
12848
12960
  */
12849
12961
  'text'?: string;
12850
12962
  }
12963
+ /**
12964
+ *
12965
+ * @export
12966
+ * @interface DataTypesBatchEventData
12967
+ */
12968
+ export interface DataTypesBatchEventData {
12969
+ /**
12970
+ *
12971
+ * @type {number}
12972
+ * @memberof DataTypesBatchEventData
12973
+ */
12974
+ 'error_count'?: number;
12975
+ /**
12976
+ *
12977
+ * @type {Array<string>}
12978
+ * @memberof DataTypesBatchEventData
12979
+ */
12980
+ 'errors'?: Array<string>;
12981
+ /**
12982
+ *
12983
+ * @type {number}
12984
+ * @memberof DataTypesBatchEventData
12985
+ */
12986
+ 'processed_count'?: number;
12987
+ /**
12988
+ *
12989
+ * @type {Array<DataTypesBatchEventProcessedItem>}
12990
+ * @memberof DataTypesBatchEventData
12991
+ */
12992
+ 'processed_events'?: Array<DataTypesBatchEventProcessedItem>;
12993
+ }
12994
+ /**
12995
+ *
12996
+ * @export
12997
+ * @interface DataTypesBatchEventProcessedItem
12998
+ */
12999
+ export interface DataTypesBatchEventProcessedItem {
13000
+ /**
13001
+ *
13002
+ * @type {string}
13003
+ * @memberof DataTypesBatchEventProcessedItem
13004
+ */
13005
+ 'event_id'?: string;
13006
+ /**
13007
+ *
13008
+ * @type {string}
13009
+ * @memberof DataTypesBatchEventProcessedItem
13010
+ */
13011
+ 'timestamp'?: string;
13012
+ }
12851
13013
  /**
12852
13014
  *
12853
13015
  * @export
@@ -13909,6 +14071,31 @@ export interface DataTypesConfigurationSchemaResponseWrapper {
13909
14071
  */
13910
14072
  'status'?: number;
13911
14073
  }
14074
+ /**
14075
+ *
14076
+ * @export
14077
+ * @interface DataTypesConnectorSearchResult
14078
+ */
14079
+ export interface DataTypesConnectorSearchResult {
14080
+ /**
14081
+ *
14082
+ * @type {number}
14083
+ * @memberof DataTypesConnectorSearchResult
14084
+ */
14085
+ 'found'?: number;
14086
+ /**
14087
+ *
14088
+ * @type {Array<object>}
14089
+ * @memberof DataTypesConnectorSearchResult
14090
+ */
14091
+ 'results'?: Array<object>;
14092
+ /**
14093
+ *
14094
+ * @type {string}
14095
+ * @memberof DataTypesConnectorSearchResult
14096
+ */
14097
+ 'status'?: string;
14098
+ }
13912
14099
  /**
13913
14100
  *
13914
14101
  * @export
@@ -15118,6 +15305,86 @@ export interface DataTypesCreateSourceResponse {
15118
15305
  */
15119
15306
  'status'?: number;
15120
15307
  }
15308
+ /**
15309
+ *
15310
+ * @export
15311
+ * @interface DataTypesCreateStoreRequest
15312
+ */
15313
+ export interface DataTypesCreateStoreRequest {
15314
+ /**
15315
+ * Optional: array of documents to import immediately
15316
+ * @type {Array<{ [key: string]: any; }>}
15317
+ * @memberof DataTypesCreateStoreRequest
15318
+ */
15319
+ 'dataset'?: Array<{ [key: string]: any; }>;
15320
+ /**
15321
+ *
15322
+ * @type {string}
15323
+ * @memberof DataTypesCreateStoreRequest
15324
+ */
15325
+ 'industry'?: string;
15326
+ /**
15327
+ *
15328
+ * @type {string}
15329
+ * @memberof DataTypesCreateStoreRequest
15330
+ */
15331
+ 'location'?: string;
15332
+ /**
15333
+ *
15334
+ * @type {string}
15335
+ * @memberof DataTypesCreateStoreRequest
15336
+ */
15337
+ 'storeName': string;
15338
+ }
15339
+ /**
15340
+ *
15341
+ * @export
15342
+ * @interface DataTypesCreateStoreResponse
15343
+ */
15344
+ export interface DataTypesCreateStoreResponse {
15345
+ /**
15346
+ * Job ID if dataset was imported
15347
+ * @type {string}
15348
+ * @memberof DataTypesCreateStoreResponse
15349
+ */
15350
+ 'importJobId'?: string;
15351
+ /**
15352
+ * Number of documents imported
15353
+ * @type {number}
15354
+ * @memberof DataTypesCreateStoreResponse
15355
+ */
15356
+ 'importedCount'?: number;
15357
+ /**
15358
+ *
15359
+ * @type {number}
15360
+ * @memberof DataTypesCreateStoreResponse
15361
+ */
15362
+ 'storeId'?: number;
15363
+ /**
15364
+ *
15365
+ * @type {string}
15366
+ * @memberof DataTypesCreateStoreResponse
15367
+ */
15368
+ 'storeName'?: string;
15369
+ /**
15370
+ *
15371
+ * @type {string}
15372
+ * @memberof DataTypesCreateStoreResponse
15373
+ */
15374
+ 'xStoreId'?: string;
15375
+ /**
15376
+ *
15377
+ * @type {string}
15378
+ * @memberof DataTypesCreateStoreResponse
15379
+ */
15380
+ 'xStoreSecret'?: string;
15381
+ /**
15382
+ *
15383
+ * @type {string}
15384
+ * @memberof DataTypesCreateStoreResponse
15385
+ */
15386
+ 'xStoreWriteSecret'?: string;
15387
+ }
15121
15388
  /**
15122
15389
  *
15123
15390
  * @export
@@ -15578,6 +15845,12 @@ export interface DataTypesCreditBalanceInfo {
15578
15845
  * @memberof DataTypesCreditBalanceInfo
15579
15846
  */
15580
15847
  'total_credits'?: number;
15848
+ /**
15849
+ *
15850
+ * @type {number}
15851
+ * @memberof DataTypesCreditBalanceInfo
15852
+ */
15853
+ 'trial_credit_allocation'?: number;
15581
15854
  }
15582
15855
  /**
15583
15856
  *
@@ -15754,6 +16027,12 @@ export interface DataTypesCreditPlan {
15754
16027
  * @memberof DataTypesCreditPlan
15755
16028
  */
15756
16029
  'price': number;
16030
+ /**
16031
+ *
16032
+ * @type {number}
16033
+ * @memberof DataTypesCreditPlan
16034
+ */
16035
+ 'trial_credit_amount'?: number;
15757
16036
  /**
15758
16037
  * Deprecated: kept for DB compat, ignored
15759
16038
  * @type {number}
@@ -15895,6 +16174,18 @@ export interface DataTypesCurrentPlanInfo {
15895
16174
  * @memberof DataTypesCurrentPlanInfo
15896
16175
  */
15897
16176
  'end_date'?: string;
16177
+ /**
16178
+ *
16179
+ * @type {number}
16180
+ * @memberof DataTypesCurrentPlanInfo
16181
+ */
16182
+ 'full_credit_amount'?: number;
16183
+ /**
16184
+ *
16185
+ * @type {boolean}
16186
+ * @memberof DataTypesCurrentPlanInfo
16187
+ */
16188
+ 'is_trial'?: boolean;
15898
16189
  /**
15899
16190
  *
15900
16191
  * @type {number}
@@ -15931,6 +16222,12 @@ export interface DataTypesCurrentPlanInfo {
15931
16222
  * @memberof DataTypesCurrentPlanInfo
15932
16223
  */
15933
16224
  'subscription_id'?: string;
16225
+ /**
16226
+ *
16227
+ * @type {number}
16228
+ * @memberof DataTypesCurrentPlanInfo
16229
+ */
16230
+ 'trial_credit_amount'?: number;
15934
16231
  }
15935
16232
  /**
15936
16233
  *
@@ -17205,7 +17502,7 @@ export interface DataTypesErrorMetaResponse {
17205
17502
  */
17206
17503
  export interface DataTypesEventPayload {
17207
17504
  /**
17208
- * ============================================================================ A/B Testing (V3) ============================================================================
17505
+ * Experiment identifier
17209
17506
  * @type {string}
17210
17507
  * @memberof DataTypesEventPayload
17211
17508
  */
@@ -17217,7 +17514,7 @@ export interface DataTypesEventPayload {
17217
17514
  */
17218
17515
  'ab_variant'?: string;
17219
17516
  /**
17220
- * ============================================================================ Analytics & Metadata ============================================================================
17517
+ *
17221
17518
  * @type {Array<string>}
17222
17519
  * @memberof DataTypesEventPayload
17223
17520
  */
@@ -17277,7 +17574,7 @@ export interface DataTypesEventPayload {
17277
17574
  */
17278
17575
  'click_type'?: string;
17279
17576
  /**
17280
- * ============================================================================ Click/Interaction Event Fields (V3) ============================================================================
17577
+ *
17281
17578
  * @type {string}
17282
17579
  * @memberof DataTypesEventPayload
17283
17580
  */
@@ -17325,7 +17622,7 @@ export interface DataTypesEventPayload {
17325
17622
  */
17326
17623
  'correlation_id'?: string;
17327
17624
  /**
17328
- * ============================================================================ Geo Context (V3) ============================================================================
17625
+ *
17329
17626
  * @type {string}
17330
17627
  * @memberof DataTypesEventPayload
17331
17628
  */
@@ -17349,7 +17646,7 @@ export interface DataTypesEventPayload {
17349
17646
  */
17350
17647
  'custom_json'?: string;
17351
17648
  /**
17352
- * ============================================================================ Navigation Tracking (V3) ============================================================================
17649
+ * URL user navigates to after click
17353
17650
  * @type {string}
17354
17651
  * @memberof DataTypesEventPayload
17355
17652
  */
@@ -17367,7 +17664,7 @@ export interface DataTypesEventPayload {
17367
17664
  */
17368
17665
  'device_type'?: string;
17369
17666
  /**
17370
- * ============================================================================ Core Event Information (V3) ============================================================================
17667
+ *
17371
17668
  * @type {string}
17372
17669
  * @memberof DataTypesEventPayload
17373
17670
  */
@@ -17409,7 +17706,7 @@ export interface DataTypesEventPayload {
17409
17706
  */
17410
17707
  'insert_id'?: string;
17411
17708
  /**
17412
- * ============================================================================ Device Context (V3) ============================================================================
17709
+ *
17413
17710
  * @type {string}
17414
17711
  * @memberof DataTypesEventPayload
17415
17712
  */
@@ -17457,7 +17754,7 @@ export interface DataTypesEventPayload {
17457
17754
  */
17458
17755
  'metadata'?: { [key: string]: any; };
17459
17756
  /**
17460
- * ============================================================================ Suggestion Impression Fields (V3) ============================================================================
17757
+ *
17461
17758
  * @type {string}
17462
17759
  * @memberof DataTypesEventPayload
17463
17760
  */
@@ -17529,7 +17826,7 @@ export interface DataTypesEventPayload {
17529
17826
  */
17530
17827
  'quantity'?: number;
17531
17828
  /**
17532
- * ============================================================================ Search Event Fields ============================================================================
17829
+ *
17533
17830
  * @type {string}
17534
17831
  * @memberof DataTypesEventPayload
17535
17832
  */
@@ -17691,7 +17988,7 @@ export interface DataTypesEventPayload {
17691
17988
  */
17692
17989
  'utm_medium'?: string;
17693
17990
  /**
17694
- * ============================================================================ UTM Parameters ============================================================================
17991
+ *
17695
17992
  * @type {string}
17696
17993
  * @memberof DataTypesEventPayload
17697
17994
  */
@@ -17703,7 +18000,7 @@ export interface DataTypesEventPayload {
17703
18000
  */
17704
18001
  'utm_term'?: string;
17705
18002
  /**
17706
- * ============================================================================ Business Context ============================================================================
18003
+ *
17707
18004
  * @type {number}
17708
18005
  * @memberof DataTypesEventPayload
17709
18006
  */
@@ -17727,6 +18024,44 @@ export interface DataTypesEventPayload {
17727
18024
  */
17728
18025
  'xstoreid'?: string;
17729
18026
  }
18027
+ /**
18028
+ *
18029
+ * @export
18030
+ * @interface DataTypesEventSubmitData
18031
+ */
18032
+ export interface DataTypesEventSubmitData {
18033
+ /**
18034
+ *
18035
+ * @type {string}
18036
+ * @memberof DataTypesEventSubmitData
18037
+ */
18038
+ 'event_id'?: string;
18039
+ /**
18040
+ *
18041
+ * @type {string}
18042
+ * @memberof DataTypesEventSubmitData
18043
+ */
18044
+ 'timestamp'?: string;
18045
+ }
18046
+ /**
18047
+ *
18048
+ * @export
18049
+ * @interface DataTypesEventValidateData
18050
+ */
18051
+ export interface DataTypesEventValidateData {
18052
+ /**
18053
+ *
18054
+ * @type {string}
18055
+ * @memberof DataTypesEventValidateData
18056
+ */
18057
+ 'event_name'?: string;
18058
+ /**
18059
+ *
18060
+ * @type {string}
18061
+ * @memberof DataTypesEventValidateData
18062
+ */
18063
+ 'event_type'?: string;
18064
+ }
17730
18065
  /**
17731
18066
  *
17732
18067
  * @export
@@ -20311,6 +20646,56 @@ export interface DataTypesGenericResponseBillingServiceTrialEligibilityResponse
20311
20646
  */
20312
20647
  'status'?: number;
20313
20648
  }
20649
+ /**
20650
+ *
20651
+ * @export
20652
+ * @interface DataTypesGenericResponseDataTypesAnalyticsConfigData
20653
+ */
20654
+ export interface DataTypesGenericResponseDataTypesAnalyticsConfigData {
20655
+ /**
20656
+ *
20657
+ * @type {DataTypesAnalyticsConfigData}
20658
+ * @memberof DataTypesGenericResponseDataTypesAnalyticsConfigData
20659
+ */
20660
+ 'data'?: DataTypesAnalyticsConfigData;
20661
+ /**
20662
+ *
20663
+ * @type {string}
20664
+ * @memberof DataTypesGenericResponseDataTypesAnalyticsConfigData
20665
+ */
20666
+ 'message'?: string;
20667
+ /**
20668
+ *
20669
+ * @type {number}
20670
+ * @memberof DataTypesGenericResponseDataTypesAnalyticsConfigData
20671
+ */
20672
+ 'status'?: number;
20673
+ }
20674
+ /**
20675
+ *
20676
+ * @export
20677
+ * @interface DataTypesGenericResponseDataTypesBatchEventData
20678
+ */
20679
+ export interface DataTypesGenericResponseDataTypesBatchEventData {
20680
+ /**
20681
+ *
20682
+ * @type {DataTypesBatchEventData}
20683
+ * @memberof DataTypesGenericResponseDataTypesBatchEventData
20684
+ */
20685
+ 'data'?: DataTypesBatchEventData;
20686
+ /**
20687
+ *
20688
+ * @type {string}
20689
+ * @memberof DataTypesGenericResponseDataTypesBatchEventData
20690
+ */
20691
+ 'message'?: string;
20692
+ /**
20693
+ *
20694
+ * @type {number}
20695
+ * @memberof DataTypesGenericResponseDataTypesBatchEventData
20696
+ */
20697
+ 'status'?: number;
20698
+ }
20314
20699
  /**
20315
20700
  *
20316
20701
  * @export
@@ -20386,6 +20771,31 @@ export interface DataTypesGenericResponseDataTypesConsumptionHistoryResponse {
20386
20771
  */
20387
20772
  'status'?: number;
20388
20773
  }
20774
+ /**
20775
+ *
20776
+ * @export
20777
+ * @interface DataTypesGenericResponseDataTypesCreateStoreResponse
20778
+ */
20779
+ export interface DataTypesGenericResponseDataTypesCreateStoreResponse {
20780
+ /**
20781
+ *
20782
+ * @type {DataTypesCreateStoreResponse}
20783
+ * @memberof DataTypesGenericResponseDataTypesCreateStoreResponse
20784
+ */
20785
+ 'data'?: DataTypesCreateStoreResponse;
20786
+ /**
20787
+ *
20788
+ * @type {string}
20789
+ * @memberof DataTypesGenericResponseDataTypesCreateStoreResponse
20790
+ */
20791
+ 'message'?: string;
20792
+ /**
20793
+ *
20794
+ * @type {number}
20795
+ * @memberof DataTypesGenericResponseDataTypesCreateStoreResponse
20796
+ */
20797
+ 'status'?: number;
20798
+ }
20389
20799
  /**
20390
20800
  *
20391
20801
  * @export
@@ -20436,6 +20846,56 @@ export interface DataTypesGenericResponseDataTypesCurrentPlanInfo {
20436
20846
  */
20437
20847
  'status'?: number;
20438
20848
  }
20849
+ /**
20850
+ *
20851
+ * @export
20852
+ * @interface DataTypesGenericResponseDataTypesEventSubmitData
20853
+ */
20854
+ export interface DataTypesGenericResponseDataTypesEventSubmitData {
20855
+ /**
20856
+ *
20857
+ * @type {DataTypesEventSubmitData}
20858
+ * @memberof DataTypesGenericResponseDataTypesEventSubmitData
20859
+ */
20860
+ 'data'?: DataTypesEventSubmitData;
20861
+ /**
20862
+ *
20863
+ * @type {string}
20864
+ * @memberof DataTypesGenericResponseDataTypesEventSubmitData
20865
+ */
20866
+ 'message'?: string;
20867
+ /**
20868
+ *
20869
+ * @type {number}
20870
+ * @memberof DataTypesGenericResponseDataTypesEventSubmitData
20871
+ */
20872
+ 'status'?: number;
20873
+ }
20874
+ /**
20875
+ *
20876
+ * @export
20877
+ * @interface DataTypesGenericResponseDataTypesEventValidateData
20878
+ */
20879
+ export interface DataTypesGenericResponseDataTypesEventValidateData {
20880
+ /**
20881
+ *
20882
+ * @type {DataTypesEventValidateData}
20883
+ * @memberof DataTypesGenericResponseDataTypesEventValidateData
20884
+ */
20885
+ 'data'?: DataTypesEventValidateData;
20886
+ /**
20887
+ *
20888
+ * @type {string}
20889
+ * @memberof DataTypesGenericResponseDataTypesEventValidateData
20890
+ */
20891
+ 'message'?: string;
20892
+ /**
20893
+ *
20894
+ * @type {number}
20895
+ * @memberof DataTypesGenericResponseDataTypesEventValidateData
20896
+ */
20897
+ 'status'?: number;
20898
+ }
20439
20899
  /**
20440
20900
  *
20441
20901
  * @export
@@ -20639,175 +21099,175 @@ export interface DataTypesGenericResponseDataTypesPayInvoiceResponse {
20639
21099
  /**
20640
21100
  *
20641
21101
  * @export
20642
- * @interface DataTypesGenericResponseDataTypesPublicCreateStoreResponse
21102
+ * @interface DataTypesGenericResponseDataTypesReceipt
20643
21103
  */
20644
- export interface DataTypesGenericResponseDataTypesPublicCreateStoreResponse {
21104
+ export interface DataTypesGenericResponseDataTypesReceipt {
20645
21105
  /**
20646
21106
  *
20647
- * @type {DataTypesPublicCreateStoreResponse}
20648
- * @memberof DataTypesGenericResponseDataTypesPublicCreateStoreResponse
21107
+ * @type {DataTypesReceipt}
21108
+ * @memberof DataTypesGenericResponseDataTypesReceipt
20649
21109
  */
20650
- 'data'?: DataTypesPublicCreateStoreResponse;
21110
+ 'data'?: DataTypesReceipt;
20651
21111
  /**
20652
21112
  *
20653
21113
  * @type {string}
20654
- * @memberof DataTypesGenericResponseDataTypesPublicCreateStoreResponse
21114
+ * @memberof DataTypesGenericResponseDataTypesReceipt
20655
21115
  */
20656
21116
  'message'?: string;
20657
21117
  /**
20658
21118
  *
20659
21119
  * @type {number}
20660
- * @memberof DataTypesGenericResponseDataTypesPublicCreateStoreResponse
21120
+ * @memberof DataTypesGenericResponseDataTypesReceipt
20661
21121
  */
20662
21122
  'status'?: number;
20663
21123
  }
20664
21124
  /**
20665
21125
  *
20666
21126
  * @export
20667
- * @interface DataTypesGenericResponseDataTypesPublicStoreInfoResponse
21127
+ * @interface DataTypesGenericResponseDataTypesRegenerateXStoreSecretResponse
20668
21128
  */
20669
- export interface DataTypesGenericResponseDataTypesPublicStoreInfoResponse {
21129
+ export interface DataTypesGenericResponseDataTypesRegenerateXStoreSecretResponse {
20670
21130
  /**
20671
21131
  *
20672
- * @type {DataTypesPublicStoreInfoResponse}
20673
- * @memberof DataTypesGenericResponseDataTypesPublicStoreInfoResponse
21132
+ * @type {DataTypesRegenerateXStoreSecretResponse}
21133
+ * @memberof DataTypesGenericResponseDataTypesRegenerateXStoreSecretResponse
20674
21134
  */
20675
- 'data'?: DataTypesPublicStoreInfoResponse;
21135
+ 'data'?: DataTypesRegenerateXStoreSecretResponse;
20676
21136
  /**
20677
21137
  *
20678
21138
  * @type {string}
20679
- * @memberof DataTypesGenericResponseDataTypesPublicStoreInfoResponse
21139
+ * @memberof DataTypesGenericResponseDataTypesRegenerateXStoreSecretResponse
20680
21140
  */
20681
21141
  'message'?: string;
20682
21142
  /**
20683
21143
  *
20684
21144
  * @type {number}
20685
- * @memberof DataTypesGenericResponseDataTypesPublicStoreInfoResponse
21145
+ * @memberof DataTypesGenericResponseDataTypesRegenerateXStoreSecretResponse
20686
21146
  */
20687
21147
  'status'?: number;
20688
21148
  }
20689
21149
  /**
20690
21150
  *
20691
21151
  * @export
20692
- * @interface DataTypesGenericResponseDataTypesReceipt
21152
+ * @interface DataTypesGenericResponseDataTypesRolePermissionsResponse
20693
21153
  */
20694
- export interface DataTypesGenericResponseDataTypesReceipt {
21154
+ export interface DataTypesGenericResponseDataTypesRolePermissionsResponse {
20695
21155
  /**
20696
21156
  *
20697
- * @type {DataTypesReceipt}
20698
- * @memberof DataTypesGenericResponseDataTypesReceipt
21157
+ * @type {DataTypesRolePermissionsResponse}
21158
+ * @memberof DataTypesGenericResponseDataTypesRolePermissionsResponse
20699
21159
  */
20700
- 'data'?: DataTypesReceipt;
21160
+ 'data'?: DataTypesRolePermissionsResponse;
20701
21161
  /**
20702
21162
  *
20703
21163
  * @type {string}
20704
- * @memberof DataTypesGenericResponseDataTypesReceipt
21164
+ * @memberof DataTypesGenericResponseDataTypesRolePermissionsResponse
20705
21165
  */
20706
21166
  'message'?: string;
20707
21167
  /**
20708
21168
  *
20709
21169
  * @type {number}
20710
- * @memberof DataTypesGenericResponseDataTypesReceipt
21170
+ * @memberof DataTypesGenericResponseDataTypesRolePermissionsResponse
20711
21171
  */
20712
21172
  'status'?: number;
20713
21173
  }
20714
21174
  /**
20715
21175
  *
20716
21176
  * @export
20717
- * @interface DataTypesGenericResponseDataTypesRegenerateXStoreSecretResponse
21177
+ * @interface DataTypesGenericResponseDataTypesSearchRequestsGraphResponse
20718
21178
  */
20719
- export interface DataTypesGenericResponseDataTypesRegenerateXStoreSecretResponse {
21179
+ export interface DataTypesGenericResponseDataTypesSearchRequestsGraphResponse {
20720
21180
  /**
20721
21181
  *
20722
- * @type {DataTypesRegenerateXStoreSecretResponse}
20723
- * @memberof DataTypesGenericResponseDataTypesRegenerateXStoreSecretResponse
21182
+ * @type {DataTypesSearchRequestsGraphResponse}
21183
+ * @memberof DataTypesGenericResponseDataTypesSearchRequestsGraphResponse
20724
21184
  */
20725
- 'data'?: DataTypesRegenerateXStoreSecretResponse;
21185
+ 'data'?: DataTypesSearchRequestsGraphResponse;
20726
21186
  /**
20727
21187
  *
20728
21188
  * @type {string}
20729
- * @memberof DataTypesGenericResponseDataTypesRegenerateXStoreSecretResponse
21189
+ * @memberof DataTypesGenericResponseDataTypesSearchRequestsGraphResponse
20730
21190
  */
20731
21191
  'message'?: string;
20732
21192
  /**
20733
21193
  *
20734
21194
  * @type {number}
20735
- * @memberof DataTypesGenericResponseDataTypesRegenerateXStoreSecretResponse
21195
+ * @memberof DataTypesGenericResponseDataTypesSearchRequestsGraphResponse
20736
21196
  */
20737
21197
  'status'?: number;
20738
21198
  }
20739
21199
  /**
20740
21200
  *
20741
21201
  * @export
20742
- * @interface DataTypesGenericResponseDataTypesRolePermissionsResponse
21202
+ * @interface DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
20743
21203
  */
20744
- export interface DataTypesGenericResponseDataTypesRolePermissionsResponse {
21204
+ export interface DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse {
20745
21205
  /**
20746
21206
  *
20747
- * @type {DataTypesRolePermissionsResponse}
20748
- * @memberof DataTypesGenericResponseDataTypesRolePermissionsResponse
21207
+ * @type {DataTypesStoreConfigWithOnboardingResponse}
21208
+ * @memberof DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
20749
21209
  */
20750
- 'data'?: DataTypesRolePermissionsResponse;
21210
+ 'data'?: DataTypesStoreConfigWithOnboardingResponse;
20751
21211
  /**
20752
21212
  *
20753
21213
  * @type {string}
20754
- * @memberof DataTypesGenericResponseDataTypesRolePermissionsResponse
21214
+ * @memberof DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
20755
21215
  */
20756
21216
  'message'?: string;
20757
21217
  /**
20758
21218
  *
20759
21219
  * @type {number}
20760
- * @memberof DataTypesGenericResponseDataTypesRolePermissionsResponse
21220
+ * @memberof DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
20761
21221
  */
20762
21222
  'status'?: number;
20763
21223
  }
20764
21224
  /**
20765
21225
  *
20766
21226
  * @export
20767
- * @interface DataTypesGenericResponseDataTypesSearchRequestsGraphResponse
21227
+ * @interface DataTypesGenericResponseDataTypesStoreInfoResponse
20768
21228
  */
20769
- export interface DataTypesGenericResponseDataTypesSearchRequestsGraphResponse {
21229
+ export interface DataTypesGenericResponseDataTypesStoreInfoResponse {
20770
21230
  /**
20771
21231
  *
20772
- * @type {DataTypesSearchRequestsGraphResponse}
20773
- * @memberof DataTypesGenericResponseDataTypesSearchRequestsGraphResponse
21232
+ * @type {DataTypesStoreInfoResponse}
21233
+ * @memberof DataTypesGenericResponseDataTypesStoreInfoResponse
20774
21234
  */
20775
- 'data'?: DataTypesSearchRequestsGraphResponse;
21235
+ 'data'?: DataTypesStoreInfoResponse;
20776
21236
  /**
20777
21237
  *
20778
21238
  * @type {string}
20779
- * @memberof DataTypesGenericResponseDataTypesSearchRequestsGraphResponse
21239
+ * @memberof DataTypesGenericResponseDataTypesStoreInfoResponse
20780
21240
  */
20781
21241
  'message'?: string;
20782
21242
  /**
20783
21243
  *
20784
21244
  * @type {number}
20785
- * @memberof DataTypesGenericResponseDataTypesSearchRequestsGraphResponse
21245
+ * @memberof DataTypesGenericResponseDataTypesStoreInfoResponse
20786
21246
  */
20787
21247
  'status'?: number;
20788
21248
  }
20789
21249
  /**
20790
21250
  *
20791
21251
  * @export
20792
- * @interface DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
21252
+ * @interface DataTypesGenericResponseDataTypesStoreRecordSizeMetrics
20793
21253
  */
20794
- export interface DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse {
21254
+ export interface DataTypesGenericResponseDataTypesStoreRecordSizeMetrics {
20795
21255
  /**
20796
21256
  *
20797
- * @type {DataTypesStoreConfigWithOnboardingResponse}
20798
- * @memberof DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
21257
+ * @type {DataTypesStoreRecordSizeMetrics}
21258
+ * @memberof DataTypesGenericResponseDataTypesStoreRecordSizeMetrics
20799
21259
  */
20800
- 'data'?: DataTypesStoreConfigWithOnboardingResponse;
21260
+ 'data'?: DataTypesStoreRecordSizeMetrics;
20801
21261
  /**
20802
21262
  *
20803
21263
  * @type {string}
20804
- * @memberof DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
21264
+ * @memberof DataTypesGenericResponseDataTypesStoreRecordSizeMetrics
20805
21265
  */
20806
21266
  'message'?: string;
20807
21267
  /**
20808
21268
  *
20809
21269
  * @type {number}
20810
- * @memberof DataTypesGenericResponseDataTypesStoreConfigWithOnboardingResponse
21270
+ * @memberof DataTypesGenericResponseDataTypesStoreRecordSizeMetrics
20811
21271
  */
20812
21272
  'status'?: number;
20813
21273
  }
@@ -25191,117 +25651,6 @@ export interface DataTypesOTPPayload {
25191
25651
  */
25192
25652
  'otp'?: string;
25193
25653
  }
25194
- /**
25195
- *
25196
- * @export
25197
- * @interface DataTypesOfficialSearchResponse
25198
- */
25199
- export interface DataTypesOfficialSearchResponse {
25200
- /**
25201
- *
25202
- * @type {any}
25203
- * @memberof DataTypesOfficialSearchResponse
25204
- */
25205
- 'facets'?: any;
25206
- /**
25207
- *
25208
- * @type {number}
25209
- * @memberof DataTypesOfficialSearchResponse
25210
- */
25211
- 'page'?: number;
25212
- /**
25213
- *
25214
- * @type {number}
25215
- * @memberof DataTypesOfficialSearchResponse
25216
- */
25217
- 'per_page'?: number;
25218
- /**
25219
- *
25220
- * @type {Array<DataTypesOfficialSearchResult>}
25221
- * @memberof DataTypesOfficialSearchResponse
25222
- */
25223
- 'results'?: Array<DataTypesOfficialSearchResult>;
25224
- /**
25225
- * Unique search identifier for analytics linking
25226
- * @type {string}
25227
- * @memberof DataTypesOfficialSearchResponse
25228
- */
25229
- 'search_id'?: string;
25230
- /**
25231
- * Available sort options based on schema
25232
- * @type {Array<DataTypesSortOption>}
25233
- * @memberof DataTypesOfficialSearchResponse
25234
- */
25235
- 'sort_options'?: Array<DataTypesSortOption>;
25236
- /**
25237
- *
25238
- * @type {Array<DataTypesAutocompleteSuggestion>}
25239
- * @memberof DataTypesOfficialSearchResponse
25240
- */
25241
- 'suggestions'?: Array<DataTypesAutocompleteSuggestion>;
25242
- /**
25243
- *
25244
- * @type {number}
25245
- * @memberof DataTypesOfficialSearchResponse
25246
- */
25247
- 'total_results'?: number;
25248
- }
25249
- /**
25250
- *
25251
- * @export
25252
- * @interface DataTypesOfficialSearchResponseWrapper
25253
- */
25254
- export interface DataTypesOfficialSearchResponseWrapper {
25255
- /**
25256
- *
25257
- * @type {DataTypesOfficialSearchResponse}
25258
- * @memberof DataTypesOfficialSearchResponseWrapper
25259
- */
25260
- 'data'?: DataTypesOfficialSearchResponse;
25261
- /**
25262
- *
25263
- * @type {string}
25264
- * @memberof DataTypesOfficialSearchResponseWrapper
25265
- */
25266
- 'message'?: string;
25267
- /**
25268
- *
25269
- * @type {number}
25270
- * @memberof DataTypesOfficialSearchResponseWrapper
25271
- */
25272
- 'status'?: number;
25273
- }
25274
- /**
25275
- *
25276
- * @export
25277
- * @interface DataTypesOfficialSearchResult
25278
- */
25279
- export interface DataTypesOfficialSearchResult {
25280
- /**
25281
- *
25282
- * @type {{ [key: string]: any; }}
25283
- * @memberof DataTypesOfficialSearchResult
25284
- */
25285
- 'document'?: { [key: string]: any; };
25286
- /**
25287
- *
25288
- * @type {{ [key: string]: any; }}
25289
- * @memberof DataTypesOfficialSearchResult
25290
- */
25291
- 'highlight'?: { [key: string]: any; };
25292
- /**
25293
- *
25294
- * @type {string}
25295
- * @memberof DataTypesOfficialSearchResult
25296
- */
25297
- 'id'?: string;
25298
- /**
25299
- *
25300
- * @type {number}
25301
- * @memberof DataTypesOfficialSearchResult
25302
- */
25303
- 'score'?: number;
25304
- }
25305
25654
  /**
25306
25655
  *
25307
25656
  * @export
@@ -25583,6 +25932,12 @@ export interface DataTypesOnboardingStatus {
25583
25932
  * @memberof DataTypesOnboardingStatus
25584
25933
  */
25585
25934
  'is_complete'?: boolean;
25935
+ /**
25936
+ * Whether the check was unreliable due to transient infrastructure errors
25937
+ * @type {boolean}
25938
+ * @memberof DataTypesOnboardingStatus
25939
+ */
25940
+ 'is_degraded'?: boolean;
25586
25941
  /**
25587
25942
  * List of missing components
25588
25943
  * @type {Array<string>}
@@ -27857,382 +28212,6 @@ export interface DataTypesProjectedRunoutInfo {
27857
28212
  */
27858
28213
  'warning_level'?: string;
27859
28214
  }
27860
- /**
27861
- *
27862
- * @export
27863
- * @interface DataTypesPublicCreateStoreRequest
27864
- */
27865
- export interface DataTypesPublicCreateStoreRequest {
27866
- /**
27867
- * Optional: array of documents to import immediately
27868
- * @type {Array<{ [key: string]: any; }>}
27869
- * @memberof DataTypesPublicCreateStoreRequest
27870
- */
27871
- 'dataset'?: Array<{ [key: string]: any; }>;
27872
- /**
27873
- *
27874
- * @type {string}
27875
- * @memberof DataTypesPublicCreateStoreRequest
27876
- */
27877
- 'industry'?: string;
27878
- /**
27879
- *
27880
- * @type {string}
27881
- * @memberof DataTypesPublicCreateStoreRequest
27882
- */
27883
- 'location'?: string;
27884
- /**
27885
- *
27886
- * @type {string}
27887
- * @memberof DataTypesPublicCreateStoreRequest
27888
- */
27889
- 'storeName': string;
27890
- }
27891
- /**
27892
- *
27893
- * @export
27894
- * @interface DataTypesPublicCreateStoreResponse
27895
- */
27896
- export interface DataTypesPublicCreateStoreResponse {
27897
- /**
27898
- * Job ID if dataset was imported
27899
- * @type {string}
27900
- * @memberof DataTypesPublicCreateStoreResponse
27901
- */
27902
- 'importJobId'?: string;
27903
- /**
27904
- * Number of documents imported
27905
- * @type {number}
27906
- * @memberof DataTypesPublicCreateStoreResponse
27907
- */
27908
- 'importedCount'?: number;
27909
- /**
27910
- *
27911
- * @type {number}
27912
- * @memberof DataTypesPublicCreateStoreResponse
27913
- */
27914
- 'storeId'?: number;
27915
- /**
27916
- *
27917
- * @type {string}
27918
- * @memberof DataTypesPublicCreateStoreResponse
27919
- */
27920
- 'storeName'?: string;
27921
- /**
27922
- *
27923
- * @type {string}
27924
- * @memberof DataTypesPublicCreateStoreResponse
27925
- */
27926
- 'xStoreId'?: string;
27927
- /**
27928
- *
27929
- * @type {string}
27930
- * @memberof DataTypesPublicCreateStoreResponse
27931
- */
27932
- 'xStoreSecret'?: string;
27933
- /**
27934
- *
27935
- * @type {string}
27936
- * @memberof DataTypesPublicCreateStoreResponse
27937
- */
27938
- 'xStoreWriteSecret'?: string;
27939
- }
27940
- /**
27941
- *
27942
- * @export
27943
- * @interface DataTypesPublicSearchRequest
27944
- */
27945
- export interface DataTypesPublicSearchRequest {
27946
- /**
27947
- *
27948
- * @type {Array<string>}
27949
- * @memberof DataTypesPublicSearchRequest
27950
- */
27951
- 'analytics_tags'?: Array<string>;
27952
- /**
27953
- * Anonymous/cookie ID for personalization
27954
- * @type {string}
27955
- * @memberof DataTypesPublicSearchRequest
27956
- */
27957
- 'anon_id'?: string;
27958
- /**
27959
- *
27960
- * @type {boolean}
27961
- * @memberof DataTypesPublicSearchRequest
27962
- */
27963
- 'apply_rules'?: boolean;
27964
- /**
27965
- *
27966
- * @type {boolean}
27967
- * @memberof DataTypesPublicSearchRequest
27968
- */
27969
- 'cache_results'?: boolean;
27970
- /**
27971
- *
27972
- * @type {boolean}
27973
- * @memberof DataTypesPublicSearchRequest
27974
- */
27975
- 'exact_match_boost'?: boolean;
27976
- /**
27977
- *
27978
- * @type {string}
27979
- * @memberof DataTypesPublicSearchRequest
27980
- */
27981
- 'facet_by'?: string;
27982
- /**
27983
- *
27984
- * @type {string}
27985
- * @memberof DataTypesPublicSearchRequest
27986
- */
27987
- 'facet_search_text'?: string;
27988
- /**
27989
- *
27990
- * @type {Array<number>}
27991
- * @memberof DataTypesPublicSearchRequest
27992
- */
27993
- 'field_weights'?: Array<number>;
27994
- /**
27995
- *
27996
- * @type {string}
27997
- * @memberof DataTypesPublicSearchRequest
27998
- */
27999
- 'filter'?: string;
28000
- /**
28001
- *
28002
- * @type {Array<string>}
28003
- * @memberof DataTypesPublicSearchRequest
28004
- */
28005
- 'full_snippet_fields'?: Array<string>;
28006
- /**
28007
- *
28008
- * @type {string}
28009
- * @memberof DataTypesPublicSearchRequest
28010
- */
28011
- 'group_field'?: string;
28012
- /**
28013
- *
28014
- * @type {number}
28015
- * @memberof DataTypesPublicSearchRequest
28016
- */
28017
- 'group_size'?: number;
28018
- /**
28019
- *
28020
- * @type {boolean}
28021
- * @memberof DataTypesPublicSearchRequest
28022
- */
28023
- 'include_snippets'?: boolean;
28024
- /**
28025
- *
28026
- * @type {boolean}
28027
- * @memberof DataTypesPublicSearchRequest
28028
- */
28029
- 'include_suggestions'?: boolean;
28030
- /**
28031
- *
28032
- * @type {string}
28033
- * @memberof DataTypesPublicSearchRequest
28034
- */
28035
- 'infix_mode'?: string;
28036
- /**
28037
- *
28038
- * @type {number}
28039
- * @memberof DataTypesPublicSearchRequest
28040
- */
28041
- 'max_facet_values'?: number;
28042
- /**
28043
- *
28044
- * @type {Array<string>}
28045
- * @memberof DataTypesPublicSearchRequest
28046
- */
28047
- 'omit_fields'?: Array<string>;
28048
- /**
28049
- *
28050
- * @type {number}
28051
- * @memberof DataTypesPublicSearchRequest
28052
- */
28053
- 'page'?: number;
28054
- /**
28055
- *
28056
- * @type {number}
28057
- * @memberof DataTypesPublicSearchRequest
28058
- */
28059
- 'per_page'?: number;
28060
- /**
28061
- *
28062
- * @type {string}
28063
- * @memberof DataTypesPublicSearchRequest
28064
- */
28065
- 'prefix_mode'?: string;
28066
- /**
28067
- *
28068
- * @type {string}
28069
- * @memberof DataTypesPublicSearchRequest
28070
- */
28071
- 'preset_name'?: string;
28072
- /**
28073
- *
28074
- * @type {string}
28075
- * @memberof DataTypesPublicSearchRequest
28076
- */
28077
- 'q': string;
28078
- /**
28079
- *
28080
- * @type {boolean}
28081
- * @memberof DataTypesPublicSearchRequest
28082
- */
28083
- 'require_all_terms'?: boolean;
28084
- /**
28085
- *
28086
- * @type {Array<string>}
28087
- * @memberof DataTypesPublicSearchRequest
28088
- */
28089
- 'return_fields'?: Array<string>;
28090
- /**
28091
- * Advanced query controls (public-friendly field names)
28092
- * @type {Array<string>}
28093
- * @memberof DataTypesPublicSearchRequest
28094
- */
28095
- 'search_fields'?: Array<string>;
28096
- /**
28097
- *
28098
- * @type {number}
28099
- * @memberof DataTypesPublicSearchRequest
28100
- */
28101
- 'search_timeout_ms'?: number;
28102
- /**
28103
- * Session ID for session-based personalization
28104
- * @type {string}
28105
- * @memberof DataTypesPublicSearchRequest
28106
- */
28107
- 'session_id'?: string;
28108
- /**
28109
- *
28110
- * @type {Array<string>}
28111
- * @memberof DataTypesPublicSearchRequest
28112
- */
28113
- 'snippet_fields'?: Array<string>;
28114
- /**
28115
- *
28116
- * @type {number}
28117
- * @memberof DataTypesPublicSearchRequest
28118
- */
28119
- 'snippet_min_len'?: number;
28120
- /**
28121
- *
28122
- * @type {string}
28123
- * @memberof DataTypesPublicSearchRequest
28124
- */
28125
- 'snippet_prefix'?: string;
28126
- /**
28127
- *
28128
- * @type {string}
28129
- * @memberof DataTypesPublicSearchRequest
28130
- */
28131
- 'snippet_suffix'?: string;
28132
- /**
28133
- *
28134
- * @type {number}
28135
- * @memberof DataTypesPublicSearchRequest
28136
- */
28137
- 'snippet_token_limit'?: number;
28138
- /**
28139
- *
28140
- * @type {string}
28141
- * @memberof DataTypesPublicSearchRequest
28142
- */
28143
- 'sort'?: string;
28144
- /**
28145
- * IDs of stopword sets to use
28146
- * @type {Array<string>}
28147
- * @memberof DataTypesPublicSearchRequest
28148
- */
28149
- 'stopword_sets'?: Array<string>;
28150
- /**
28151
- *
28152
- * @type {number}
28153
- * @memberof DataTypesPublicSearchRequest
28154
- */
28155
- 'suggestions_limit'?: number;
28156
- /**
28157
- * IDs of synonym sets to use
28158
- * @type {Array<string>}
28159
- * @memberof DataTypesPublicSearchRequest
28160
- */
28161
- 'synonym_sets'?: Array<string>;
28162
- /**
28163
- *
28164
- * @type {number}
28165
- * @memberof DataTypesPublicSearchRequest
28166
- */
28167
- 'typo_max'?: number;
28168
- /**
28169
- *
28170
- * @type {number}
28171
- * @memberof DataTypesPublicSearchRequest
28172
- */
28173
- 'typo_min_len_1'?: number;
28174
- /**
28175
- *
28176
- * @type {number}
28177
- * @memberof DataTypesPublicSearchRequest
28178
- */
28179
- 'typo_min_len_2'?: number;
28180
- /**
28181
- * Personalization fields (optional, backward compatible)
28182
- * @type {string}
28183
- * @memberof DataTypesPublicSearchRequest
28184
- */
28185
- 'user_id'?: string;
28186
- /**
28187
- * If true, returns only display fields instead of full document (used in public API only)
28188
- * @type {boolean}
28189
- * @memberof DataTypesPublicSearchRequest
28190
- */
28191
- 'widget_mode'?: boolean;
28192
- }
28193
- /**
28194
- *
28195
- * @export
28196
- * @interface DataTypesPublicStoreInfoResponse
28197
- */
28198
- export interface DataTypesPublicStoreInfoResponse {
28199
- /**
28200
- *
28201
- * @type {string}
28202
- * @memberof DataTypesPublicStoreInfoResponse
28203
- */
28204
- 'createdAt'?: string;
28205
- /**
28206
- *
28207
- * @type {boolean}
28208
- * @memberof DataTypesPublicStoreInfoResponse
28209
- */
28210
- 'isActive'?: boolean;
28211
- /**
28212
- *
28213
- * @type {string}
28214
- * @memberof DataTypesPublicStoreInfoResponse
28215
- */
28216
- 'location'?: string;
28217
- /**
28218
- *
28219
- * @type {number}
28220
- * @memberof DataTypesPublicStoreInfoResponse
28221
- */
28222
- 'storeId'?: number;
28223
- /**
28224
- *
28225
- * @type {string}
28226
- * @memberof DataTypesPublicStoreInfoResponse
28227
- */
28228
- 'storeName'?: string;
28229
- /**
28230
- *
28231
- * @type {string}
28232
- * @memberof DataTypesPublicStoreInfoResponse
28233
- */
28234
- 'xStoreId'?: string;
28235
- }
28236
28215
  /**
28237
28216
  *
28238
28217
  * @export
@@ -30010,6 +29989,259 @@ export interface DataTypesSchemaResponseWrapper {
30010
29989
  */
30011
29990
  'status'?: number;
30012
29991
  }
29992
+ /**
29993
+ *
29994
+ * @export
29995
+ * @interface DataTypesSearchRequest
29996
+ */
29997
+ export interface DataTypesSearchRequest {
29998
+ /**
29999
+ *
30000
+ * @type {Array<string>}
30001
+ * @memberof DataTypesSearchRequest
30002
+ */
30003
+ 'analytics_tags'?: Array<string>;
30004
+ /**
30005
+ * Anonymous/cookie ID for personalization
30006
+ * @type {string}
30007
+ * @memberof DataTypesSearchRequest
30008
+ */
30009
+ 'anon_id'?: string;
30010
+ /**
30011
+ *
30012
+ * @type {boolean}
30013
+ * @memberof DataTypesSearchRequest
30014
+ */
30015
+ 'apply_rules'?: boolean;
30016
+ /**
30017
+ *
30018
+ * @type {boolean}
30019
+ * @memberof DataTypesSearchRequest
30020
+ */
30021
+ 'cache_results'?: boolean;
30022
+ /**
30023
+ *
30024
+ * @type {boolean}
30025
+ * @memberof DataTypesSearchRequest
30026
+ */
30027
+ 'exact_match_boost'?: boolean;
30028
+ /**
30029
+ *
30030
+ * @type {string}
30031
+ * @memberof DataTypesSearchRequest
30032
+ */
30033
+ 'facet_by'?: string;
30034
+ /**
30035
+ *
30036
+ * @type {string}
30037
+ * @memberof DataTypesSearchRequest
30038
+ */
30039
+ 'facet_search_text'?: string;
30040
+ /**
30041
+ *
30042
+ * @type {Array<number>}
30043
+ * @memberof DataTypesSearchRequest
30044
+ */
30045
+ 'field_weights'?: Array<number>;
30046
+ /**
30047
+ *
30048
+ * @type {string}
30049
+ * @memberof DataTypesSearchRequest
30050
+ */
30051
+ 'filter'?: string;
30052
+ /**
30053
+ *
30054
+ * @type {Array<string>}
30055
+ * @memberof DataTypesSearchRequest
30056
+ */
30057
+ 'full_snippet_fields'?: Array<string>;
30058
+ /**
30059
+ *
30060
+ * @type {string}
30061
+ * @memberof DataTypesSearchRequest
30062
+ */
30063
+ 'group_field'?: string;
30064
+ /**
30065
+ *
30066
+ * @type {number}
30067
+ * @memberof DataTypesSearchRequest
30068
+ */
30069
+ 'group_size'?: number;
30070
+ /**
30071
+ *
30072
+ * @type {boolean}
30073
+ * @memberof DataTypesSearchRequest
30074
+ */
30075
+ 'include_snippets'?: boolean;
30076
+ /**
30077
+ *
30078
+ * @type {boolean}
30079
+ * @memberof DataTypesSearchRequest
30080
+ */
30081
+ 'include_suggestions'?: boolean;
30082
+ /**
30083
+ *
30084
+ * @type {string}
30085
+ * @memberof DataTypesSearchRequest
30086
+ */
30087
+ 'infix_mode'?: string;
30088
+ /**
30089
+ *
30090
+ * @type {number}
30091
+ * @memberof DataTypesSearchRequest
30092
+ */
30093
+ 'max_facet_values'?: number;
30094
+ /**
30095
+ *
30096
+ * @type {Array<string>}
30097
+ * @memberof DataTypesSearchRequest
30098
+ */
30099
+ 'omit_fields'?: Array<string>;
30100
+ /**
30101
+ *
30102
+ * @type {number}
30103
+ * @memberof DataTypesSearchRequest
30104
+ */
30105
+ 'page'?: number;
30106
+ /**
30107
+ *
30108
+ * @type {number}
30109
+ * @memberof DataTypesSearchRequest
30110
+ */
30111
+ 'per_page'?: number;
30112
+ /**
30113
+ *
30114
+ * @type {string}
30115
+ * @memberof DataTypesSearchRequest
30116
+ */
30117
+ 'prefix_mode'?: string;
30118
+ /**
30119
+ *
30120
+ * @type {string}
30121
+ * @memberof DataTypesSearchRequest
30122
+ */
30123
+ 'preset_name'?: string;
30124
+ /**
30125
+ *
30126
+ * @type {string}
30127
+ * @memberof DataTypesSearchRequest
30128
+ */
30129
+ 'q': string;
30130
+ /**
30131
+ *
30132
+ * @type {boolean}
30133
+ * @memberof DataTypesSearchRequest
30134
+ */
30135
+ 'require_all_terms'?: boolean;
30136
+ /**
30137
+ *
30138
+ * @type {Array<string>}
30139
+ * @memberof DataTypesSearchRequest
30140
+ */
30141
+ 'return_fields'?: Array<string>;
30142
+ /**
30143
+ * Advanced query controls (public-friendly field names)
30144
+ * @type {Array<string>}
30145
+ * @memberof DataTypesSearchRequest
30146
+ */
30147
+ 'search_fields'?: Array<string>;
30148
+ /**
30149
+ *
30150
+ * @type {number}
30151
+ * @memberof DataTypesSearchRequest
30152
+ */
30153
+ 'search_timeout_ms'?: number;
30154
+ /**
30155
+ * Session ID for session-based personalization
30156
+ * @type {string}
30157
+ * @memberof DataTypesSearchRequest
30158
+ */
30159
+ 'session_id'?: string;
30160
+ /**
30161
+ *
30162
+ * @type {Array<string>}
30163
+ * @memberof DataTypesSearchRequest
30164
+ */
30165
+ 'snippet_fields'?: Array<string>;
30166
+ /**
30167
+ *
30168
+ * @type {number}
30169
+ * @memberof DataTypesSearchRequest
30170
+ */
30171
+ 'snippet_min_len'?: number;
30172
+ /**
30173
+ *
30174
+ * @type {string}
30175
+ * @memberof DataTypesSearchRequest
30176
+ */
30177
+ 'snippet_prefix'?: string;
30178
+ /**
30179
+ *
30180
+ * @type {string}
30181
+ * @memberof DataTypesSearchRequest
30182
+ */
30183
+ 'snippet_suffix'?: string;
30184
+ /**
30185
+ *
30186
+ * @type {number}
30187
+ * @memberof DataTypesSearchRequest
30188
+ */
30189
+ 'snippet_token_limit'?: number;
30190
+ /**
30191
+ *
30192
+ * @type {string}
30193
+ * @memberof DataTypesSearchRequest
30194
+ */
30195
+ 'sort'?: string;
30196
+ /**
30197
+ * IDs of stopword sets to use
30198
+ * @type {Array<string>}
30199
+ * @memberof DataTypesSearchRequest
30200
+ */
30201
+ 'stopword_sets'?: Array<string>;
30202
+ /**
30203
+ *
30204
+ * @type {number}
30205
+ * @memberof DataTypesSearchRequest
30206
+ */
30207
+ 'suggestions_limit'?: number;
30208
+ /**
30209
+ * IDs of synonym sets to use
30210
+ * @type {Array<string>}
30211
+ * @memberof DataTypesSearchRequest
30212
+ */
30213
+ 'synonym_sets'?: Array<string>;
30214
+ /**
30215
+ *
30216
+ * @type {number}
30217
+ * @memberof DataTypesSearchRequest
30218
+ */
30219
+ 'typo_max'?: number;
30220
+ /**
30221
+ *
30222
+ * @type {number}
30223
+ * @memberof DataTypesSearchRequest
30224
+ */
30225
+ 'typo_min_len_1'?: number;
30226
+ /**
30227
+ *
30228
+ * @type {number}
30229
+ * @memberof DataTypesSearchRequest
30230
+ */
30231
+ 'typo_min_len_2'?: number;
30232
+ /**
30233
+ * Personalization fields (optional, backward compatible)
30234
+ * @type {string}
30235
+ * @memberof DataTypesSearchRequest
30236
+ */
30237
+ 'user_id'?: string;
30238
+ /**
30239
+ * If true, returns only display fields instead of full document (used in public API only)
30240
+ * @type {boolean}
30241
+ * @memberof DataTypesSearchRequest
30242
+ */
30243
+ 'widget_mode'?: boolean;
30244
+ }
30013
30245
  /**
30014
30246
  *
30015
30247
  * @export
@@ -30053,6 +30285,86 @@ export interface DataTypesSearchRequestsGraphResponse {
30053
30285
  */
30054
30286
  'total_requests'?: number;
30055
30287
  }
30288
+ /**
30289
+ *
30290
+ * @export
30291
+ * @interface DataTypesSearchResponse
30292
+ */
30293
+ export interface DataTypesSearchResponse {
30294
+ /**
30295
+ *
30296
+ * @type {any}
30297
+ * @memberof DataTypesSearchResponse
30298
+ */
30299
+ 'facets'?: any;
30300
+ /**
30301
+ *
30302
+ * @type {number}
30303
+ * @memberof DataTypesSearchResponse
30304
+ */
30305
+ 'page'?: number;
30306
+ /**
30307
+ *
30308
+ * @type {number}
30309
+ * @memberof DataTypesSearchResponse
30310
+ */
30311
+ 'per_page'?: number;
30312
+ /**
30313
+ *
30314
+ * @type {Array<DataTypesSearchResult>}
30315
+ * @memberof DataTypesSearchResponse
30316
+ */
30317
+ 'results'?: Array<DataTypesSearchResult>;
30318
+ /**
30319
+ * Unique search identifier for analytics linking
30320
+ * @type {string}
30321
+ * @memberof DataTypesSearchResponse
30322
+ */
30323
+ 'search_id'?: string;
30324
+ /**
30325
+ * Available sort options based on schema
30326
+ * @type {Array<DataTypesSortOption>}
30327
+ * @memberof DataTypesSearchResponse
30328
+ */
30329
+ 'sort_options'?: Array<DataTypesSortOption>;
30330
+ /**
30331
+ *
30332
+ * @type {Array<DataTypesAutocompleteSuggestion>}
30333
+ * @memberof DataTypesSearchResponse
30334
+ */
30335
+ 'suggestions'?: Array<DataTypesAutocompleteSuggestion>;
30336
+ /**
30337
+ *
30338
+ * @type {number}
30339
+ * @memberof DataTypesSearchResponse
30340
+ */
30341
+ 'total_results'?: number;
30342
+ }
30343
+ /**
30344
+ *
30345
+ * @export
30346
+ * @interface DataTypesSearchResponseWrapper
30347
+ */
30348
+ export interface DataTypesSearchResponseWrapper {
30349
+ /**
30350
+ *
30351
+ * @type {DataTypesSearchResponse}
30352
+ * @memberof DataTypesSearchResponseWrapper
30353
+ */
30354
+ 'data'?: DataTypesSearchResponse;
30355
+ /**
30356
+ *
30357
+ * @type {string}
30358
+ * @memberof DataTypesSearchResponseWrapper
30359
+ */
30360
+ 'message'?: string;
30361
+ /**
30362
+ *
30363
+ * @type {number}
30364
+ * @memberof DataTypesSearchResponseWrapper
30365
+ */
30366
+ 'status'?: number;
30367
+ }
30056
30368
  /**
30057
30369
  *
30058
30370
  * @export
@@ -30061,22 +30373,28 @@ export interface DataTypesSearchRequestsGraphResponse {
30061
30373
  export interface DataTypesSearchResult {
30062
30374
  /**
30063
30375
  *
30064
- * @type {number}
30376
+ * @type {{ [key: string]: any; }}
30065
30377
  * @memberof DataTypesSearchResult
30066
30378
  */
30067
- 'found'?: number;
30379
+ 'document'?: { [key: string]: any; };
30068
30380
  /**
30069
30381
  *
30070
- * @type {Array<object>}
30382
+ * @type {{ [key: string]: any; }}
30071
30383
  * @memberof DataTypesSearchResult
30072
30384
  */
30073
- 'results'?: Array<object>;
30385
+ 'highlight'?: { [key: string]: any; };
30074
30386
  /**
30075
30387
  *
30076
30388
  * @type {string}
30077
30389
  * @memberof DataTypesSearchResult
30078
30390
  */
30079
- 'status'?: string;
30391
+ 'id'?: string;
30392
+ /**
30393
+ *
30394
+ * @type {number}
30395
+ * @memberof DataTypesSearchResult
30396
+ */
30397
+ 'score'?: number;
30080
30398
  }
30081
30399
  /**
30082
30400
  *
@@ -30086,10 +30404,10 @@ export interface DataTypesSearchResult {
30086
30404
  export interface DataTypesSearchResultResponse {
30087
30405
  /**
30088
30406
  *
30089
- * @type {DataTypesSearchResult}
30407
+ * @type {DataTypesConnectorSearchResult}
30090
30408
  * @memberof DataTypesSearchResultResponse
30091
30409
  */
30092
- 'data'?: DataTypesSearchResult;
30410
+ 'data'?: DataTypesConnectorSearchResult;
30093
30411
  /**
30094
30412
  *
30095
30413
  * @type {string}
@@ -31303,315 +31621,718 @@ export interface DataTypesSourcesListResponse {
31303
31621
  * @type {Array<DataTypesSource>}
31304
31622
  * @memberof DataTypesSourcesListResponse
31305
31623
  */
31306
- 'data'?: Array<DataTypesSource>;
31624
+ 'data'?: Array<DataTypesSource>;
31625
+ /**
31626
+ *
31627
+ * @type {string}
31628
+ * @memberof DataTypesSourcesListResponse
31629
+ */
31630
+ 'message'?: string;
31631
+ /**
31632
+ *
31633
+ * @type {number}
31634
+ * @memberof DataTypesSourcesListResponse
31635
+ */
31636
+ 'status'?: number;
31637
+ }
31638
+ /**
31639
+ *
31640
+ * @export
31641
+ * @interface DataTypesStopwordEntry
31642
+ */
31643
+ export interface DataTypesStopwordEntry {
31644
+ /**
31645
+ * Stopword set ID
31646
+ * @type {string}
31647
+ * @memberof DataTypesStopwordEntry
31648
+ */
31649
+ 'id'?: string;
31650
+ /**
31651
+ * Optional locale
31652
+ * @type {string}
31653
+ * @memberof DataTypesStopwordEntry
31654
+ */
31655
+ 'locale'?: string;
31656
+ /**
31657
+ * Array of stopwords
31658
+ * @type {Array<string>}
31659
+ * @memberof DataTypesStopwordEntry
31660
+ */
31661
+ 'stopwords'?: Array<string>;
31662
+ }
31663
+ /**
31664
+ *
31665
+ * @export
31666
+ * @interface DataTypesStore
31667
+ */
31668
+ export interface DataTypesStore {
31669
+ /**
31670
+ * Timestamp for when the store was created
31671
+ * @type {string}
31672
+ * @memberof DataTypesStore
31673
+ */
31674
+ 'CreatedAt'?: string;
31675
+ /**
31676
+ * User ID of the creator, nullable
31677
+ * @type {number}
31678
+ * @memberof DataTypesStore
31679
+ */
31680
+ 'CreatedBy'?: number;
31681
+ /**
31682
+ * Store active status
31683
+ * @type {boolean}
31684
+ * @memberof DataTypesStore
31685
+ */
31686
+ 'IsActive'?: boolean;
31687
+ /**
31688
+ * Store location
31689
+ * @type {string}
31690
+ * @memberof DataTypesStore
31691
+ */
31692
+ 'Location'?: string;
31693
+ /**
31694
+ * Timestamp for when the store was last modified
31695
+ * @type {string}
31696
+ * @memberof DataTypesStore
31697
+ */
31698
+ 'ModifiedAt'?: string;
31699
+ /**
31700
+ * User ID of the last modifier, nullable
31701
+ * @type {number}
31702
+ * @memberof DataTypesStore
31703
+ */
31704
+ 'ModifiedBy'?: number;
31705
+ /**
31706
+ * Foreign key to mOrganizations
31707
+ * @type {number}
31708
+ * @memberof DataTypesStore
31709
+ */
31710
+ 'OrgID'?: number;
31711
+ /**
31712
+ * Primary key
31713
+ * @type {number}
31714
+ * @memberof DataTypesStore
31715
+ */
31716
+ 'StoreID'?: number;
31717
+ /**
31718
+ * Store name
31719
+ * @type {string}
31720
+ * @memberof DataTypesStore
31721
+ */
31722
+ 'StoreName'?: string;
31723
+ /**
31724
+ * Store alias
31725
+ * @type {string}
31726
+ * @memberof DataTypesStore
31727
+ */
31728
+ 'alias'?: string;
31729
+ /**
31730
+ * Include in API responses
31731
+ * @type {string}
31732
+ * @memberof DataTypesStore
31733
+ */
31734
+ 'xStoreID'?: string;
31735
+ }
31736
+ /**
31737
+ *
31738
+ * @export
31739
+ * @interface DataTypesStoreAccessRequest
31740
+ */
31741
+ export interface DataTypesStoreAccessRequest {
31742
+ /**
31743
+ *
31744
+ * @type {string}
31745
+ * @memberof DataTypesStoreAccessRequest
31746
+ */
31747
+ 'access_level': DataTypesStoreAccessRequestAccessLevelEnum;
31748
+ /**
31749
+ * Optional: overrides default based on access_level
31750
+ * @type {boolean}
31751
+ * @memberof DataTypesStoreAccessRequest
31752
+ */
31753
+ 'can_add'?: boolean;
31754
+ /**
31755
+ * Optional: overrides default based on access_level
31756
+ * @type {boolean}
31757
+ * @memberof DataTypesStoreAccessRequest
31758
+ */
31759
+ 'can_approve'?: boolean;
31760
+ /**
31761
+ * Optional: overrides default based on access_level
31762
+ * @type {boolean}
31763
+ * @memberof DataTypesStoreAccessRequest
31764
+ */
31765
+ 'can_delete'?: boolean;
31766
+ /**
31767
+ * Optional: overrides default based on access_level
31768
+ * @type {boolean}
31769
+ * @memberof DataTypesStoreAccessRequest
31770
+ */
31771
+ 'can_modify'?: boolean;
31772
+ /**
31773
+ * Optional: overrides default based on access_level
31774
+ * @type {boolean}
31775
+ * @memberof DataTypesStoreAccessRequest
31776
+ */
31777
+ 'can_view'?: boolean;
31778
+ /**
31779
+ * Optional: if true, grants all CRUD permissions
31780
+ * @type {boolean}
31781
+ * @memberof DataTypesStoreAccessRequest
31782
+ */
31783
+ 'full_access'?: boolean;
31784
+ /**
31785
+ *
31786
+ * @type {number}
31787
+ * @memberof DataTypesStoreAccessRequest
31788
+ */
31789
+ 'store_id': number;
31790
+ }
31791
+
31792
+ export const DataTypesStoreAccessRequestAccessLevelEnum = {
31793
+ Read: 'read',
31794
+ Write: 'write',
31795
+ Admin: 'admin'
31796
+ } as const;
31797
+
31798
+ export type DataTypesStoreAccessRequestAccessLevelEnum = typeof DataTypesStoreAccessRequestAccessLevelEnum[keyof typeof DataTypesStoreAccessRequestAccessLevelEnum];
31799
+
31800
+ /**
31801
+ *
31802
+ * @export
31803
+ * @interface DataTypesStoreAccessResponse
31804
+ */
31805
+ export interface DataTypesStoreAccessResponse {
31806
+ /**
31807
+ *
31808
+ * @type {Array<DataTypesStoreAccessWithDetails>}
31809
+ * @memberof DataTypesStoreAccessResponse
31810
+ */
31811
+ 'data'?: Array<DataTypesStoreAccessWithDetails>;
31812
+ /**
31813
+ *
31814
+ * @type {string}
31815
+ * @memberof DataTypesStoreAccessResponse
31816
+ */
31817
+ 'message'?: string;
31818
+ /**
31819
+ *
31820
+ * @type {number}
31821
+ * @memberof DataTypesStoreAccessResponse
31822
+ */
31823
+ 'status'?: number;
31824
+ }
31825
+ /**
31826
+ *
31827
+ * @export
31828
+ * @interface DataTypesStoreAccessWithDetails
31829
+ */
31830
+ export interface DataTypesStoreAccessWithDetails {
31831
+ /**
31832
+ *
31833
+ * @type {number}
31834
+ * @memberof DataTypesStoreAccessWithDetails
31835
+ */
31836
+ 'access_id'?: number;
31837
+ /**
31838
+ *
31839
+ * @type {string}
31840
+ * @memberof DataTypesStoreAccessWithDetails
31841
+ */
31842
+ 'access_level'?: string;
31843
+ /**
31844
+ *
31845
+ * @type {boolean}
31846
+ * @memberof DataTypesStoreAccessWithDetails
31847
+ */
31848
+ 'can_add'?: boolean;
31849
+ /**
31850
+ *
31851
+ * @type {boolean}
31852
+ * @memberof DataTypesStoreAccessWithDetails
31853
+ */
31854
+ 'can_approve'?: boolean;
31855
+ /**
31856
+ *
31857
+ * @type {boolean}
31858
+ * @memberof DataTypesStoreAccessWithDetails
31859
+ */
31860
+ 'can_delete'?: boolean;
31861
+ /**
31862
+ *
31863
+ * @type {boolean}
31864
+ * @memberof DataTypesStoreAccessWithDetails
31865
+ */
31866
+ 'can_modify'?: boolean;
31867
+ /**
31868
+ *
31869
+ * @type {boolean}
31870
+ * @memberof DataTypesStoreAccessWithDetails
31871
+ */
31872
+ 'can_view'?: boolean;
31873
+ /**
31874
+ *
31875
+ * @type {string}
31876
+ * @memberof DataTypesStoreAccessWithDetails
31877
+ */
31878
+ 'email'?: string;
31879
+ /**
31880
+ *
31881
+ * @type {string}
31882
+ * @memberof DataTypesStoreAccessWithDetails
31883
+ */
31884
+ 'first_name'?: string;
31885
+ /**
31886
+ *
31887
+ * @type {boolean}
31888
+ * @memberof DataTypesStoreAccessWithDetails
31889
+ */
31890
+ 'full_access'?: boolean;
31891
+ /**
31892
+ *
31893
+ * @type {string}
31894
+ * @memberof DataTypesStoreAccessWithDetails
31895
+ */
31896
+ 'granted_at'?: string;
31897
+ /**
31898
+ *
31899
+ * @type {number}
31900
+ * @memberof DataTypesStoreAccessWithDetails
31901
+ */
31902
+ 'granted_by'?: number;
31903
+ /**
31904
+ *
31905
+ * @type {boolean}
31906
+ * @memberof DataTypesStoreAccessWithDetails
31907
+ */
31908
+ 'is_active'?: boolean;
31909
+ /**
31910
+ *
31911
+ * @type {string}
31912
+ * @memberof DataTypesStoreAccessWithDetails
31913
+ */
31914
+ 'last_name'?: string;
31915
+ /**
31916
+ *
31917
+ * @type {number}
31918
+ * @memberof DataTypesStoreAccessWithDetails
31919
+ */
31920
+ 'store_id'?: number;
31921
+ /**
31922
+ *
31923
+ * @type {string}
31924
+ * @memberof DataTypesStoreAccessWithDetails
31925
+ */
31926
+ 'store_name'?: string;
31927
+ /**
31928
+ *
31929
+ * @type {number}
31930
+ * @memberof DataTypesStoreAccessWithDetails
31931
+ */
31932
+ 'user_id'?: number;
31933
+ }
31934
+ /**
31935
+ *
31936
+ * @export
31937
+ * @interface DataTypesStoreConfigUpdateRequest
31938
+ */
31939
+ export interface DataTypesStoreConfigUpdateRequest {
31940
+ /**
31941
+ * Optional: If set, updates the public search flag
31942
+ * @type {boolean}
31943
+ * @memberof DataTypesStoreConfigUpdateRequest
31944
+ */
31945
+ 'allow_public_search'?: boolean;
31946
+ /**
31947
+ *
31948
+ * @type {string}
31949
+ * @memberof DataTypesStoreConfigUpdateRequest
31950
+ */
31951
+ 'collection_alias'?: string;
31952
+ /**
31953
+ *
31954
+ * @type {string}
31955
+ * @memberof DataTypesStoreConfigUpdateRequest
31956
+ */
31957
+ 'collection_name'?: string;
31958
+ /**
31959
+ *
31960
+ * @type {string}
31961
+ * @memberof DataTypesStoreConfigUpdateRequest
31962
+ */
31963
+ 'default_sorting_field'?: string;
31964
+ /**
31965
+ * Default stopwords set ID to use in searches
31966
+ * @type {string}
31967
+ * @memberof DataTypesStoreConfigUpdateRequest
31968
+ */
31969
+ 'default_stopwords_set'?: string;
31970
+ /**
31971
+ *
31972
+ * @type {number}
31973
+ * @memberof DataTypesStoreConfigUpdateRequest
31974
+ */
31975
+ 'drop_tokens_threshold'?: number;
31976
+ /**
31977
+ * Dropdown recommendations configuration
31978
+ * @type {DataTypesDropdownRecommendationsConfig}
31979
+ * @memberof DataTypesStoreConfigUpdateRequest
31980
+ */
31981
+ 'dropdown_recommendations_config'?: DataTypesDropdownRecommendationsConfig;
31982
+ /**
31983
+ *
31984
+ * @type {string}
31985
+ * @memberof DataTypesStoreConfigUpdateRequest
31986
+ */
31987
+ 'embed'?: string;
31988
+ /**
31989
+ *
31990
+ * @type {boolean}
31991
+ * @memberof DataTypesStoreConfigUpdateRequest
31992
+ */
31993
+ 'enable_autocomplete'?: boolean;
31994
+ /**
31995
+ *
31996
+ * @type {boolean}
31997
+ * @memberof DataTypesStoreConfigUpdateRequest
31998
+ */
31999
+ 'enable_highlight'?: boolean;
32000
+ /**
32001
+ *
32002
+ * @type {boolean}
32003
+ * @memberof DataTypesStoreConfigUpdateRequest
32004
+ */
32005
+ 'enable_overrides'?: boolean;
32006
+ /**
32007
+ *
32008
+ * @type {boolean}
32009
+ * @memberof DataTypesStoreConfigUpdateRequest
32010
+ */
32011
+ 'enable_smart_autocomplete'?: boolean;
32012
+ /**
32013
+ * Enable stemming on search collections
32014
+ * @type {boolean}
32015
+ * @memberof DataTypesStoreConfigUpdateRequest
32016
+ */
32017
+ 'enable_stemming'?: boolean;
31307
32018
  /**
31308
32019
  *
31309
- * @type {string}
31310
- * @memberof DataTypesSourcesListResponse
32020
+ * @type {boolean}
32021
+ * @memberof DataTypesStoreConfigUpdateRequest
31311
32022
  */
31312
- 'message'?: string;
32023
+ 'enable_typo_highlight'?: boolean;
31313
32024
  /**
31314
32025
  *
31315
- * @type {number}
31316
- * @memberof DataTypesSourcesListResponse
32026
+ * @type {boolean}
32027
+ * @memberof DataTypesStoreConfigUpdateRequest
31317
32028
  */
31318
- 'status'?: number;
31319
- }
31320
- /**
31321
- *
31322
- * @export
31323
- * @interface DataTypesStopwordEntry
31324
- */
31325
- export interface DataTypesStopwordEntry {
32029
+ 'enable_typo_tolerance'?: boolean;
31326
32030
  /**
31327
- * Stopword set ID
31328
- * @type {string}
31329
- * @memberof DataTypesStopwordEntry
32031
+ * No omitempty to preserve empty arrays
32032
+ * @type {Array<string>}
32033
+ * @memberof DataTypesStoreConfigUpdateRequest
31330
32034
  */
31331
- 'id'?: string;
32035
+ 'exclude_fields'?: Array<string>;
31332
32036
  /**
31333
- * Optional locale
31334
- * @type {string}
31335
- * @memberof DataTypesStopwordEntry
32037
+ *
32038
+ * @type {boolean}
32039
+ * @memberof DataTypesStoreConfigUpdateRequest
31336
32040
  */
31337
- 'locale'?: string;
32041
+ 'exhaustive_search'?: boolean;
31338
32042
  /**
31339
- * Array of stopwords
32043
+ * No omitempty to preserve empty arrays
31340
32044
  * @type {Array<string>}
31341
- * @memberof DataTypesStopwordEntry
32045
+ * @memberof DataTypesStoreConfigUpdateRequest
31342
32046
  */
31343
- 'stopwords'?: Array<string>;
31344
- }
31345
- /**
31346
- *
31347
- * @export
31348
- * @interface DataTypesStore
31349
- */
31350
- export interface DataTypesStore {
32047
+ 'facet_by'?: Array<string>;
31351
32048
  /**
31352
- * Timestamp for when the store was created
32049
+ *
31353
32050
  * @type {string}
31354
- * @memberof DataTypesStore
32051
+ * @memberof DataTypesStoreConfigUpdateRequest
31355
32052
  */
31356
- 'CreatedAt'?: string;
31357
- /**
31358
- * User ID of the creator, nullable
31359
- * @type {number}
31360
- * @memberof DataTypesStore
31361
- */
31362
- 'CreatedBy'?: number;
32053
+ 'facet_query'?: string;
31363
32054
  /**
31364
- * Store active status
31365
- * @type {boolean}
31366
- * @memberof DataTypesStore
32055
+ * No omitempty to preserve empty arrays
32056
+ * @type {Array<DataTypesFacetRangeConfig>}
32057
+ * @memberof DataTypesStoreConfigUpdateRequest
31367
32058
  */
31368
- 'IsActive'?: boolean;
32059
+ 'facet_ranges'?: Array<DataTypesFacetRangeConfig>;
31369
32060
  /**
31370
- * Store location
32061
+ *
31371
32062
  * @type {string}
31372
- * @memberof DataTypesStore
32063
+ * @memberof DataTypesStoreConfigUpdateRequest
31373
32064
  */
31374
- 'Location'?: string;
32065
+ 'filter_by'?: string;
31375
32066
  /**
31376
- * Timestamp for when the store was last modified
32067
+ *
31377
32068
  * @type {string}
31378
- * @memberof DataTypesStore
32069
+ * @memberof DataTypesStoreConfigUpdateRequest
31379
32070
  */
31380
- 'ModifiedAt'?: string;
32071
+ 'group_by'?: string;
31381
32072
  /**
31382
- * User ID of the last modifier, nullable
32073
+ *
31383
32074
  * @type {number}
31384
- * @memberof DataTypesStore
32075
+ * @memberof DataTypesStoreConfigUpdateRequest
31385
32076
  */
31386
- 'ModifiedBy'?: number;
32077
+ 'group_limit'?: number;
31387
32078
  /**
31388
- * Foreign key to mOrganizations
31389
- * @type {number}
31390
- * @memberof DataTypesStore
32079
+ * No omitempty to preserve empty arrays
32080
+ * @type {Array<string>}
32081
+ * @memberof DataTypesStoreConfigUpdateRequest
31391
32082
  */
31392
- 'OrgID'?: number;
32083
+ 'hidden_facet_fields'?: Array<string>;
31393
32084
  /**
31394
- * Primary key
32085
+ * No omitempty to preserve empty arrays
32086
+ * @type {Array<string>}
32087
+ * @memberof DataTypesStoreConfigUpdateRequest
32088
+ */
32089
+ 'hidden_fields'?: Array<string>;
32090
+ /**
32091
+ * No omitempty to preserve empty arrays
32092
+ * @type {Array<string>}
32093
+ * @memberof DataTypesStoreConfigUpdateRequest
32094
+ */
32095
+ 'hidden_filter_fields'?: Array<string>;
32096
+ /**
32097
+ *
31395
32098
  * @type {number}
31396
- * @memberof DataTypesStore
32099
+ * @memberof DataTypesStoreConfigUpdateRequest
31397
32100
  */
31398
- 'StoreID'?: number;
32101
+ 'highlight_affix_num_tokens'?: number;
31399
32102
  /**
31400
- * Store name
32103
+ *
31401
32104
  * @type {string}
31402
- * @memberof DataTypesStore
32105
+ * @memberof DataTypesStoreConfigUpdateRequest
31403
32106
  */
31404
- 'StoreName'?: string;
32107
+ 'highlight_end_tag'?: string;
31405
32108
  /**
31406
- * Store alias
31407
- * @type {string}
31408
- * @memberof DataTypesStore
32109
+ * No omitempty to preserve empty arrays
32110
+ * @type {Array<string>}
32111
+ * @memberof DataTypesStoreConfigUpdateRequest
31409
32112
  */
31410
- 'alias'?: string;
32113
+ 'highlight_fields'?: Array<string>;
31411
32114
  /**
31412
- * Include in API responses
31413
- * @type {string}
31414
- * @memberof DataTypesStore
32115
+ * No omitempty to preserve empty arrays
32116
+ * @type {Array<string>}
32117
+ * @memberof DataTypesStoreConfigUpdateRequest
31415
32118
  */
31416
- 'xStoreID'?: string;
31417
- }
31418
- /**
31419
- *
31420
- * @export
31421
- * @interface DataTypesStoreAccessRequest
31422
- */
31423
- export interface DataTypesStoreAccessRequest {
32119
+ 'highlight_full_fields'?: Array<string>;
31424
32120
  /**
31425
32121
  *
31426
32122
  * @type {string}
31427
- * @memberof DataTypesStoreAccessRequest
32123
+ * @memberof DataTypesStoreConfigUpdateRequest
31428
32124
  */
31429
- 'access_level': DataTypesStoreAccessRequestAccessLevelEnum;
32125
+ 'highlight_start_tag'?: string;
31430
32126
  /**
31431
- * Optional: overrides default based on access_level
31432
- * @type {boolean}
31433
- * @memberof DataTypesStoreAccessRequest
32127
+ *
32128
+ * @type {string}
32129
+ * @memberof DataTypesStoreConfigUpdateRequest
31434
32130
  */
31435
- 'can_add'?: boolean;
32131
+ 'image_url'?: string;
31436
32132
  /**
31437
- * Optional: overrides default based on access_level
31438
- * @type {boolean}
31439
- * @memberof DataTypesStoreAccessRequest
32133
+ * No omitempty to preserve empty arrays
32134
+ * @type {Array<string>}
32135
+ * @memberof DataTypesStoreConfigUpdateRequest
31440
32136
  */
31441
- 'can_approve'?: boolean;
32137
+ 'include_fields'?: Array<string>;
31442
32138
  /**
31443
- * Optional: overrides default based on access_level
31444
- * @type {boolean}
31445
- * @memberof DataTypesStoreAccessRequest
32139
+ * \"always\", \"fallback\", or \"off\"
32140
+ * @type {string}
32141
+ * @memberof DataTypesStoreConfigUpdateRequest
31446
32142
  */
31447
- 'can_delete'?: boolean;
32143
+ 'infix'?: string;
31448
32144
  /**
31449
- * Optional: overrides default based on access_level
31450
- * @type {boolean}
31451
- * @memberof DataTypesStoreAccessRequest
32145
+ *
32146
+ * @type {string}
32147
+ * @memberof DataTypesStoreConfigUpdateRequest
31452
32148
  */
31453
- 'can_modify'?: boolean;
32149
+ 'locale'?: string;
31454
32150
  /**
31455
- * Optional: overrides default based on access_level
31456
- * @type {boolean}
31457
- * @memberof DataTypesStoreAccessRequest
32151
+ *
32152
+ * @type {number}
32153
+ * @memberof DataTypesStoreConfigUpdateRequest
31458
32154
  */
31459
- 'can_view'?: boolean;
32155
+ 'max_candidates'?: number;
31460
32156
  /**
31461
- * Optional: if true, grants all CRUD permissions
31462
- * @type {boolean}
31463
- * @memberof DataTypesStoreAccessRequest
32157
+ *
32158
+ * @type {number}
32159
+ * @memberof DataTypesStoreConfigUpdateRequest
31464
32160
  */
31465
- 'full_access'?: boolean;
32161
+ 'max_facet_values'?: number;
31466
32162
  /**
31467
32163
  *
31468
32164
  * @type {number}
31469
- * @memberof DataTypesStoreAccessRequest
32165
+ * @memberof DataTypesStoreConfigUpdateRequest
31470
32166
  */
31471
- 'store_id': number;
31472
- }
31473
-
31474
- export const DataTypesStoreAccessRequestAccessLevelEnum = {
31475
- Read: 'read',
31476
- Write: 'write',
31477
- Admin: 'admin'
31478
- } as const;
31479
-
31480
- export type DataTypesStoreAccessRequestAccessLevelEnum = typeof DataTypesStoreAccessRequestAccessLevelEnum[keyof typeof DataTypesStoreAccessRequestAccessLevelEnum];
31481
-
31482
- /**
31483
- *
31484
- * @export
31485
- * @interface DataTypesStoreAccessResponse
31486
- */
31487
- export interface DataTypesStoreAccessResponse {
32167
+ 'min_len_1typo'?: number;
31488
32168
  /**
31489
32169
  *
31490
- * @type {Array<DataTypesStoreAccessWithDetails>}
31491
- * @memberof DataTypesStoreAccessResponse
32170
+ * @type {number}
32171
+ * @memberof DataTypesStoreConfigUpdateRequest
31492
32172
  */
31493
- 'data'?: Array<DataTypesStoreAccessWithDetails>;
32173
+ 'min_len_2typo'?: number;
31494
32174
  /**
31495
32175
  *
31496
- * @type {string}
31497
- * @memberof DataTypesStoreAccessResponse
32176
+ * @type {number}
32177
+ * @memberof DataTypesStoreConfigUpdateRequest
31498
32178
  */
31499
- 'message'?: string;
32179
+ 'num_typos'?: number;
31500
32180
  /**
31501
32181
  *
31502
32182
  * @type {number}
31503
- * @memberof DataTypesStoreAccessResponse
32183
+ * @memberof DataTypesStoreConfigUpdateRequest
31504
32184
  */
31505
- 'status'?: number;
31506
- }
31507
- /**
31508
- *
31509
- * @export
31510
- * @interface DataTypesStoreAccessWithDetails
31511
- */
31512
- export interface DataTypesStoreAccessWithDetails {
32185
+ 'page'?: number;
31513
32186
  /**
31514
32187
  *
31515
32188
  * @type {number}
31516
- * @memberof DataTypesStoreAccessWithDetails
32189
+ * @memberof DataTypesStoreConfigUpdateRequest
31517
32190
  */
31518
- 'access_id'?: number;
32191
+ 'per_page'?: number;
31519
32192
  /**
31520
32193
  *
31521
32194
  * @type {string}
31522
- * @memberof DataTypesStoreAccessWithDetails
32195
+ * @memberof DataTypesStoreConfigUpdateRequest
31523
32196
  */
31524
- 'access_level'?: string;
32197
+ 'prefix'?: string;
31525
32198
  /**
31526
32199
  *
31527
- * @type {boolean}
31528
- * @memberof DataTypesStoreAccessWithDetails
32200
+ * @type {string}
32201
+ * @memberof DataTypesStoreConfigUpdateRequest
31529
32202
  */
31530
- 'can_add'?: boolean;
32203
+ 'preset'?: string;
31531
32204
  /**
31532
32205
  *
31533
- * @type {boolean}
31534
- * @memberof DataTypesStoreAccessWithDetails
32206
+ * @type {string}
32207
+ * @memberof DataTypesStoreConfigUpdateRequest
31535
32208
  */
31536
- 'can_approve'?: boolean;
32209
+ 'primary_text'?: string;
31537
32210
  /**
31538
32211
  *
31539
32212
  * @type {boolean}
31540
- * @memberof DataTypesStoreAccessWithDetails
32213
+ * @memberof DataTypesStoreConfigUpdateRequest
31541
32214
  */
31542
- 'can_delete'?: boolean;
32215
+ 'prioritize_exact_match'?: boolean;
31543
32216
  /**
31544
- *
31545
- * @type {boolean}
31546
- * @memberof DataTypesStoreAccessWithDetails
32217
+ * Required: Query string
32218
+ * @type {string}
32219
+ * @memberof DataTypesStoreConfigUpdateRequest
31547
32220
  */
31548
- 'can_modify'?: boolean;
32221
+ 'q'?: string;
32222
+ /**
32223
+ * Required: Array of search fields
32224
+ * @type {Array<string>}
32225
+ * @memberof DataTypesStoreConfigUpdateRequest
32226
+ */
32227
+ 'query_by'?: Array<string>;
32228
+ /**
32229
+ * Optional: Relative field weights as array (no omitempty to preserve empty arrays)
32230
+ * @type {Array<number>}
32231
+ * @memberof DataTypesStoreConfigUpdateRequest
32232
+ */
32233
+ 'query_by_weights'?: Array<number>;
32234
+ /**
32235
+ * Query suggestions configuration
32236
+ * @type {DataTypesQuerySuggestionsConfig}
32237
+ * @memberof DataTypesStoreConfigUpdateRequest
32238
+ */
32239
+ 'query_suggestions_config'?: DataTypesQuerySuggestionsConfig;
31549
32240
  /**
31550
32241
  *
31551
32242
  * @type {boolean}
31552
- * @memberof DataTypesStoreAccessWithDetails
32243
+ * @memberof DataTypesStoreConfigUpdateRequest
31553
32244
  */
31554
- 'can_view'?: boolean;
32245
+ 'query_syntax'?: boolean;
31555
32246
  /**
31556
32247
  *
32248
+ * @type {number}
32249
+ * @memberof DataTypesStoreConfigUpdateRequest
32250
+ */
32251
+ 'search_cutoff_ms'?: number;
32252
+ /**
32253
+ * \"text\", \"vector\", \"hybrid\"
31557
32254
  * @type {string}
31558
- * @memberof DataTypesStoreAccessWithDetails
32255
+ * @memberof DataTypesStoreConfigUpdateRequest
31559
32256
  */
31560
- 'email'?: string;
32257
+ 'search_strategy'?: string;
31561
32258
  /**
31562
32259
  *
31563
32260
  * @type {string}
31564
- * @memberof DataTypesStoreAccessWithDetails
32261
+ * @memberof DataTypesStoreConfigUpdateRequest
31565
32262
  */
31566
- 'first_name'?: string;
32263
+ 'secondary_text'?: string;
31567
32264
  /**
31568
32265
  *
31569
32266
  * @type {boolean}
31570
- * @memberof DataTypesStoreAccessWithDetails
32267
+ * @memberof DataTypesStoreConfigUpdateRequest
31571
32268
  */
31572
- 'full_access'?: boolean;
32269
+ 'semantic_ranker'?: boolean;
31573
32270
  /**
31574
32271
  *
32272
+ * @type {number}
32273
+ * @memberof DataTypesStoreConfigUpdateRequest
32274
+ */
32275
+ 'snippet_threshold'?: number;
32276
+ /**
32277
+ * No omitempty to preserve empty arrays
32278
+ * @type {Array<DataTypesSortField>}
32279
+ * @memberof DataTypesStoreConfigUpdateRequest
32280
+ */
32281
+ 'sort_by'?: Array<DataTypesSortField>;
32282
+ /**
32283
+ * Locale for stemming (e.g., \"en\", \"fr\", \"de\")
31575
32284
  * @type {string}
31576
- * @memberof DataTypesStoreAccessWithDetails
32285
+ * @memberof DataTypesStoreConfigUpdateRequest
31577
32286
  */
31578
- 'granted_at'?: string;
32287
+ 'stemming_locale'?: string;
31579
32288
  /**
31580
- *
31581
- * @type {number}
31582
- * @memberof DataTypesStoreAccessWithDetails
32289
+ * Flattened stopwords and synonyms fields
32290
+ * @type {Array<DataTypesStopwordEntry>}
32291
+ * @memberof DataTypesStoreConfigUpdateRequest
31583
32292
  */
31584
- 'granted_by'?: number;
32293
+ 'stopwords'?: Array<DataTypesStopwordEntry>;
31585
32294
  /**
31586
- *
31587
- * @type {boolean}
31588
- * @memberof DataTypesStoreAccessWithDetails
32295
+ * No omitempty to preserve empty arrays
32296
+ * @type {Array<string>}
32297
+ * @memberof DataTypesStoreConfigUpdateRequest
31589
32298
  */
31590
- 'is_active'?: boolean;
32299
+ 'symbols_to_index'?: Array<string>;
32300
+ /**
32301
+ * No omitempty to preserve empty arrays
32302
+ * @type {Array<DataTypesSynonymEntry>}
32303
+ * @memberof DataTypesStoreConfigUpdateRequest
32304
+ */
32305
+ 'synonyms'?: Array<DataTypesSynonymEntry>;
31591
32306
  /**
31592
32307
  *
31593
32308
  * @type {string}
31594
- * @memberof DataTypesStoreAccessWithDetails
32309
+ * @memberof DataTypesStoreConfigUpdateRequest
31595
32310
  */
31596
- 'last_name'?: string;
32311
+ 'tertiary_text'?: string;
31597
32312
  /**
31598
- *
31599
- * @type {number}
31600
- * @memberof DataTypesStoreAccessWithDetails
32313
+ * Optional: Search-only scoped API key
32314
+ * @type {string}
32315
+ * @memberof DataTypesStoreConfigUpdateRequest
31601
32316
  */
31602
- 'store_id'?: number;
32317
+ 'token'?: string;
32318
+ /**
32319
+ * No omitempty to preserve empty arrays
32320
+ * @type {Array<string>}
32321
+ * @memberof DataTypesStoreConfigUpdateRequest
32322
+ */
32323
+ 'token_separators'?: Array<string>;
31603
32324
  /**
31604
32325
  *
31605
- * @type {string}
31606
- * @memberof DataTypesStoreAccessWithDetails
32326
+ * @type {boolean}
32327
+ * @memberof DataTypesStoreConfigUpdateRequest
31607
32328
  */
31608
- 'store_name'?: string;
32329
+ 'use_cache'?: boolean;
31609
32330
  /**
31610
32331
  *
31611
- * @type {number}
31612
- * @memberof DataTypesStoreAccessWithDetails
32332
+ * @type {string}
32333
+ * @memberof DataTypesStoreConfigUpdateRequest
31613
32334
  */
31614
- 'user_id'?: number;
32335
+ 'vector_query'?: string;
31615
32336
  }
31616
32337
  /**
31617
32338
  *
@@ -31793,6 +32514,49 @@ export interface DataTypesStoreCredentialsResponse {
31793
32514
  */
31794
32515
  'status'?: number;
31795
32516
  }
32517
+ /**
32518
+ *
32519
+ * @export
32520
+ * @interface DataTypesStoreInfoResponse
32521
+ */
32522
+ export interface DataTypesStoreInfoResponse {
32523
+ /**
32524
+ *
32525
+ * @type {string}
32526
+ * @memberof DataTypesStoreInfoResponse
32527
+ */
32528
+ 'createdAt'?: string;
32529
+ /**
32530
+ *
32531
+ * @type {boolean}
32532
+ * @memberof DataTypesStoreInfoResponse
32533
+ */
32534
+ 'isActive'?: boolean;
32535
+ /**
32536
+ *
32537
+ * @type {string}
32538
+ * @memberof DataTypesStoreInfoResponse
32539
+ */
32540
+ 'location'?: string;
32541
+ /**
32542
+ *
32543
+ * @type {number}
32544
+ * @memberof DataTypesStoreInfoResponse
32545
+ */
32546
+ 'storeId'?: number;
32547
+ /**
32548
+ *
32549
+ * @type {string}
32550
+ * @memberof DataTypesStoreInfoResponse
32551
+ */
32552
+ 'storeName'?: string;
32553
+ /**
32554
+ *
32555
+ * @type {string}
32556
+ * @memberof DataTypesStoreInfoResponse
32557
+ */
32558
+ 'xStoreId'?: string;
32559
+ }
31796
32560
  /**
31797
32561
  *
31798
32562
  * @export
@@ -31980,6 +32744,31 @@ export interface DataTypesStoreLevelMenuRightWithMenu {
31980
32744
  */
31981
32745
  'storeName'?: string;
31982
32746
  }
32747
+ /**
32748
+ *
32749
+ * @export
32750
+ * @interface DataTypesStoreRecordSizeMetrics
32751
+ */
32752
+ export interface DataTypesStoreRecordSizeMetrics {
32753
+ /**
32754
+ *
32755
+ * @type {number}
32756
+ * @memberof DataTypesStoreRecordSizeMetrics
32757
+ */
32758
+ 'avg_record_size_bytes'?: number;
32759
+ /**
32760
+ *
32761
+ * @type {number}
32762
+ * @memberof DataTypesStoreRecordSizeMetrics
32763
+ */
32764
+ 'max_record_size_bytes'?: number;
32765
+ /**
32766
+ *
32767
+ * @type {number}
32768
+ * @memberof DataTypesStoreRecordSizeMetrics
32769
+ */
32770
+ 'record_count'?: number;
32771
+ }
31983
32772
  /**
31984
32773
  *
31985
32774
  * @export
@@ -32215,12 +33004,6 @@ export interface DataTypesSubscription {
32215
33004
  'createdAt'?: string;
32216
33005
  /**
32217
33006
  *
32218
- * @type {number}
32219
- * @memberof DataTypesSubscription
32220
- */
32221
- 'createdBy'?: number;
32222
- /**
32223
- * Subscription end date
32224
33007
  * @type {string}
32225
33008
  * @memberof DataTypesSubscription
32226
33009
  */
@@ -32239,46 +33022,34 @@ export interface DataTypesSubscription {
32239
33022
  'modifiedAt'?: string;
32240
33023
  /**
32241
33024
  *
32242
- * @type {number}
32243
- * @memberof DataTypesSubscription
32244
- */
32245
- 'modifiedBy'?: number;
32246
- /**
32247
- * Nullable
32248
33025
  * @type {string}
32249
33026
  * @memberof DataTypesSubscription
32250
33027
  */
32251
33028
  'nextBillingDate'?: string;
32252
33029
  /**
32253
- * Foreign key to mOrganizations
32254
- * @type {number}
32255
- * @memberof DataTypesSubscription
32256
- */
32257
- 'orgID'?: number;
32258
- /**
32259
- * Foreign key to mPlans
33030
+ * plan is config, not sensitive
32260
33031
  * @type {number}
32261
33032
  * @memberof DataTypesSubscription
32262
33033
  */
32263
33034
  'planID'?: number;
32264
33035
  /**
32265
- * Subscription start date
33036
+ *
32266
33037
  * @type {string}
32267
33038
  * @memberof DataTypesSubscription
32268
33039
  */
32269
33040
  'startDate'?: string;
32270
33041
  /**
32271
- * Status (e.g., Active, Expired, Canceled)
33042
+ *
32272
33043
  * @type {string}
32273
33044
  * @memberof DataTypesSubscription
32274
33045
  */
32275
33046
  'status'?: string;
32276
33047
  /**
32277
- *
32278
- * @type {number}
33048
+ * public identifier
33049
+ * @type {string}
32279
33050
  * @memberof DataTypesSubscription
32280
33051
  */
32281
- 'subsID'?: number;
33052
+ 'subscription_id'?: string;
32282
33053
  }
32283
33054
  /**
32284
33055
  *
@@ -49575,7 +50346,7 @@ export const AnalyticsEventsApiFp = function(configuration?: Configuration) {
49575
50346
  * @param {*} [options] Override http request option.
49576
50347
  * @throws {RequiredError}
49577
50348
  */
49578
- async analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>> {
50349
+ async analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesBatchEventData>> {
49579
50350
  const localVarAxiosArgs = await localVarAxiosParamCreator.analyticsBatchPost(xStoreid, xStoresecret, analyticsBatchPostRequest, options);
49580
50351
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
49581
50352
  const localVarOperationServerBasePath = operationServerMap['AnalyticsEventsApi.analyticsBatchPost']?.[localVarOperationServerIndex]?.url;
@@ -49589,7 +50360,7 @@ export const AnalyticsEventsApiFp = function(configuration?: Configuration) {
49589
50360
  * @param {*} [options] Override http request option.
49590
50361
  * @throws {RequiredError}
49591
50362
  */
49592
- async analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>> {
50363
+ async analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesAnalyticsConfigData>> {
49593
50364
  const localVarAxiosArgs = await localVarAxiosParamCreator.analyticsConfigGet(xStoreid, xStoresecret, options);
49594
50365
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
49595
50366
  const localVarOperationServerBasePath = operationServerMap['AnalyticsEventsApi.analyticsConfigGet']?.[localVarOperationServerIndex]?.url;
@@ -49604,7 +50375,7 @@ export const AnalyticsEventsApiFp = function(configuration?: Configuration) {
49604
50375
  * @param {*} [options] Override http request option.
49605
50376
  * @throws {RequiredError}
49606
50377
  */
49607
- async analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>> {
50378
+ async analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesEventSubmitData>> {
49608
50379
  const localVarAxiosArgs = await localVarAxiosParamCreator.analyticsEventPost(xStoreid, xStoresecret, dataTypesEventPayload, options);
49609
50380
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
49610
50381
  const localVarOperationServerBasePath = operationServerMap['AnalyticsEventsApi.analyticsEventPost']?.[localVarOperationServerIndex]?.url;
@@ -49633,7 +50404,7 @@ export const AnalyticsEventsApiFp = function(configuration?: Configuration) {
49633
50404
  * @param {*} [options] Override http request option.
49634
50405
  * @throws {RequiredError}
49635
50406
  */
49636
- async analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>> {
50407
+ async analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesEventValidateData>> {
49637
50408
  const localVarAxiosArgs = await localVarAxiosParamCreator.analyticsValidatePost(xStoreid, xStoresecret, dataTypesEventPayload, options);
49638
50409
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
49639
50410
  const localVarOperationServerBasePath = operationServerMap['AnalyticsEventsApi.analyticsValidatePost']?.[localVarOperationServerIndex]?.url;
@@ -49658,7 +50429,7 @@ export const AnalyticsEventsApiFactory = function (configuration?: Configuration
49658
50429
  * @param {*} [options] Override http request option.
49659
50430
  * @throws {RequiredError}
49660
50431
  */
49661
- analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse> {
50432
+ analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesBatchEventData> {
49662
50433
  return localVarFp.analyticsBatchPost(xStoreid, xStoresecret, analyticsBatchPostRequest, options).then((request) => request(axios, basePath));
49663
50434
  },
49664
50435
  /**
@@ -49669,7 +50440,7 @@ export const AnalyticsEventsApiFactory = function (configuration?: Configuration
49669
50440
  * @param {*} [options] Override http request option.
49670
50441
  * @throws {RequiredError}
49671
50442
  */
49672
- analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse> {
50443
+ analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesAnalyticsConfigData> {
49673
50444
  return localVarFp.analyticsConfigGet(xStoreid, xStoresecret, options).then((request) => request(axios, basePath));
49674
50445
  },
49675
50446
  /**
@@ -49681,7 +50452,7 @@ export const AnalyticsEventsApiFactory = function (configuration?: Configuration
49681
50452
  * @param {*} [options] Override http request option.
49682
50453
  * @throws {RequiredError}
49683
50454
  */
49684
- analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse> {
50455
+ analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesEventSubmitData> {
49685
50456
  return localVarFp.analyticsEventPost(xStoreid, xStoresecret, dataTypesEventPayload, options).then((request) => request(axios, basePath));
49686
50457
  },
49687
50458
  /**
@@ -49704,7 +50475,7 @@ export const AnalyticsEventsApiFactory = function (configuration?: Configuration
49704
50475
  * @param {*} [options] Override http request option.
49705
50476
  * @throws {RequiredError}
49706
50477
  */
49707
- analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse> {
50478
+ analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesEventValidateData> {
49708
50479
  return localVarFp.analyticsValidatePost(xStoreid, xStoresecret, dataTypesEventPayload, options).then((request) => request(axios, basePath));
49709
50480
  },
49710
50481
  };
@@ -68267,6 +69038,39 @@ export class FeatureLimitsApi extends BaseAPI {
68267
69038
  */
68268
69039
  export const FeatureLimitsAdminApiAxiosParamCreator = function (configuration?: Configuration) {
68269
69040
  return {
69041
+ /**
69042
+ * 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.
69043
+ * @summary Invalidate all org plan caches (Admin)
69044
+ * @param {*} [options] Override http request option.
69045
+ * @throws {RequiredError}
69046
+ */
69047
+ adminV1FeatureLimitsCacheInvalidateAllPost: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
69048
+ const localVarPath = `/admin/v1/feature-limits/cache/invalidate-all`;
69049
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
69050
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
69051
+ let baseOptions;
69052
+ if (configuration) {
69053
+ baseOptions = configuration.baseOptions;
69054
+ }
69055
+
69056
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
69057
+ const localVarHeaderParameter = {} as any;
69058
+ const localVarQueryParameter = {} as any;
69059
+
69060
+ // authentication BearerAuth required
69061
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
69062
+
69063
+
69064
+
69065
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
69066
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
69067
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
69068
+
69069
+ return {
69070
+ url: toPathString(localVarUrlObj),
69071
+ options: localVarRequestOptions,
69072
+ };
69073
+ },
68270
69074
  /**
68271
69075
  * Invalidates the cached plan data for an organization
68272
69076
  * @summary Invalidate plan cache (Admin)
@@ -68388,6 +69192,18 @@ export const FeatureLimitsAdminApiAxiosParamCreator = function (configuration?:
68388
69192
  export const FeatureLimitsAdminApiFp = function(configuration?: Configuration) {
68389
69193
  const localVarAxiosParamCreator = FeatureLimitsAdminApiAxiosParamCreator(configuration)
68390
69194
  return {
69195
+ /**
69196
+ * 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.
69197
+ * @summary Invalidate all org plan caches (Admin)
69198
+ * @param {*} [options] Override http request option.
69199
+ * @throws {RequiredError}
69200
+ */
69201
+ async adminV1FeatureLimitsCacheInvalidateAllPost(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>> {
69202
+ const localVarAxiosArgs = await localVarAxiosParamCreator.adminV1FeatureLimitsCacheInvalidateAllPost(options);
69203
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
69204
+ const localVarOperationServerBasePath = operationServerMap['FeatureLimitsAdminApi.adminV1FeatureLimitsCacheInvalidateAllPost']?.[localVarOperationServerIndex]?.url;
69205
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
69206
+ },
68391
69207
  /**
68392
69208
  * Invalidates the cached plan data for an organization
68393
69209
  * @summary Invalidate plan cache (Admin)
@@ -68436,6 +69252,15 @@ export const FeatureLimitsAdminApiFp = function(configuration?: Configuration) {
68436
69252
  export const FeatureLimitsAdminApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
68437
69253
  const localVarFp = FeatureLimitsAdminApiFp(configuration)
68438
69254
  return {
69255
+ /**
69256
+ * 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.
69257
+ * @summary Invalidate all org plan caches (Admin)
69258
+ * @param {*} [options] Override http request option.
69259
+ * @throws {RequiredError}
69260
+ */
69261
+ adminV1FeatureLimitsCacheInvalidateAllPost(options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse> {
69262
+ return localVarFp.adminV1FeatureLimitsCacheInvalidateAllPost(options).then((request) => request(axios, basePath));
69263
+ },
68439
69264
  /**
68440
69265
  * Invalidates the cached plan data for an organization
68441
69266
  * @summary Invalidate plan cache (Admin)
@@ -68475,6 +69300,17 @@ export const FeatureLimitsAdminApiFactory = function (configuration?: Configurat
68475
69300
  * @extends {BaseAPI}
68476
69301
  */
68477
69302
  export class FeatureLimitsAdminApi extends BaseAPI {
69303
+ /**
69304
+ * 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.
69305
+ * @summary Invalidate all org plan caches (Admin)
69306
+ * @param {*} [options] Override http request option.
69307
+ * @throws {RequiredError}
69308
+ * @memberof FeatureLimitsAdminApi
69309
+ */
69310
+ public adminV1FeatureLimitsCacheInvalidateAllPost(options?: RawAxiosRequestConfig) {
69311
+ return FeatureLimitsAdminApiFp(this.configuration).adminV1FeatureLimitsCacheInvalidateAllPost(options).then((request) => request(this.axios, this.basePath));
69312
+ }
69313
+
68478
69314
  /**
68479
69315
  * Invalidates the cached plan data for an organization
68480
69316
  * @summary Invalidate plan cache (Admin)
@@ -87170,20 +88006,20 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio
87170
88006
  * @summary Search (POST)
87171
88007
  * @param {string} xStoreid Store ID (from dashboard)
87172
88008
  * @param {string} xStoresecret Store read secret (from dashboard)
87173
- * @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search query, filters, pagination, and options
88009
+ * @param {DataTypesSearchRequest} dataTypesSearchRequest Search query, filters, pagination, and options
87174
88010
  * @param {string} [xUserId] User ID for personalization
87175
88011
  * @param {string} [xAnonId] Anonymous user ID for personalization
87176
88012
  * @param {string} [xSessionId] Session ID for personalization
87177
88013
  * @param {*} [options] Override http request option.
87178
88014
  * @throws {RequiredError}
87179
88015
  */
87180
- v1SearchPost: async (xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
88016
+ v1SearchPost: async (xStoreid: string, xStoresecret: string, dataTypesSearchRequest: DataTypesSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
87181
88017
  // verify required parameter 'xStoreid' is not null or undefined
87182
88018
  assertParamExists('v1SearchPost', 'xStoreid', xStoreid)
87183
88019
  // verify required parameter 'xStoresecret' is not null or undefined
87184
88020
  assertParamExists('v1SearchPost', 'xStoresecret', xStoresecret)
87185
- // verify required parameter 'dataTypesPublicSearchRequest' is not null or undefined
87186
- assertParamExists('v1SearchPost', 'dataTypesPublicSearchRequest', dataTypesPublicSearchRequest)
88021
+ // verify required parameter 'dataTypesSearchRequest' is not null or undefined
88022
+ assertParamExists('v1SearchPost', 'dataTypesSearchRequest', dataTypesSearchRequest)
87187
88023
  const localVarPath = `/v1/search`;
87188
88024
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
87189
88025
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -87218,7 +88054,7 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio
87218
88054
  setSearchParams(localVarUrlObj, localVarQueryParameter);
87219
88055
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
87220
88056
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
87221
- localVarRequestOptions.data = serializeDataIfNeeded(dataTypesPublicSearchRequest, localVarRequestOptions, configuration)
88057
+ localVarRequestOptions.data = serializeDataIfNeeded(dataTypesSearchRequest, localVarRequestOptions, configuration)
87222
88058
 
87223
88059
  return {
87224
88060
  url: toPathString(localVarUrlObj),
@@ -87366,7 +88202,7 @@ export const SearchApiFp = function(configuration?: Configuration) {
87366
88202
  * @param {*} [options] Override http request option.
87367
88203
  * @throws {RequiredError}
87368
88204
  */
87369
- async 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<DataTypesOfficialSearchResponseWrapper>> {
88205
+ async 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>> {
87370
88206
  const localVarAxiosArgs = await localVarAxiosParamCreator.v1SearchGet(xStoreid, xStoresecret, q, xUserId, xAnonId, xSessionId, page, perPage, sortBy, filterBy, facetBy, maxFacetValues, widgetMode, includeSuggestions, suggestionsLimit, analyticsTags, stopwordSets, synonymSets, searchFields, returnFields, omitFields, snippetFields, fullSnippetFields, fieldWeights, groupField, groupSize, snippetPrefix, snippetSuffix, snippetTokenLimit, snippetMinLen, includeSnippets, prefixMode, infixMode, typoMax, typoMinLen1, typoMinLen2, searchTimeoutMs, requireAllTerms, exactMatchBoost, cacheResults, applyRules, presetName, facetSearchText, options);
87371
88207
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
87372
88208
  const localVarOperationServerBasePath = operationServerMap['SearchApi.v1SearchGet']?.[localVarOperationServerIndex]?.url;
@@ -87377,15 +88213,15 @@ export const SearchApiFp = function(configuration?: Configuration) {
87377
88213
  * @summary Search (POST)
87378
88214
  * @param {string} xStoreid Store ID (from dashboard)
87379
88215
  * @param {string} xStoresecret Store read secret (from dashboard)
87380
- * @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search query, filters, pagination, and options
88216
+ * @param {DataTypesSearchRequest} dataTypesSearchRequest Search query, filters, pagination, and options
87381
88217
  * @param {string} [xUserId] User ID for personalization
87382
88218
  * @param {string} [xAnonId] Anonymous user ID for personalization
87383
88219
  * @param {string} [xSessionId] Session ID for personalization
87384
88220
  * @param {*} [options] Override http request option.
87385
88221
  * @throws {RequiredError}
87386
88222
  */
87387
- async v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesOfficialSearchResponseWrapper>> {
87388
- const localVarAxiosArgs = await localVarAxiosParamCreator.v1SearchPost(xStoreid, xStoresecret, dataTypesPublicSearchRequest, xUserId, xAnonId, xSessionId, options);
88223
+ async v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesSearchRequest: DataTypesSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSearchResponseWrapper>> {
88224
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1SearchPost(xStoreid, xStoresecret, dataTypesSearchRequest, xUserId, xAnonId, xSessionId, options);
87389
88225
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
87390
88226
  const localVarOperationServerBasePath = operationServerMap['SearchApi.v1SearchPost']?.[localVarOperationServerIndex]?.url;
87391
88227
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -87513,7 +88349,7 @@ export const SearchApiFactory = function (configuration?: Configuration, basePat
87513
88349
  * @param {*} [options] Override http request option.
87514
88350
  * @throws {RequiredError}
87515
88351
  */
87516
- 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<DataTypesOfficialSearchResponseWrapper> {
88352
+ 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> {
87517
88353
  return localVarFp.v1SearchGet(xStoreid, xStoresecret, q, xUserId, xAnonId, xSessionId, page, perPage, sortBy, filterBy, facetBy, maxFacetValues, widgetMode, includeSuggestions, suggestionsLimit, analyticsTags, stopwordSets, synonymSets, searchFields, returnFields, omitFields, snippetFields, fullSnippetFields, fieldWeights, groupField, groupSize, snippetPrefix, snippetSuffix, snippetTokenLimit, snippetMinLen, includeSnippets, prefixMode, infixMode, typoMax, typoMinLen1, typoMinLen2, searchTimeoutMs, requireAllTerms, exactMatchBoost, cacheResults, applyRules, presetName, facetSearchText, options).then((request) => request(axios, basePath));
87518
88354
  },
87519
88355
  /**
@@ -87521,15 +88357,15 @@ export const SearchApiFactory = function (configuration?: Configuration, basePat
87521
88357
  * @summary Search (POST)
87522
88358
  * @param {string} xStoreid Store ID (from dashboard)
87523
88359
  * @param {string} xStoresecret Store read secret (from dashboard)
87524
- * @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search query, filters, pagination, and options
88360
+ * @param {DataTypesSearchRequest} dataTypesSearchRequest Search query, filters, pagination, and options
87525
88361
  * @param {string} [xUserId] User ID for personalization
87526
88362
  * @param {string} [xAnonId] Anonymous user ID for personalization
87527
88363
  * @param {string} [xSessionId] Session ID for personalization
87528
88364
  * @param {*} [options] Override http request option.
87529
88365
  * @throws {RequiredError}
87530
88366
  */
87531
- v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesOfficialSearchResponseWrapper> {
87532
- return localVarFp.v1SearchPost(xStoreid, xStoresecret, dataTypesPublicSearchRequest, xUserId, xAnonId, xSessionId, options).then((request) => request(axios, basePath));
88367
+ v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesSearchRequest: DataTypesSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSearchResponseWrapper> {
88368
+ return localVarFp.v1SearchPost(xStoreid, xStoresecret, dataTypesSearchRequest, xUserId, xAnonId, xSessionId, options).then((request) => request(axios, basePath));
87533
88369
  },
87534
88370
  };
87535
88371
  };
@@ -87676,7 +88512,7 @@ export class SearchApi extends BaseAPI {
87676
88512
  * @summary Search (POST)
87677
88513
  * @param {string} xStoreid Store ID (from dashboard)
87678
88514
  * @param {string} xStoresecret Store read secret (from dashboard)
87679
- * @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search query, filters, pagination, and options
88515
+ * @param {DataTypesSearchRequest} dataTypesSearchRequest Search query, filters, pagination, and options
87680
88516
  * @param {string} [xUserId] User ID for personalization
87681
88517
  * @param {string} [xAnonId] Anonymous user ID for personalization
87682
88518
  * @param {string} [xSessionId] Session ID for personalization
@@ -87684,8 +88520,8 @@ export class SearchApi extends BaseAPI {
87684
88520
  * @throws {RequiredError}
87685
88521
  * @memberof SearchApi
87686
88522
  */
87687
- public v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig) {
87688
- return SearchApiFp(this.configuration).v1SearchPost(xStoreid, xStoresecret, dataTypesPublicSearchRequest, xUserId, xAnonId, xSessionId, options).then((request) => request(this.axios, this.basePath));
88523
+ public v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesSearchRequest: DataTypesSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig) {
88524
+ return SearchApiFp(this.configuration).v1SearchPost(xStoreid, xStoresecret, dataTypesSearchRequest, xUserId, xAnonId, xSessionId, options).then((request) => request(this.axios, this.basePath));
87689
88525
  }
87690
88526
  }
87691
88527
 
@@ -89805,15 +90641,15 @@ export const StoreManagementApiAxiosParamCreator = function (configuration?: Con
89805
90641
  * 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.
89806
90642
  * @summary Create Store (Public SDK API)
89807
90643
  * @param {string} authorization Bearer JWT Token
89808
- * @param {DataTypesPublicCreateStoreRequest} dataTypesPublicCreateStoreRequest Store creation request
90644
+ * @param {DataTypesCreateStoreRequest} dataTypesCreateStoreRequest Store creation request
89809
90645
  * @param {*} [options] Override http request option.
89810
90646
  * @throws {RequiredError}
89811
90647
  */
89812
- apiV1StoresPost: async (authorization: string, dataTypesPublicCreateStoreRequest: DataTypesPublicCreateStoreRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
90648
+ apiV1StoresPost: async (authorization: string, dataTypesCreateStoreRequest: DataTypesCreateStoreRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
89813
90649
  // verify required parameter 'authorization' is not null or undefined
89814
90650
  assertParamExists('apiV1StoresPost', 'authorization', authorization)
89815
- // verify required parameter 'dataTypesPublicCreateStoreRequest' is not null or undefined
89816
- assertParamExists('apiV1StoresPost', 'dataTypesPublicCreateStoreRequest', dataTypesPublicCreateStoreRequest)
90651
+ // verify required parameter 'dataTypesCreateStoreRequest' is not null or undefined
90652
+ assertParamExists('apiV1StoresPost', 'dataTypesCreateStoreRequest', dataTypesCreateStoreRequest)
89817
90653
  const localVarPath = `/api/v1/stores`;
89818
90654
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
89819
90655
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -89839,7 +90675,7 @@ export const StoreManagementApiAxiosParamCreator = function (configuration?: Con
89839
90675
  setSearchParams(localVarUrlObj, localVarQueryParameter);
89840
90676
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
89841
90677
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
89842
- localVarRequestOptions.data = serializeDataIfNeeded(dataTypesPublicCreateStoreRequest, localVarRequestOptions, configuration)
90678
+ localVarRequestOptions.data = serializeDataIfNeeded(dataTypesCreateStoreRequest, localVarRequestOptions, configuration)
89843
90679
 
89844
90680
  return {
89845
90681
  url: toPathString(localVarUrlObj),
@@ -89901,19 +90737,19 @@ export const StoreManagementApiAxiosParamCreator = function (configuration?: Con
89901
90737
  * @param {string} xStoreid Store ID (from dashboard)
89902
90738
  * @param {string} xStoreWriteSecret Store write secret
89903
90739
  * @param {string} xStoreID Store ID (must match x-storeid header)
89904
- * @param {DataTypesIndexConfig} dataTypesIndexConfig Fields to update (partial)
90740
+ * @param {DataTypesStoreConfigUpdateRequest} dataTypesStoreConfigUpdateRequest Fields to update (partial, includes allow_public_search)
89905
90741
  * @param {*} [options] Override http request option.
89906
90742
  * @throws {RequiredError}
89907
90743
  */
89908
- apiV1StoresXStoreIDConfigPut: async (xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesIndexConfig: DataTypesIndexConfig, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
90744
+ apiV1StoresXStoreIDConfigPut: async (xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesStoreConfigUpdateRequest: DataTypesStoreConfigUpdateRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
89909
90745
  // verify required parameter 'xStoreid' is not null or undefined
89910
90746
  assertParamExists('apiV1StoresXStoreIDConfigPut', 'xStoreid', xStoreid)
89911
90747
  // verify required parameter 'xStoreWriteSecret' is not null or undefined
89912
90748
  assertParamExists('apiV1StoresXStoreIDConfigPut', 'xStoreWriteSecret', xStoreWriteSecret)
89913
90749
  // verify required parameter 'xStoreID' is not null or undefined
89914
90750
  assertParamExists('apiV1StoresXStoreIDConfigPut', 'xStoreID', xStoreID)
89915
- // verify required parameter 'dataTypesIndexConfig' is not null or undefined
89916
- assertParamExists('apiV1StoresXStoreIDConfigPut', 'dataTypesIndexConfig', dataTypesIndexConfig)
90751
+ // verify required parameter 'dataTypesStoreConfigUpdateRequest' is not null or undefined
90752
+ assertParamExists('apiV1StoresXStoreIDConfigPut', 'dataTypesStoreConfigUpdateRequest', dataTypesStoreConfigUpdateRequest)
89917
90753
  const localVarPath = `/api/v1/stores/{xStoreID}/config`
89918
90754
  .replace(`{${"xStoreID"}}`, encodeURIComponent(String(xStoreID)));
89919
90755
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -89943,7 +90779,7 @@ export const StoreManagementApiAxiosParamCreator = function (configuration?: Con
89943
90779
  setSearchParams(localVarUrlObj, localVarQueryParameter);
89944
90780
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
89945
90781
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
89946
- localVarRequestOptions.data = serializeDataIfNeeded(dataTypesIndexConfig, localVarRequestOptions, configuration)
90782
+ localVarRequestOptions.data = serializeDataIfNeeded(dataTypesStoreConfigUpdateRequest, localVarRequestOptions, configuration)
89947
90783
 
89948
90784
  return {
89949
90785
  url: toPathString(localVarUrlObj),
@@ -90535,12 +91371,12 @@ export const StoreManagementApiFp = function(configuration?: Configuration) {
90535
91371
  * 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.
90536
91372
  * @summary Create Store (Public SDK API)
90537
91373
  * @param {string} authorization Bearer JWT Token
90538
- * @param {DataTypesPublicCreateStoreRequest} dataTypesPublicCreateStoreRequest Store creation request
91374
+ * @param {DataTypesCreateStoreRequest} dataTypesCreateStoreRequest Store creation request
90539
91375
  * @param {*} [options] Override http request option.
90540
91376
  * @throws {RequiredError}
90541
91377
  */
90542
- async apiV1StoresPost(authorization: string, dataTypesPublicCreateStoreRequest: DataTypesPublicCreateStoreRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesPublicCreateStoreResponse>> {
90543
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1StoresPost(authorization, dataTypesPublicCreateStoreRequest, options);
91378
+ async apiV1StoresPost(authorization: string, dataTypesCreateStoreRequest: DataTypesCreateStoreRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesCreateStoreResponse>> {
91379
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1StoresPost(authorization, dataTypesCreateStoreRequest, options);
90544
91380
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
90545
91381
  const localVarOperationServerBasePath = operationServerMap['StoreManagementApi.apiV1StoresPost']?.[localVarOperationServerIndex]?.url;
90546
91382
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -90566,12 +91402,12 @@ export const StoreManagementApiFp = function(configuration?: Configuration) {
90566
91402
  * @param {string} xStoreid Store ID (from dashboard)
90567
91403
  * @param {string} xStoreWriteSecret Store write secret
90568
91404
  * @param {string} xStoreID Store ID (must match x-storeid header)
90569
- * @param {DataTypesIndexConfig} dataTypesIndexConfig Fields to update (partial)
91405
+ * @param {DataTypesStoreConfigUpdateRequest} dataTypesStoreConfigUpdateRequest Fields to update (partial, includes allow_public_search)
90570
91406
  * @param {*} [options] Override http request option.
90571
91407
  * @throws {RequiredError}
90572
91408
  */
90573
- async apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesIndexConfig: DataTypesIndexConfig, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesIndexConfigResponseWrapper>> {
90574
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1StoresXStoreIDConfigPut(xStoreid, xStoreWriteSecret, xStoreID, dataTypesIndexConfig, options);
91409
+ async apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesStoreConfigUpdateRequest: DataTypesStoreConfigUpdateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesIndexConfigResponseWrapper>> {
91410
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1StoresXStoreIDConfigPut(xStoreid, xStoreWriteSecret, xStoreID, dataTypesStoreConfigUpdateRequest, options);
90575
91411
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
90576
91412
  const localVarOperationServerBasePath = operationServerMap['StoreManagementApi.apiV1StoresXStoreIDConfigPut']?.[localVarOperationServerIndex]?.url;
90577
91413
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -90679,7 +91515,7 @@ export const StoreManagementApiFp = function(configuration?: Configuration) {
90679
91515
  * @param {*} [options] Override http request option.
90680
91516
  * @throws {RequiredError}
90681
91517
  */
90682
- async apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesPublicStoreInfoResponse>> {
91518
+ async apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesStoreInfoResponse>> {
90683
91519
  const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1StoresXStoreIDGet(xStoreid, xStoresecret, xStoreID, options);
90684
91520
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
90685
91521
  const localVarOperationServerBasePath = operationServerMap['StoreManagementApi.apiV1StoresXStoreIDGet']?.[localVarOperationServerIndex]?.url;
@@ -90761,12 +91597,12 @@ export const StoreManagementApiFactory = function (configuration?: Configuration
90761
91597
  * 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.
90762
91598
  * @summary Create Store (Public SDK API)
90763
91599
  * @param {string} authorization Bearer JWT Token
90764
- * @param {DataTypesPublicCreateStoreRequest} dataTypesPublicCreateStoreRequest Store creation request
91600
+ * @param {DataTypesCreateStoreRequest} dataTypesCreateStoreRequest Store creation request
90765
91601
  * @param {*} [options] Override http request option.
90766
91602
  * @throws {RequiredError}
90767
91603
  */
90768
- apiV1StoresPost(authorization: string, dataTypesPublicCreateStoreRequest: DataTypesPublicCreateStoreRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesPublicCreateStoreResponse> {
90769
- return localVarFp.apiV1StoresPost(authorization, dataTypesPublicCreateStoreRequest, options).then((request) => request(axios, basePath));
91604
+ apiV1StoresPost(authorization: string, dataTypesCreateStoreRequest: DataTypesCreateStoreRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesCreateStoreResponse> {
91605
+ return localVarFp.apiV1StoresPost(authorization, dataTypesCreateStoreRequest, options).then((request) => request(axios, basePath));
90770
91606
  },
90771
91607
  /**
90772
91608
  * Returns search and query-suggestions configuration for the store. **Auth:** `x-storeid` and `x-storesecret`. Path `xStoreID` must match the `x-storeid` header.
@@ -90786,12 +91622,12 @@ export const StoreManagementApiFactory = function (configuration?: Configuration
90786
91622
  * @param {string} xStoreid Store ID (from dashboard)
90787
91623
  * @param {string} xStoreWriteSecret Store write secret
90788
91624
  * @param {string} xStoreID Store ID (must match x-storeid header)
90789
- * @param {DataTypesIndexConfig} dataTypesIndexConfig Fields to update (partial)
91625
+ * @param {DataTypesStoreConfigUpdateRequest} dataTypesStoreConfigUpdateRequest Fields to update (partial, includes allow_public_search)
90790
91626
  * @param {*} [options] Override http request option.
90791
91627
  * @throws {RequiredError}
90792
91628
  */
90793
- apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesIndexConfig: DataTypesIndexConfig, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesIndexConfigResponseWrapper> {
90794
- return localVarFp.apiV1StoresXStoreIDConfigPut(xStoreid, xStoreWriteSecret, xStoreID, dataTypesIndexConfig, options).then((request) => request(axios, basePath));
91629
+ apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesStoreConfigUpdateRequest: DataTypesStoreConfigUpdateRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesIndexConfigResponseWrapper> {
91630
+ return localVarFp.apiV1StoresXStoreIDConfigPut(xStoreid, xStoreWriteSecret, xStoreID, dataTypesStoreConfigUpdateRequest, options).then((request) => request(axios, basePath));
90795
91631
  },
90796
91632
  /**
90797
91633
  * Returns metadata for all configurable store fields (types, defaults, validation). **Auth:** `x-storeid` and `x-storesecret`. Path `xStoreID` must match the `x-storeid` header.
@@ -90878,7 +91714,7 @@ export const StoreManagementApiFactory = function (configuration?: Configuration
90878
91714
  * @param {*} [options] Override http request option.
90879
91715
  * @throws {RequiredError}
90880
91716
  */
90881
- apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesPublicStoreInfoResponse> {
91717
+ apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesStoreInfoResponse> {
90882
91718
  return localVarFp.apiV1StoresXStoreIDGet(xStoreid, xStoresecret, xStoreID, options).then((request) => request(axios, basePath));
90883
91719
  },
90884
91720
  /**
@@ -90945,13 +91781,13 @@ export class StoreManagementApi extends BaseAPI {
90945
91781
  * 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.
90946
91782
  * @summary Create Store (Public SDK API)
90947
91783
  * @param {string} authorization Bearer JWT Token
90948
- * @param {DataTypesPublicCreateStoreRequest} dataTypesPublicCreateStoreRequest Store creation request
91784
+ * @param {DataTypesCreateStoreRequest} dataTypesCreateStoreRequest Store creation request
90949
91785
  * @param {*} [options] Override http request option.
90950
91786
  * @throws {RequiredError}
90951
91787
  * @memberof StoreManagementApi
90952
91788
  */
90953
- public apiV1StoresPost(authorization: string, dataTypesPublicCreateStoreRequest: DataTypesPublicCreateStoreRequest, options?: RawAxiosRequestConfig) {
90954
- return StoreManagementApiFp(this.configuration).apiV1StoresPost(authorization, dataTypesPublicCreateStoreRequest, options).then((request) => request(this.axios, this.basePath));
91789
+ public apiV1StoresPost(authorization: string, dataTypesCreateStoreRequest: DataTypesCreateStoreRequest, options?: RawAxiosRequestConfig) {
91790
+ return StoreManagementApiFp(this.configuration).apiV1StoresPost(authorization, dataTypesCreateStoreRequest, options).then((request) => request(this.axios, this.basePath));
90955
91791
  }
90956
91792
 
90957
91793
  /**
@@ -90974,13 +91810,13 @@ export class StoreManagementApi extends BaseAPI {
90974
91810
  * @param {string} xStoreid Store ID (from dashboard)
90975
91811
  * @param {string} xStoreWriteSecret Store write secret
90976
91812
  * @param {string} xStoreID Store ID (must match x-storeid header)
90977
- * @param {DataTypesIndexConfig} dataTypesIndexConfig Fields to update (partial)
91813
+ * @param {DataTypesStoreConfigUpdateRequest} dataTypesStoreConfigUpdateRequest Fields to update (partial, includes allow_public_search)
90978
91814
  * @param {*} [options] Override http request option.
90979
91815
  * @throws {RequiredError}
90980
91816
  * @memberof StoreManagementApi
90981
91817
  */
90982
- public apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesIndexConfig: DataTypesIndexConfig, options?: RawAxiosRequestConfig) {
90983
- return StoreManagementApiFp(this.configuration).apiV1StoresXStoreIDConfigPut(xStoreid, xStoreWriteSecret, xStoreID, dataTypesIndexConfig, options).then((request) => request(this.axios, this.basePath));
91818
+ public apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesStoreConfigUpdateRequest: DataTypesStoreConfigUpdateRequest, options?: RawAxiosRequestConfig) {
91819
+ return StoreManagementApiFp(this.configuration).apiV1StoresXStoreIDConfigPut(xStoreid, xStoreWriteSecret, xStoreID, dataTypesStoreConfigUpdateRequest, options).then((request) => request(this.axios, this.basePath));
90984
91820
  }
90985
91821
 
90986
91822
  /**
@@ -91289,6 +92125,43 @@ export const StoresApiAxiosParamCreator = function (configuration?: Configuratio
91289
92125
 
91290
92126
 
91291
92127
 
92128
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
92129
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
92130
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
92131
+
92132
+ return {
92133
+ url: toPathString(localVarUrlObj),
92134
+ options: localVarRequestOptions,
92135
+ };
92136
+ },
92137
+ /**
92138
+ *
92139
+ * @summary Get store record size metrics
92140
+ * @param {number} storeID Store ID
92141
+ * @param {*} [options] Override http request option.
92142
+ * @throws {RequiredError}
92143
+ */
92144
+ adminStoresStoreIDMetricsRecordSizeGet: async (storeID: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
92145
+ // verify required parameter 'storeID' is not null or undefined
92146
+ assertParamExists('adminStoresStoreIDMetricsRecordSizeGet', 'storeID', storeID)
92147
+ const localVarPath = `/admin/Stores/{storeID}/metrics/record-size`
92148
+ .replace(`{${"storeID"}}`, encodeURIComponent(String(storeID)));
92149
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
92150
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
92151
+ let baseOptions;
92152
+ if (configuration) {
92153
+ baseOptions = configuration.baseOptions;
92154
+ }
92155
+
92156
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
92157
+ const localVarHeaderParameter = {} as any;
92158
+ const localVarQueryParameter = {} as any;
92159
+
92160
+ // authentication BearerAuth required
92161
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
92162
+
92163
+
92164
+
91292
92165
  setSearchParams(localVarUrlObj, localVarQueryParameter);
91293
92166
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
91294
92167
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -92290,6 +93163,19 @@ export const StoresApiFp = function(configuration?: Configuration) {
92290
93163
  const localVarOperationServerBasePath = operationServerMap['StoresApi.adminStoresStoreIDDocumentsDelete']?.[localVarOperationServerIndex]?.url;
92291
93164
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
92292
93165
  },
93166
+ /**
93167
+ *
93168
+ * @summary Get store record size metrics
93169
+ * @param {number} storeID Store ID
93170
+ * @param {*} [options] Override http request option.
93171
+ * @throws {RequiredError}
93172
+ */
93173
+ async adminStoresStoreIDMetricsRecordSizeGet(storeID: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesStoreRecordSizeMetrics>> {
93174
+ const localVarAxiosArgs = await localVarAxiosParamCreator.adminStoresStoreIDMetricsRecordSizeGet(storeID, options);
93175
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
93176
+ const localVarOperationServerBasePath = operationServerMap['StoresApi.adminStoresStoreIDMetricsRecordSizeGet']?.[localVarOperationServerIndex]?.url;
93177
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
93178
+ },
92293
93179
  /**
92294
93180
  * Updates store information by ID.
92295
93181
  * @summary Update an existing store
@@ -92648,6 +93534,16 @@ export const StoresApiFactory = function (configuration?: Configuration, basePat
92648
93534
  adminStoresStoreIDDocumentsDelete(storeID: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesClearDocumentsResponseWrapper> {
92649
93535
  return localVarFp.adminStoresStoreIDDocumentsDelete(storeID, options).then((request) => request(axios, basePath));
92650
93536
  },
93537
+ /**
93538
+ *
93539
+ * @summary Get store record size metrics
93540
+ * @param {number} storeID Store ID
93541
+ * @param {*} [options] Override http request option.
93542
+ * @throws {RequiredError}
93543
+ */
93544
+ adminStoresStoreIDMetricsRecordSizeGet(storeID: number, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesStoreRecordSizeMetrics> {
93545
+ return localVarFp.adminStoresStoreIDMetricsRecordSizeGet(storeID, options).then((request) => request(axios, basePath));
93546
+ },
92651
93547
  /**
92652
93548
  * Updates store information by ID.
92653
93549
  * @summary Update an existing store
@@ -92948,6 +93844,18 @@ export class StoresApi extends BaseAPI {
92948
93844
  return StoresApiFp(this.configuration).adminStoresStoreIDDocumentsDelete(storeID, options).then((request) => request(this.axios, this.basePath));
92949
93845
  }
92950
93846
 
93847
+ /**
93848
+ *
93849
+ * @summary Get store record size metrics
93850
+ * @param {number} storeID Store ID
93851
+ * @param {*} [options] Override http request option.
93852
+ * @throws {RequiredError}
93853
+ * @memberof StoresApi
93854
+ */
93855
+ public adminStoresStoreIDMetricsRecordSizeGet(storeID: number, options?: RawAxiosRequestConfig) {
93856
+ return StoresApiFp(this.configuration).adminStoresStoreIDMetricsRecordSizeGet(storeID, options).then((request) => request(this.axios, this.basePath));
93857
+ }
93858
+
92951
93859
  /**
92952
93860
  * Updates store information by ID.
92953
93861
  * @summary Update an existing store