@seekora-ai/admin-api 1.1.94 → 1.1.95

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/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
@@ -17205,7 +17472,7 @@ export interface DataTypesErrorMetaResponse {
17205
17472
  */
17206
17473
  export interface DataTypesEventPayload {
17207
17474
  /**
17208
- * ============================================================================ A/B Testing (V3) ============================================================================
17475
+ * Experiment identifier
17209
17476
  * @type {string}
17210
17477
  * @memberof DataTypesEventPayload
17211
17478
  */
@@ -17217,7 +17484,7 @@ export interface DataTypesEventPayload {
17217
17484
  */
17218
17485
  'ab_variant'?: string;
17219
17486
  /**
17220
- * ============================================================================ Analytics & Metadata ============================================================================
17487
+ *
17221
17488
  * @type {Array<string>}
17222
17489
  * @memberof DataTypesEventPayload
17223
17490
  */
@@ -17277,7 +17544,7 @@ export interface DataTypesEventPayload {
17277
17544
  */
17278
17545
  'click_type'?: string;
17279
17546
  /**
17280
- * ============================================================================ Click/Interaction Event Fields (V3) ============================================================================
17547
+ *
17281
17548
  * @type {string}
17282
17549
  * @memberof DataTypesEventPayload
17283
17550
  */
@@ -17325,7 +17592,7 @@ export interface DataTypesEventPayload {
17325
17592
  */
17326
17593
  'correlation_id'?: string;
17327
17594
  /**
17328
- * ============================================================================ Geo Context (V3) ============================================================================
17595
+ *
17329
17596
  * @type {string}
17330
17597
  * @memberof DataTypesEventPayload
17331
17598
  */
@@ -17349,7 +17616,7 @@ export interface DataTypesEventPayload {
17349
17616
  */
17350
17617
  'custom_json'?: string;
17351
17618
  /**
17352
- * ============================================================================ Navigation Tracking (V3) ============================================================================
17619
+ * URL user navigates to after click
17353
17620
  * @type {string}
17354
17621
  * @memberof DataTypesEventPayload
17355
17622
  */
@@ -17367,7 +17634,7 @@ export interface DataTypesEventPayload {
17367
17634
  */
17368
17635
  'device_type'?: string;
17369
17636
  /**
17370
- * ============================================================================ Core Event Information (V3) ============================================================================
17637
+ *
17371
17638
  * @type {string}
17372
17639
  * @memberof DataTypesEventPayload
17373
17640
  */
@@ -17409,7 +17676,7 @@ export interface DataTypesEventPayload {
17409
17676
  */
17410
17677
  'insert_id'?: string;
17411
17678
  /**
17412
- * ============================================================================ Device Context (V3) ============================================================================
17679
+ *
17413
17680
  * @type {string}
17414
17681
  * @memberof DataTypesEventPayload
17415
17682
  */
@@ -17457,7 +17724,7 @@ export interface DataTypesEventPayload {
17457
17724
  */
17458
17725
  'metadata'?: { [key: string]: any; };
17459
17726
  /**
17460
- * ============================================================================ Suggestion Impression Fields (V3) ============================================================================
17727
+ *
17461
17728
  * @type {string}
17462
17729
  * @memberof DataTypesEventPayload
17463
17730
  */
@@ -17529,7 +17796,7 @@ export interface DataTypesEventPayload {
17529
17796
  */
17530
17797
  'quantity'?: number;
17531
17798
  /**
17532
- * ============================================================================ Search Event Fields ============================================================================
17799
+ *
17533
17800
  * @type {string}
17534
17801
  * @memberof DataTypesEventPayload
17535
17802
  */
@@ -17691,7 +17958,7 @@ export interface DataTypesEventPayload {
17691
17958
  */
17692
17959
  'utm_medium'?: string;
17693
17960
  /**
17694
- * ============================================================================ UTM Parameters ============================================================================
17961
+ *
17695
17962
  * @type {string}
17696
17963
  * @memberof DataTypesEventPayload
17697
17964
  */
@@ -17703,7 +17970,7 @@ export interface DataTypesEventPayload {
17703
17970
  */
17704
17971
  'utm_term'?: string;
17705
17972
  /**
17706
- * ============================================================================ Business Context ============================================================================
17973
+ *
17707
17974
  * @type {number}
17708
17975
  * @memberof DataTypesEventPayload
17709
17976
  */
@@ -17727,6 +17994,44 @@ export interface DataTypesEventPayload {
17727
17994
  */
17728
17995
  'xstoreid'?: string;
17729
17996
  }
17997
+ /**
17998
+ *
17999
+ * @export
18000
+ * @interface DataTypesEventSubmitData
18001
+ */
18002
+ export interface DataTypesEventSubmitData {
18003
+ /**
18004
+ *
18005
+ * @type {string}
18006
+ * @memberof DataTypesEventSubmitData
18007
+ */
18008
+ 'event_id'?: string;
18009
+ /**
18010
+ *
18011
+ * @type {string}
18012
+ * @memberof DataTypesEventSubmitData
18013
+ */
18014
+ 'timestamp'?: string;
18015
+ }
18016
+ /**
18017
+ *
18018
+ * @export
18019
+ * @interface DataTypesEventValidateData
18020
+ */
18021
+ export interface DataTypesEventValidateData {
18022
+ /**
18023
+ *
18024
+ * @type {string}
18025
+ * @memberof DataTypesEventValidateData
18026
+ */
18027
+ 'event_name'?: string;
18028
+ /**
18029
+ *
18030
+ * @type {string}
18031
+ * @memberof DataTypesEventValidateData
18032
+ */
18033
+ 'event_type'?: string;
18034
+ }
17730
18035
  /**
17731
18036
  *
17732
18037
  * @export
@@ -20311,6 +20616,56 @@ export interface DataTypesGenericResponseBillingServiceTrialEligibilityResponse
20311
20616
  */
20312
20617
  'status'?: number;
20313
20618
  }
20619
+ /**
20620
+ *
20621
+ * @export
20622
+ * @interface DataTypesGenericResponseDataTypesAnalyticsConfigData
20623
+ */
20624
+ export interface DataTypesGenericResponseDataTypesAnalyticsConfigData {
20625
+ /**
20626
+ *
20627
+ * @type {DataTypesAnalyticsConfigData}
20628
+ * @memberof DataTypesGenericResponseDataTypesAnalyticsConfigData
20629
+ */
20630
+ 'data'?: DataTypesAnalyticsConfigData;
20631
+ /**
20632
+ *
20633
+ * @type {string}
20634
+ * @memberof DataTypesGenericResponseDataTypesAnalyticsConfigData
20635
+ */
20636
+ 'message'?: string;
20637
+ /**
20638
+ *
20639
+ * @type {number}
20640
+ * @memberof DataTypesGenericResponseDataTypesAnalyticsConfigData
20641
+ */
20642
+ 'status'?: number;
20643
+ }
20644
+ /**
20645
+ *
20646
+ * @export
20647
+ * @interface DataTypesGenericResponseDataTypesBatchEventData
20648
+ */
20649
+ export interface DataTypesGenericResponseDataTypesBatchEventData {
20650
+ /**
20651
+ *
20652
+ * @type {DataTypesBatchEventData}
20653
+ * @memberof DataTypesGenericResponseDataTypesBatchEventData
20654
+ */
20655
+ 'data'?: DataTypesBatchEventData;
20656
+ /**
20657
+ *
20658
+ * @type {string}
20659
+ * @memberof DataTypesGenericResponseDataTypesBatchEventData
20660
+ */
20661
+ 'message'?: string;
20662
+ /**
20663
+ *
20664
+ * @type {number}
20665
+ * @memberof DataTypesGenericResponseDataTypesBatchEventData
20666
+ */
20667
+ 'status'?: number;
20668
+ }
20314
20669
  /**
20315
20670
  *
20316
20671
  * @export
@@ -20386,6 +20741,31 @@ export interface DataTypesGenericResponseDataTypesConsumptionHistoryResponse {
20386
20741
  */
20387
20742
  'status'?: number;
20388
20743
  }
20744
+ /**
20745
+ *
20746
+ * @export
20747
+ * @interface DataTypesGenericResponseDataTypesCreateStoreResponse
20748
+ */
20749
+ export interface DataTypesGenericResponseDataTypesCreateStoreResponse {
20750
+ /**
20751
+ *
20752
+ * @type {DataTypesCreateStoreResponse}
20753
+ * @memberof DataTypesGenericResponseDataTypesCreateStoreResponse
20754
+ */
20755
+ 'data'?: DataTypesCreateStoreResponse;
20756
+ /**
20757
+ *
20758
+ * @type {string}
20759
+ * @memberof DataTypesGenericResponseDataTypesCreateStoreResponse
20760
+ */
20761
+ 'message'?: string;
20762
+ /**
20763
+ *
20764
+ * @type {number}
20765
+ * @memberof DataTypesGenericResponseDataTypesCreateStoreResponse
20766
+ */
20767
+ 'status'?: number;
20768
+ }
20389
20769
  /**
20390
20770
  *
20391
20771
  * @export
@@ -20436,6 +20816,56 @@ export interface DataTypesGenericResponseDataTypesCurrentPlanInfo {
20436
20816
  */
20437
20817
  'status'?: number;
20438
20818
  }
20819
+ /**
20820
+ *
20821
+ * @export
20822
+ * @interface DataTypesGenericResponseDataTypesEventSubmitData
20823
+ */
20824
+ export interface DataTypesGenericResponseDataTypesEventSubmitData {
20825
+ /**
20826
+ *
20827
+ * @type {DataTypesEventSubmitData}
20828
+ * @memberof DataTypesGenericResponseDataTypesEventSubmitData
20829
+ */
20830
+ 'data'?: DataTypesEventSubmitData;
20831
+ /**
20832
+ *
20833
+ * @type {string}
20834
+ * @memberof DataTypesGenericResponseDataTypesEventSubmitData
20835
+ */
20836
+ 'message'?: string;
20837
+ /**
20838
+ *
20839
+ * @type {number}
20840
+ * @memberof DataTypesGenericResponseDataTypesEventSubmitData
20841
+ */
20842
+ 'status'?: number;
20843
+ }
20844
+ /**
20845
+ *
20846
+ * @export
20847
+ * @interface DataTypesGenericResponseDataTypesEventValidateData
20848
+ */
20849
+ export interface DataTypesGenericResponseDataTypesEventValidateData {
20850
+ /**
20851
+ *
20852
+ * @type {DataTypesEventValidateData}
20853
+ * @memberof DataTypesGenericResponseDataTypesEventValidateData
20854
+ */
20855
+ 'data'?: DataTypesEventValidateData;
20856
+ /**
20857
+ *
20858
+ * @type {string}
20859
+ * @memberof DataTypesGenericResponseDataTypesEventValidateData
20860
+ */
20861
+ 'message'?: string;
20862
+ /**
20863
+ *
20864
+ * @type {number}
20865
+ * @memberof DataTypesGenericResponseDataTypesEventValidateData
20866
+ */
20867
+ 'status'?: number;
20868
+ }
20439
20869
  /**
20440
20870
  *
20441
20871
  * @export
@@ -20636,56 +21066,6 @@ export interface DataTypesGenericResponseDataTypesPayInvoiceResponse {
20636
21066
  */
20637
21067
  'status'?: number;
20638
21068
  }
20639
- /**
20640
- *
20641
- * @export
20642
- * @interface DataTypesGenericResponseDataTypesPublicCreateStoreResponse
20643
- */
20644
- export interface DataTypesGenericResponseDataTypesPublicCreateStoreResponse {
20645
- /**
20646
- *
20647
- * @type {DataTypesPublicCreateStoreResponse}
20648
- * @memberof DataTypesGenericResponseDataTypesPublicCreateStoreResponse
20649
- */
20650
- 'data'?: DataTypesPublicCreateStoreResponse;
20651
- /**
20652
- *
20653
- * @type {string}
20654
- * @memberof DataTypesGenericResponseDataTypesPublicCreateStoreResponse
20655
- */
20656
- 'message'?: string;
20657
- /**
20658
- *
20659
- * @type {number}
20660
- * @memberof DataTypesGenericResponseDataTypesPublicCreateStoreResponse
20661
- */
20662
- 'status'?: number;
20663
- }
20664
- /**
20665
- *
20666
- * @export
20667
- * @interface DataTypesGenericResponseDataTypesPublicStoreInfoResponse
20668
- */
20669
- export interface DataTypesGenericResponseDataTypesPublicStoreInfoResponse {
20670
- /**
20671
- *
20672
- * @type {DataTypesPublicStoreInfoResponse}
20673
- * @memberof DataTypesGenericResponseDataTypesPublicStoreInfoResponse
20674
- */
20675
- 'data'?: DataTypesPublicStoreInfoResponse;
20676
- /**
20677
- *
20678
- * @type {string}
20679
- * @memberof DataTypesGenericResponseDataTypesPublicStoreInfoResponse
20680
- */
20681
- 'message'?: string;
20682
- /**
20683
- *
20684
- * @type {number}
20685
- * @memberof DataTypesGenericResponseDataTypesPublicStoreInfoResponse
20686
- */
20687
- 'status'?: number;
20688
- }
20689
21069
  /**
20690
21070
  *
20691
21071
  * @export
@@ -20811,6 +21191,31 @@ export interface DataTypesGenericResponseDataTypesStoreConfigWithOnboardingRespo
20811
21191
  */
20812
21192
  'status'?: number;
20813
21193
  }
21194
+ /**
21195
+ *
21196
+ * @export
21197
+ * @interface DataTypesGenericResponseDataTypesStoreInfoResponse
21198
+ */
21199
+ export interface DataTypesGenericResponseDataTypesStoreInfoResponse {
21200
+ /**
21201
+ *
21202
+ * @type {DataTypesStoreInfoResponse}
21203
+ * @memberof DataTypesGenericResponseDataTypesStoreInfoResponse
21204
+ */
21205
+ 'data'?: DataTypesStoreInfoResponse;
21206
+ /**
21207
+ *
21208
+ * @type {string}
21209
+ * @memberof DataTypesGenericResponseDataTypesStoreInfoResponse
21210
+ */
21211
+ 'message'?: string;
21212
+ /**
21213
+ *
21214
+ * @type {number}
21215
+ * @memberof DataTypesGenericResponseDataTypesStoreInfoResponse
21216
+ */
21217
+ 'status'?: number;
21218
+ }
20814
21219
  /**
20815
21220
  *
20816
21221
  * @export
@@ -25191,117 +25596,6 @@ export interface DataTypesOTPPayload {
25191
25596
  */
25192
25597
  'otp'?: string;
25193
25598
  }
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
25599
  /**
25306
25600
  *
25307
25601
  * @export
@@ -25583,6 +25877,12 @@ export interface DataTypesOnboardingStatus {
25583
25877
  * @memberof DataTypesOnboardingStatus
25584
25878
  */
25585
25879
  'is_complete'?: boolean;
25880
+ /**
25881
+ * Whether the check was unreliable due to transient infrastructure errors
25882
+ * @type {boolean}
25883
+ * @memberof DataTypesOnboardingStatus
25884
+ */
25885
+ 'is_degraded'?: boolean;
25586
25886
  /**
25587
25887
  * List of missing components
25588
25888
  * @type {Array<string>}
@@ -27857,382 +28157,6 @@ export interface DataTypesProjectedRunoutInfo {
27857
28157
  */
27858
28158
  'warning_level'?: string;
27859
28159
  }
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
28160
  /**
28237
28161
  *
28238
28162
  * @export
@@ -30010,6 +29934,259 @@ export interface DataTypesSchemaResponseWrapper {
30010
29934
  */
30011
29935
  'status'?: number;
30012
29936
  }
29937
+ /**
29938
+ *
29939
+ * @export
29940
+ * @interface DataTypesSearchRequest
29941
+ */
29942
+ export interface DataTypesSearchRequest {
29943
+ /**
29944
+ *
29945
+ * @type {Array<string>}
29946
+ * @memberof DataTypesSearchRequest
29947
+ */
29948
+ 'analytics_tags'?: Array<string>;
29949
+ /**
29950
+ * Anonymous/cookie ID for personalization
29951
+ * @type {string}
29952
+ * @memberof DataTypesSearchRequest
29953
+ */
29954
+ 'anon_id'?: string;
29955
+ /**
29956
+ *
29957
+ * @type {boolean}
29958
+ * @memberof DataTypesSearchRequest
29959
+ */
29960
+ 'apply_rules'?: boolean;
29961
+ /**
29962
+ *
29963
+ * @type {boolean}
29964
+ * @memberof DataTypesSearchRequest
29965
+ */
29966
+ 'cache_results'?: boolean;
29967
+ /**
29968
+ *
29969
+ * @type {boolean}
29970
+ * @memberof DataTypesSearchRequest
29971
+ */
29972
+ 'exact_match_boost'?: boolean;
29973
+ /**
29974
+ *
29975
+ * @type {string}
29976
+ * @memberof DataTypesSearchRequest
29977
+ */
29978
+ 'facet_by'?: string;
29979
+ /**
29980
+ *
29981
+ * @type {string}
29982
+ * @memberof DataTypesSearchRequest
29983
+ */
29984
+ 'facet_search_text'?: string;
29985
+ /**
29986
+ *
29987
+ * @type {Array<number>}
29988
+ * @memberof DataTypesSearchRequest
29989
+ */
29990
+ 'field_weights'?: Array<number>;
29991
+ /**
29992
+ *
29993
+ * @type {string}
29994
+ * @memberof DataTypesSearchRequest
29995
+ */
29996
+ 'filter'?: string;
29997
+ /**
29998
+ *
29999
+ * @type {Array<string>}
30000
+ * @memberof DataTypesSearchRequest
30001
+ */
30002
+ 'full_snippet_fields'?: Array<string>;
30003
+ /**
30004
+ *
30005
+ * @type {string}
30006
+ * @memberof DataTypesSearchRequest
30007
+ */
30008
+ 'group_field'?: string;
30009
+ /**
30010
+ *
30011
+ * @type {number}
30012
+ * @memberof DataTypesSearchRequest
30013
+ */
30014
+ 'group_size'?: number;
30015
+ /**
30016
+ *
30017
+ * @type {boolean}
30018
+ * @memberof DataTypesSearchRequest
30019
+ */
30020
+ 'include_snippets'?: boolean;
30021
+ /**
30022
+ *
30023
+ * @type {boolean}
30024
+ * @memberof DataTypesSearchRequest
30025
+ */
30026
+ 'include_suggestions'?: boolean;
30027
+ /**
30028
+ *
30029
+ * @type {string}
30030
+ * @memberof DataTypesSearchRequest
30031
+ */
30032
+ 'infix_mode'?: string;
30033
+ /**
30034
+ *
30035
+ * @type {number}
30036
+ * @memberof DataTypesSearchRequest
30037
+ */
30038
+ 'max_facet_values'?: number;
30039
+ /**
30040
+ *
30041
+ * @type {Array<string>}
30042
+ * @memberof DataTypesSearchRequest
30043
+ */
30044
+ 'omit_fields'?: Array<string>;
30045
+ /**
30046
+ *
30047
+ * @type {number}
30048
+ * @memberof DataTypesSearchRequest
30049
+ */
30050
+ 'page'?: number;
30051
+ /**
30052
+ *
30053
+ * @type {number}
30054
+ * @memberof DataTypesSearchRequest
30055
+ */
30056
+ 'per_page'?: number;
30057
+ /**
30058
+ *
30059
+ * @type {string}
30060
+ * @memberof DataTypesSearchRequest
30061
+ */
30062
+ 'prefix_mode'?: string;
30063
+ /**
30064
+ *
30065
+ * @type {string}
30066
+ * @memberof DataTypesSearchRequest
30067
+ */
30068
+ 'preset_name'?: string;
30069
+ /**
30070
+ *
30071
+ * @type {string}
30072
+ * @memberof DataTypesSearchRequest
30073
+ */
30074
+ 'q': string;
30075
+ /**
30076
+ *
30077
+ * @type {boolean}
30078
+ * @memberof DataTypesSearchRequest
30079
+ */
30080
+ 'require_all_terms'?: boolean;
30081
+ /**
30082
+ *
30083
+ * @type {Array<string>}
30084
+ * @memberof DataTypesSearchRequest
30085
+ */
30086
+ 'return_fields'?: Array<string>;
30087
+ /**
30088
+ * Advanced query controls (public-friendly field names)
30089
+ * @type {Array<string>}
30090
+ * @memberof DataTypesSearchRequest
30091
+ */
30092
+ 'search_fields'?: Array<string>;
30093
+ /**
30094
+ *
30095
+ * @type {number}
30096
+ * @memberof DataTypesSearchRequest
30097
+ */
30098
+ 'search_timeout_ms'?: number;
30099
+ /**
30100
+ * Session ID for session-based personalization
30101
+ * @type {string}
30102
+ * @memberof DataTypesSearchRequest
30103
+ */
30104
+ 'session_id'?: string;
30105
+ /**
30106
+ *
30107
+ * @type {Array<string>}
30108
+ * @memberof DataTypesSearchRequest
30109
+ */
30110
+ 'snippet_fields'?: Array<string>;
30111
+ /**
30112
+ *
30113
+ * @type {number}
30114
+ * @memberof DataTypesSearchRequest
30115
+ */
30116
+ 'snippet_min_len'?: number;
30117
+ /**
30118
+ *
30119
+ * @type {string}
30120
+ * @memberof DataTypesSearchRequest
30121
+ */
30122
+ 'snippet_prefix'?: string;
30123
+ /**
30124
+ *
30125
+ * @type {string}
30126
+ * @memberof DataTypesSearchRequest
30127
+ */
30128
+ 'snippet_suffix'?: string;
30129
+ /**
30130
+ *
30131
+ * @type {number}
30132
+ * @memberof DataTypesSearchRequest
30133
+ */
30134
+ 'snippet_token_limit'?: number;
30135
+ /**
30136
+ *
30137
+ * @type {string}
30138
+ * @memberof DataTypesSearchRequest
30139
+ */
30140
+ 'sort'?: string;
30141
+ /**
30142
+ * IDs of stopword sets to use
30143
+ * @type {Array<string>}
30144
+ * @memberof DataTypesSearchRequest
30145
+ */
30146
+ 'stopword_sets'?: Array<string>;
30147
+ /**
30148
+ *
30149
+ * @type {number}
30150
+ * @memberof DataTypesSearchRequest
30151
+ */
30152
+ 'suggestions_limit'?: number;
30153
+ /**
30154
+ * IDs of synonym sets to use
30155
+ * @type {Array<string>}
30156
+ * @memberof DataTypesSearchRequest
30157
+ */
30158
+ 'synonym_sets'?: Array<string>;
30159
+ /**
30160
+ *
30161
+ * @type {number}
30162
+ * @memberof DataTypesSearchRequest
30163
+ */
30164
+ 'typo_max'?: number;
30165
+ /**
30166
+ *
30167
+ * @type {number}
30168
+ * @memberof DataTypesSearchRequest
30169
+ */
30170
+ 'typo_min_len_1'?: number;
30171
+ /**
30172
+ *
30173
+ * @type {number}
30174
+ * @memberof DataTypesSearchRequest
30175
+ */
30176
+ 'typo_min_len_2'?: number;
30177
+ /**
30178
+ * Personalization fields (optional, backward compatible)
30179
+ * @type {string}
30180
+ * @memberof DataTypesSearchRequest
30181
+ */
30182
+ 'user_id'?: string;
30183
+ /**
30184
+ * If true, returns only display fields instead of full document (used in public API only)
30185
+ * @type {boolean}
30186
+ * @memberof DataTypesSearchRequest
30187
+ */
30188
+ 'widget_mode'?: boolean;
30189
+ }
30013
30190
  /**
30014
30191
  *
30015
30192
  * @export
@@ -30053,6 +30230,86 @@ export interface DataTypesSearchRequestsGraphResponse {
30053
30230
  */
30054
30231
  'total_requests'?: number;
30055
30232
  }
30233
+ /**
30234
+ *
30235
+ * @export
30236
+ * @interface DataTypesSearchResponse
30237
+ */
30238
+ export interface DataTypesSearchResponse {
30239
+ /**
30240
+ *
30241
+ * @type {any}
30242
+ * @memberof DataTypesSearchResponse
30243
+ */
30244
+ 'facets'?: any;
30245
+ /**
30246
+ *
30247
+ * @type {number}
30248
+ * @memberof DataTypesSearchResponse
30249
+ */
30250
+ 'page'?: number;
30251
+ /**
30252
+ *
30253
+ * @type {number}
30254
+ * @memberof DataTypesSearchResponse
30255
+ */
30256
+ 'per_page'?: number;
30257
+ /**
30258
+ *
30259
+ * @type {Array<DataTypesSearchResult>}
30260
+ * @memberof DataTypesSearchResponse
30261
+ */
30262
+ 'results'?: Array<DataTypesSearchResult>;
30263
+ /**
30264
+ * Unique search identifier for analytics linking
30265
+ * @type {string}
30266
+ * @memberof DataTypesSearchResponse
30267
+ */
30268
+ 'search_id'?: string;
30269
+ /**
30270
+ * Available sort options based on schema
30271
+ * @type {Array<DataTypesSortOption>}
30272
+ * @memberof DataTypesSearchResponse
30273
+ */
30274
+ 'sort_options'?: Array<DataTypesSortOption>;
30275
+ /**
30276
+ *
30277
+ * @type {Array<DataTypesAutocompleteSuggestion>}
30278
+ * @memberof DataTypesSearchResponse
30279
+ */
30280
+ 'suggestions'?: Array<DataTypesAutocompleteSuggestion>;
30281
+ /**
30282
+ *
30283
+ * @type {number}
30284
+ * @memberof DataTypesSearchResponse
30285
+ */
30286
+ 'total_results'?: number;
30287
+ }
30288
+ /**
30289
+ *
30290
+ * @export
30291
+ * @interface DataTypesSearchResponseWrapper
30292
+ */
30293
+ export interface DataTypesSearchResponseWrapper {
30294
+ /**
30295
+ *
30296
+ * @type {DataTypesSearchResponse}
30297
+ * @memberof DataTypesSearchResponseWrapper
30298
+ */
30299
+ 'data'?: DataTypesSearchResponse;
30300
+ /**
30301
+ *
30302
+ * @type {string}
30303
+ * @memberof DataTypesSearchResponseWrapper
30304
+ */
30305
+ 'message'?: string;
30306
+ /**
30307
+ *
30308
+ * @type {number}
30309
+ * @memberof DataTypesSearchResponseWrapper
30310
+ */
30311
+ 'status'?: number;
30312
+ }
30056
30313
  /**
30057
30314
  *
30058
30315
  * @export
@@ -30061,22 +30318,28 @@ export interface DataTypesSearchRequestsGraphResponse {
30061
30318
  export interface DataTypesSearchResult {
30062
30319
  /**
30063
30320
  *
30064
- * @type {number}
30321
+ * @type {{ [key: string]: any; }}
30065
30322
  * @memberof DataTypesSearchResult
30066
30323
  */
30067
- 'found'?: number;
30324
+ 'document'?: { [key: string]: any; };
30068
30325
  /**
30069
30326
  *
30070
- * @type {Array<object>}
30327
+ * @type {{ [key: string]: any; }}
30071
30328
  * @memberof DataTypesSearchResult
30072
30329
  */
30073
- 'results'?: Array<object>;
30330
+ 'highlight'?: { [key: string]: any; };
30074
30331
  /**
30075
30332
  *
30076
30333
  * @type {string}
30077
30334
  * @memberof DataTypesSearchResult
30078
30335
  */
30079
- 'status'?: string;
30336
+ 'id'?: string;
30337
+ /**
30338
+ *
30339
+ * @type {number}
30340
+ * @memberof DataTypesSearchResult
30341
+ */
30342
+ 'score'?: number;
30080
30343
  }
30081
30344
  /**
30082
30345
  *
@@ -30086,10 +30349,10 @@ export interface DataTypesSearchResult {
30086
30349
  export interface DataTypesSearchResultResponse {
30087
30350
  /**
30088
30351
  *
30089
- * @type {DataTypesSearchResult}
30352
+ * @type {DataTypesConnectorSearchResult}
30090
30353
  * @memberof DataTypesSearchResultResponse
30091
30354
  */
30092
- 'data'?: DataTypesSearchResult;
30355
+ 'data'?: DataTypesConnectorSearchResult;
30093
30356
  /**
30094
30357
  *
30095
30358
  * @type {string}
@@ -31613,6 +31876,409 @@ export interface DataTypesStoreAccessWithDetails {
31613
31876
  */
31614
31877
  'user_id'?: number;
31615
31878
  }
31879
+ /**
31880
+ *
31881
+ * @export
31882
+ * @interface DataTypesStoreConfigUpdateRequest
31883
+ */
31884
+ export interface DataTypesStoreConfigUpdateRequest {
31885
+ /**
31886
+ * Optional: If set, updates the public search flag
31887
+ * @type {boolean}
31888
+ * @memberof DataTypesStoreConfigUpdateRequest
31889
+ */
31890
+ 'allow_public_search'?: boolean;
31891
+ /**
31892
+ *
31893
+ * @type {string}
31894
+ * @memberof DataTypesStoreConfigUpdateRequest
31895
+ */
31896
+ 'collection_alias'?: string;
31897
+ /**
31898
+ *
31899
+ * @type {string}
31900
+ * @memberof DataTypesStoreConfigUpdateRequest
31901
+ */
31902
+ 'collection_name'?: string;
31903
+ /**
31904
+ *
31905
+ * @type {string}
31906
+ * @memberof DataTypesStoreConfigUpdateRequest
31907
+ */
31908
+ 'default_sorting_field'?: string;
31909
+ /**
31910
+ * Default stopwords set ID to use in searches
31911
+ * @type {string}
31912
+ * @memberof DataTypesStoreConfigUpdateRequest
31913
+ */
31914
+ 'default_stopwords_set'?: string;
31915
+ /**
31916
+ *
31917
+ * @type {number}
31918
+ * @memberof DataTypesStoreConfigUpdateRequest
31919
+ */
31920
+ 'drop_tokens_threshold'?: number;
31921
+ /**
31922
+ * Dropdown recommendations configuration
31923
+ * @type {DataTypesDropdownRecommendationsConfig}
31924
+ * @memberof DataTypesStoreConfigUpdateRequest
31925
+ */
31926
+ 'dropdown_recommendations_config'?: DataTypesDropdownRecommendationsConfig;
31927
+ /**
31928
+ *
31929
+ * @type {string}
31930
+ * @memberof DataTypesStoreConfigUpdateRequest
31931
+ */
31932
+ 'embed'?: string;
31933
+ /**
31934
+ *
31935
+ * @type {boolean}
31936
+ * @memberof DataTypesStoreConfigUpdateRequest
31937
+ */
31938
+ 'enable_autocomplete'?: boolean;
31939
+ /**
31940
+ *
31941
+ * @type {boolean}
31942
+ * @memberof DataTypesStoreConfigUpdateRequest
31943
+ */
31944
+ 'enable_highlight'?: boolean;
31945
+ /**
31946
+ *
31947
+ * @type {boolean}
31948
+ * @memberof DataTypesStoreConfigUpdateRequest
31949
+ */
31950
+ 'enable_overrides'?: boolean;
31951
+ /**
31952
+ *
31953
+ * @type {boolean}
31954
+ * @memberof DataTypesStoreConfigUpdateRequest
31955
+ */
31956
+ 'enable_smart_autocomplete'?: boolean;
31957
+ /**
31958
+ * Enable stemming on search collections
31959
+ * @type {boolean}
31960
+ * @memberof DataTypesStoreConfigUpdateRequest
31961
+ */
31962
+ 'enable_stemming'?: boolean;
31963
+ /**
31964
+ *
31965
+ * @type {boolean}
31966
+ * @memberof DataTypesStoreConfigUpdateRequest
31967
+ */
31968
+ 'enable_typo_highlight'?: boolean;
31969
+ /**
31970
+ *
31971
+ * @type {boolean}
31972
+ * @memberof DataTypesStoreConfigUpdateRequest
31973
+ */
31974
+ 'enable_typo_tolerance'?: boolean;
31975
+ /**
31976
+ * No omitempty to preserve empty arrays
31977
+ * @type {Array<string>}
31978
+ * @memberof DataTypesStoreConfigUpdateRequest
31979
+ */
31980
+ 'exclude_fields'?: Array<string>;
31981
+ /**
31982
+ *
31983
+ * @type {boolean}
31984
+ * @memberof DataTypesStoreConfigUpdateRequest
31985
+ */
31986
+ 'exhaustive_search'?: boolean;
31987
+ /**
31988
+ * No omitempty to preserve empty arrays
31989
+ * @type {Array<string>}
31990
+ * @memberof DataTypesStoreConfigUpdateRequest
31991
+ */
31992
+ 'facet_by'?: Array<string>;
31993
+ /**
31994
+ *
31995
+ * @type {string}
31996
+ * @memberof DataTypesStoreConfigUpdateRequest
31997
+ */
31998
+ 'facet_query'?: string;
31999
+ /**
32000
+ * No omitempty to preserve empty arrays
32001
+ * @type {Array<DataTypesFacetRangeConfig>}
32002
+ * @memberof DataTypesStoreConfigUpdateRequest
32003
+ */
32004
+ 'facet_ranges'?: Array<DataTypesFacetRangeConfig>;
32005
+ /**
32006
+ *
32007
+ * @type {string}
32008
+ * @memberof DataTypesStoreConfigUpdateRequest
32009
+ */
32010
+ 'filter_by'?: string;
32011
+ /**
32012
+ *
32013
+ * @type {string}
32014
+ * @memberof DataTypesStoreConfigUpdateRequest
32015
+ */
32016
+ 'group_by'?: string;
32017
+ /**
32018
+ *
32019
+ * @type {number}
32020
+ * @memberof DataTypesStoreConfigUpdateRequest
32021
+ */
32022
+ 'group_limit'?: number;
32023
+ /**
32024
+ * No omitempty to preserve empty arrays
32025
+ * @type {Array<string>}
32026
+ * @memberof DataTypesStoreConfigUpdateRequest
32027
+ */
32028
+ 'hidden_facet_fields'?: Array<string>;
32029
+ /**
32030
+ * No omitempty to preserve empty arrays
32031
+ * @type {Array<string>}
32032
+ * @memberof DataTypesStoreConfigUpdateRequest
32033
+ */
32034
+ 'hidden_fields'?: Array<string>;
32035
+ /**
32036
+ * No omitempty to preserve empty arrays
32037
+ * @type {Array<string>}
32038
+ * @memberof DataTypesStoreConfigUpdateRequest
32039
+ */
32040
+ 'hidden_filter_fields'?: Array<string>;
32041
+ /**
32042
+ *
32043
+ * @type {number}
32044
+ * @memberof DataTypesStoreConfigUpdateRequest
32045
+ */
32046
+ 'highlight_affix_num_tokens'?: number;
32047
+ /**
32048
+ *
32049
+ * @type {string}
32050
+ * @memberof DataTypesStoreConfigUpdateRequest
32051
+ */
32052
+ 'highlight_end_tag'?: string;
32053
+ /**
32054
+ * No omitempty to preserve empty arrays
32055
+ * @type {Array<string>}
32056
+ * @memberof DataTypesStoreConfigUpdateRequest
32057
+ */
32058
+ 'highlight_fields'?: Array<string>;
32059
+ /**
32060
+ * No omitempty to preserve empty arrays
32061
+ * @type {Array<string>}
32062
+ * @memberof DataTypesStoreConfigUpdateRequest
32063
+ */
32064
+ 'highlight_full_fields'?: Array<string>;
32065
+ /**
32066
+ *
32067
+ * @type {string}
32068
+ * @memberof DataTypesStoreConfigUpdateRequest
32069
+ */
32070
+ 'highlight_start_tag'?: string;
32071
+ /**
32072
+ *
32073
+ * @type {string}
32074
+ * @memberof DataTypesStoreConfigUpdateRequest
32075
+ */
32076
+ 'image_url'?: string;
32077
+ /**
32078
+ * No omitempty to preserve empty arrays
32079
+ * @type {Array<string>}
32080
+ * @memberof DataTypesStoreConfigUpdateRequest
32081
+ */
32082
+ 'include_fields'?: Array<string>;
32083
+ /**
32084
+ * \"always\", \"fallback\", or \"off\"
32085
+ * @type {string}
32086
+ * @memberof DataTypesStoreConfigUpdateRequest
32087
+ */
32088
+ 'infix'?: string;
32089
+ /**
32090
+ *
32091
+ * @type {string}
32092
+ * @memberof DataTypesStoreConfigUpdateRequest
32093
+ */
32094
+ 'locale'?: string;
32095
+ /**
32096
+ *
32097
+ * @type {number}
32098
+ * @memberof DataTypesStoreConfigUpdateRequest
32099
+ */
32100
+ 'max_candidates'?: number;
32101
+ /**
32102
+ *
32103
+ * @type {number}
32104
+ * @memberof DataTypesStoreConfigUpdateRequest
32105
+ */
32106
+ 'max_facet_values'?: number;
32107
+ /**
32108
+ *
32109
+ * @type {number}
32110
+ * @memberof DataTypesStoreConfigUpdateRequest
32111
+ */
32112
+ 'min_len_1typo'?: number;
32113
+ /**
32114
+ *
32115
+ * @type {number}
32116
+ * @memberof DataTypesStoreConfigUpdateRequest
32117
+ */
32118
+ 'min_len_2typo'?: number;
32119
+ /**
32120
+ *
32121
+ * @type {number}
32122
+ * @memberof DataTypesStoreConfigUpdateRequest
32123
+ */
32124
+ 'num_typos'?: number;
32125
+ /**
32126
+ *
32127
+ * @type {number}
32128
+ * @memberof DataTypesStoreConfigUpdateRequest
32129
+ */
32130
+ 'page'?: number;
32131
+ /**
32132
+ *
32133
+ * @type {number}
32134
+ * @memberof DataTypesStoreConfigUpdateRequest
32135
+ */
32136
+ 'per_page'?: number;
32137
+ /**
32138
+ *
32139
+ * @type {string}
32140
+ * @memberof DataTypesStoreConfigUpdateRequest
32141
+ */
32142
+ 'prefix'?: string;
32143
+ /**
32144
+ *
32145
+ * @type {string}
32146
+ * @memberof DataTypesStoreConfigUpdateRequest
32147
+ */
32148
+ 'preset'?: string;
32149
+ /**
32150
+ *
32151
+ * @type {string}
32152
+ * @memberof DataTypesStoreConfigUpdateRequest
32153
+ */
32154
+ 'primary_text'?: string;
32155
+ /**
32156
+ *
32157
+ * @type {boolean}
32158
+ * @memberof DataTypesStoreConfigUpdateRequest
32159
+ */
32160
+ 'prioritize_exact_match'?: boolean;
32161
+ /**
32162
+ * Required: Query string
32163
+ * @type {string}
32164
+ * @memberof DataTypesStoreConfigUpdateRequest
32165
+ */
32166
+ 'q'?: string;
32167
+ /**
32168
+ * Required: Array of search fields
32169
+ * @type {Array<string>}
32170
+ * @memberof DataTypesStoreConfigUpdateRequest
32171
+ */
32172
+ 'query_by'?: Array<string>;
32173
+ /**
32174
+ * Optional: Relative field weights as array (no omitempty to preserve empty arrays)
32175
+ * @type {Array<number>}
32176
+ * @memberof DataTypesStoreConfigUpdateRequest
32177
+ */
32178
+ 'query_by_weights'?: Array<number>;
32179
+ /**
32180
+ * Query suggestions configuration
32181
+ * @type {DataTypesQuerySuggestionsConfig}
32182
+ * @memberof DataTypesStoreConfigUpdateRequest
32183
+ */
32184
+ 'query_suggestions_config'?: DataTypesQuerySuggestionsConfig;
32185
+ /**
32186
+ *
32187
+ * @type {boolean}
32188
+ * @memberof DataTypesStoreConfigUpdateRequest
32189
+ */
32190
+ 'query_syntax'?: boolean;
32191
+ /**
32192
+ *
32193
+ * @type {number}
32194
+ * @memberof DataTypesStoreConfigUpdateRequest
32195
+ */
32196
+ 'search_cutoff_ms'?: number;
32197
+ /**
32198
+ * \"text\", \"vector\", \"hybrid\"
32199
+ * @type {string}
32200
+ * @memberof DataTypesStoreConfigUpdateRequest
32201
+ */
32202
+ 'search_strategy'?: string;
32203
+ /**
32204
+ *
32205
+ * @type {string}
32206
+ * @memberof DataTypesStoreConfigUpdateRequest
32207
+ */
32208
+ 'secondary_text'?: string;
32209
+ /**
32210
+ *
32211
+ * @type {boolean}
32212
+ * @memberof DataTypesStoreConfigUpdateRequest
32213
+ */
32214
+ 'semantic_ranker'?: boolean;
32215
+ /**
32216
+ *
32217
+ * @type {number}
32218
+ * @memberof DataTypesStoreConfigUpdateRequest
32219
+ */
32220
+ 'snippet_threshold'?: number;
32221
+ /**
32222
+ * No omitempty to preserve empty arrays
32223
+ * @type {Array<DataTypesSortField>}
32224
+ * @memberof DataTypesStoreConfigUpdateRequest
32225
+ */
32226
+ 'sort_by'?: Array<DataTypesSortField>;
32227
+ /**
32228
+ * Locale for stemming (e.g., \"en\", \"fr\", \"de\")
32229
+ * @type {string}
32230
+ * @memberof DataTypesStoreConfigUpdateRequest
32231
+ */
32232
+ 'stemming_locale'?: string;
32233
+ /**
32234
+ * Flattened stopwords and synonyms fields
32235
+ * @type {Array<DataTypesStopwordEntry>}
32236
+ * @memberof DataTypesStoreConfigUpdateRequest
32237
+ */
32238
+ 'stopwords'?: Array<DataTypesStopwordEntry>;
32239
+ /**
32240
+ * No omitempty to preserve empty arrays
32241
+ * @type {Array<string>}
32242
+ * @memberof DataTypesStoreConfigUpdateRequest
32243
+ */
32244
+ 'symbols_to_index'?: Array<string>;
32245
+ /**
32246
+ * No omitempty to preserve empty arrays
32247
+ * @type {Array<DataTypesSynonymEntry>}
32248
+ * @memberof DataTypesStoreConfigUpdateRequest
32249
+ */
32250
+ 'synonyms'?: Array<DataTypesSynonymEntry>;
32251
+ /**
32252
+ *
32253
+ * @type {string}
32254
+ * @memberof DataTypesStoreConfigUpdateRequest
32255
+ */
32256
+ 'tertiary_text'?: string;
32257
+ /**
32258
+ * Optional: Search-only scoped API key
32259
+ * @type {string}
32260
+ * @memberof DataTypesStoreConfigUpdateRequest
32261
+ */
32262
+ 'token'?: string;
32263
+ /**
32264
+ * No omitempty to preserve empty arrays
32265
+ * @type {Array<string>}
32266
+ * @memberof DataTypesStoreConfigUpdateRequest
32267
+ */
32268
+ 'token_separators'?: Array<string>;
32269
+ /**
32270
+ *
32271
+ * @type {boolean}
32272
+ * @memberof DataTypesStoreConfigUpdateRequest
32273
+ */
32274
+ 'use_cache'?: boolean;
32275
+ /**
32276
+ *
32277
+ * @type {string}
32278
+ * @memberof DataTypesStoreConfigUpdateRequest
32279
+ */
32280
+ 'vector_query'?: string;
32281
+ }
31616
32282
  /**
31617
32283
  *
31618
32284
  * @export
@@ -31793,6 +32459,49 @@ export interface DataTypesStoreCredentialsResponse {
31793
32459
  */
31794
32460
  'status'?: number;
31795
32461
  }
32462
+ /**
32463
+ *
32464
+ * @export
32465
+ * @interface DataTypesStoreInfoResponse
32466
+ */
32467
+ export interface DataTypesStoreInfoResponse {
32468
+ /**
32469
+ *
32470
+ * @type {string}
32471
+ * @memberof DataTypesStoreInfoResponse
32472
+ */
32473
+ 'createdAt'?: string;
32474
+ /**
32475
+ *
32476
+ * @type {boolean}
32477
+ * @memberof DataTypesStoreInfoResponse
32478
+ */
32479
+ 'isActive'?: boolean;
32480
+ /**
32481
+ *
32482
+ * @type {string}
32483
+ * @memberof DataTypesStoreInfoResponse
32484
+ */
32485
+ 'location'?: string;
32486
+ /**
32487
+ *
32488
+ * @type {number}
32489
+ * @memberof DataTypesStoreInfoResponse
32490
+ */
32491
+ 'storeId'?: number;
32492
+ /**
32493
+ *
32494
+ * @type {string}
32495
+ * @memberof DataTypesStoreInfoResponse
32496
+ */
32497
+ 'storeName'?: string;
32498
+ /**
32499
+ *
32500
+ * @type {string}
32501
+ * @memberof DataTypesStoreInfoResponse
32502
+ */
32503
+ 'xStoreId'?: string;
32504
+ }
31796
32505
  /**
31797
32506
  *
31798
32507
  * @export
@@ -49575,7 +50284,7 @@ export const AnalyticsEventsApiFp = function(configuration?: Configuration) {
49575
50284
  * @param {*} [options] Override http request option.
49576
50285
  * @throws {RequiredError}
49577
50286
  */
49578
- async analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>> {
50287
+ async analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesBatchEventData>> {
49579
50288
  const localVarAxiosArgs = await localVarAxiosParamCreator.analyticsBatchPost(xStoreid, xStoresecret, analyticsBatchPostRequest, options);
49580
50289
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
49581
50290
  const localVarOperationServerBasePath = operationServerMap['AnalyticsEventsApi.analyticsBatchPost']?.[localVarOperationServerIndex]?.url;
@@ -49589,7 +50298,7 @@ export const AnalyticsEventsApiFp = function(configuration?: Configuration) {
49589
50298
  * @param {*} [options] Override http request option.
49590
50299
  * @throws {RequiredError}
49591
50300
  */
49592
- async analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>> {
50301
+ async analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesAnalyticsConfigData>> {
49593
50302
  const localVarAxiosArgs = await localVarAxiosParamCreator.analyticsConfigGet(xStoreid, xStoresecret, options);
49594
50303
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
49595
50304
  const localVarOperationServerBasePath = operationServerMap['AnalyticsEventsApi.analyticsConfigGet']?.[localVarOperationServerIndex]?.url;
@@ -49604,7 +50313,7 @@ export const AnalyticsEventsApiFp = function(configuration?: Configuration) {
49604
50313
  * @param {*} [options] Override http request option.
49605
50314
  * @throws {RequiredError}
49606
50315
  */
49607
- async analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>> {
50316
+ async analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesEventSubmitData>> {
49608
50317
  const localVarAxiosArgs = await localVarAxiosParamCreator.analyticsEventPost(xStoreid, xStoresecret, dataTypesEventPayload, options);
49609
50318
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
49610
50319
  const localVarOperationServerBasePath = operationServerMap['AnalyticsEventsApi.analyticsEventPost']?.[localVarOperationServerIndex]?.url;
@@ -49633,7 +50342,7 @@ export const AnalyticsEventsApiFp = function(configuration?: Configuration) {
49633
50342
  * @param {*} [options] Override http request option.
49634
50343
  * @throws {RequiredError}
49635
50344
  */
49636
- async analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>> {
50345
+ async analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesEventValidateData>> {
49637
50346
  const localVarAxiosArgs = await localVarAxiosParamCreator.analyticsValidatePost(xStoreid, xStoresecret, dataTypesEventPayload, options);
49638
50347
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
49639
50348
  const localVarOperationServerBasePath = operationServerMap['AnalyticsEventsApi.analyticsValidatePost']?.[localVarOperationServerIndex]?.url;
@@ -49658,7 +50367,7 @@ export const AnalyticsEventsApiFactory = function (configuration?: Configuration
49658
50367
  * @param {*} [options] Override http request option.
49659
50368
  * @throws {RequiredError}
49660
50369
  */
49661
- analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse> {
50370
+ analyticsBatchPost(xStoreid: string, xStoresecret: string, analyticsBatchPostRequest: AnalyticsBatchPostRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesBatchEventData> {
49662
50371
  return localVarFp.analyticsBatchPost(xStoreid, xStoresecret, analyticsBatchPostRequest, options).then((request) => request(axios, basePath));
49663
50372
  },
49664
50373
  /**
@@ -49669,7 +50378,7 @@ export const AnalyticsEventsApiFactory = function (configuration?: Configuration
49669
50378
  * @param {*} [options] Override http request option.
49670
50379
  * @throws {RequiredError}
49671
50380
  */
49672
- analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse> {
50381
+ analyticsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesAnalyticsConfigData> {
49673
50382
  return localVarFp.analyticsConfigGet(xStoreid, xStoresecret, options).then((request) => request(axios, basePath));
49674
50383
  },
49675
50384
  /**
@@ -49681,7 +50390,7 @@ export const AnalyticsEventsApiFactory = function (configuration?: Configuration
49681
50390
  * @param {*} [options] Override http request option.
49682
50391
  * @throws {RequiredError}
49683
50392
  */
49684
- analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse> {
50393
+ analyticsEventPost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesEventSubmitData> {
49685
50394
  return localVarFp.analyticsEventPost(xStoreid, xStoresecret, dataTypesEventPayload, options).then((request) => request(axios, basePath));
49686
50395
  },
49687
50396
  /**
@@ -49704,7 +50413,7 @@ export const AnalyticsEventsApiFactory = function (configuration?: Configuration
49704
50413
  * @param {*} [options] Override http request option.
49705
50414
  * @throws {RequiredError}
49706
50415
  */
49707
- analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse> {
50416
+ analyticsValidatePost(xStoreid: string, xStoresecret: string, dataTypesEventPayload: DataTypesEventPayload, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesEventValidateData> {
49708
50417
  return localVarFp.analyticsValidatePost(xStoreid, xStoresecret, dataTypesEventPayload, options).then((request) => request(axios, basePath));
49709
50418
  },
49710
50419
  };
@@ -87170,20 +87879,20 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio
87170
87879
  * @summary Search (POST)
87171
87880
  * @param {string} xStoreid Store ID (from dashboard)
87172
87881
  * @param {string} xStoresecret Store read secret (from dashboard)
87173
- * @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search query, filters, pagination, and options
87882
+ * @param {DataTypesSearchRequest} dataTypesSearchRequest Search query, filters, pagination, and options
87174
87883
  * @param {string} [xUserId] User ID for personalization
87175
87884
  * @param {string} [xAnonId] Anonymous user ID for personalization
87176
87885
  * @param {string} [xSessionId] Session ID for personalization
87177
87886
  * @param {*} [options] Override http request option.
87178
87887
  * @throws {RequiredError}
87179
87888
  */
87180
- v1SearchPost: async (xStoreid: string, xStoresecret: string, dataTypesPublicSearchRequest: DataTypesPublicSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
87889
+ v1SearchPost: async (xStoreid: string, xStoresecret: string, dataTypesSearchRequest: DataTypesSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
87181
87890
  // verify required parameter 'xStoreid' is not null or undefined
87182
87891
  assertParamExists('v1SearchPost', 'xStoreid', xStoreid)
87183
87892
  // verify required parameter 'xStoresecret' is not null or undefined
87184
87893
  assertParamExists('v1SearchPost', 'xStoresecret', xStoresecret)
87185
- // verify required parameter 'dataTypesPublicSearchRequest' is not null or undefined
87186
- assertParamExists('v1SearchPost', 'dataTypesPublicSearchRequest', dataTypesPublicSearchRequest)
87894
+ // verify required parameter 'dataTypesSearchRequest' is not null or undefined
87895
+ assertParamExists('v1SearchPost', 'dataTypesSearchRequest', dataTypesSearchRequest)
87187
87896
  const localVarPath = `/v1/search`;
87188
87897
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
87189
87898
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -87218,7 +87927,7 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio
87218
87927
  setSearchParams(localVarUrlObj, localVarQueryParameter);
87219
87928
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
87220
87929
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
87221
- localVarRequestOptions.data = serializeDataIfNeeded(dataTypesPublicSearchRequest, localVarRequestOptions, configuration)
87930
+ localVarRequestOptions.data = serializeDataIfNeeded(dataTypesSearchRequest, localVarRequestOptions, configuration)
87222
87931
 
87223
87932
  return {
87224
87933
  url: toPathString(localVarUrlObj),
@@ -87366,7 +88075,7 @@ export const SearchApiFp = function(configuration?: Configuration) {
87366
88075
  * @param {*} [options] Override http request option.
87367
88076
  * @throws {RequiredError}
87368
88077
  */
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>> {
88078
+ 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
88079
  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
88080
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
87372
88081
  const localVarOperationServerBasePath = operationServerMap['SearchApi.v1SearchGet']?.[localVarOperationServerIndex]?.url;
@@ -87377,15 +88086,15 @@ export const SearchApiFp = function(configuration?: Configuration) {
87377
88086
  * @summary Search (POST)
87378
88087
  * @param {string} xStoreid Store ID (from dashboard)
87379
88088
  * @param {string} xStoresecret Store read secret (from dashboard)
87380
- * @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search query, filters, pagination, and options
88089
+ * @param {DataTypesSearchRequest} dataTypesSearchRequest Search query, filters, pagination, and options
87381
88090
  * @param {string} [xUserId] User ID for personalization
87382
88091
  * @param {string} [xAnonId] Anonymous user ID for personalization
87383
88092
  * @param {string} [xSessionId] Session ID for personalization
87384
88093
  * @param {*} [options] Override http request option.
87385
88094
  * @throws {RequiredError}
87386
88095
  */
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);
88096
+ async v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesSearchRequest: DataTypesSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesSearchResponseWrapper>> {
88097
+ const localVarAxiosArgs = await localVarAxiosParamCreator.v1SearchPost(xStoreid, xStoresecret, dataTypesSearchRequest, xUserId, xAnonId, xSessionId, options);
87389
88098
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
87390
88099
  const localVarOperationServerBasePath = operationServerMap['SearchApi.v1SearchPost']?.[localVarOperationServerIndex]?.url;
87391
88100
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -87513,7 +88222,7 @@ export const SearchApiFactory = function (configuration?: Configuration, basePat
87513
88222
  * @param {*} [options] Override http request option.
87514
88223
  * @throws {RequiredError}
87515
88224
  */
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> {
88225
+ 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
88226
  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
88227
  },
87519
88228
  /**
@@ -87521,15 +88230,15 @@ export const SearchApiFactory = function (configuration?: Configuration, basePat
87521
88230
  * @summary Search (POST)
87522
88231
  * @param {string} xStoreid Store ID (from dashboard)
87523
88232
  * @param {string} xStoresecret Store read secret (from dashboard)
87524
- * @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search query, filters, pagination, and options
88233
+ * @param {DataTypesSearchRequest} dataTypesSearchRequest Search query, filters, pagination, and options
87525
88234
  * @param {string} [xUserId] User ID for personalization
87526
88235
  * @param {string} [xAnonId] Anonymous user ID for personalization
87527
88236
  * @param {string} [xSessionId] Session ID for personalization
87528
88237
  * @param {*} [options] Override http request option.
87529
88238
  * @throws {RequiredError}
87530
88239
  */
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));
88240
+ v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesSearchRequest: DataTypesSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesSearchResponseWrapper> {
88241
+ return localVarFp.v1SearchPost(xStoreid, xStoresecret, dataTypesSearchRequest, xUserId, xAnonId, xSessionId, options).then((request) => request(axios, basePath));
87533
88242
  },
87534
88243
  };
87535
88244
  };
@@ -87676,7 +88385,7 @@ export class SearchApi extends BaseAPI {
87676
88385
  * @summary Search (POST)
87677
88386
  * @param {string} xStoreid Store ID (from dashboard)
87678
88387
  * @param {string} xStoresecret Store read secret (from dashboard)
87679
- * @param {DataTypesPublicSearchRequest} dataTypesPublicSearchRequest Search query, filters, pagination, and options
88388
+ * @param {DataTypesSearchRequest} dataTypesSearchRequest Search query, filters, pagination, and options
87680
88389
  * @param {string} [xUserId] User ID for personalization
87681
88390
  * @param {string} [xAnonId] Anonymous user ID for personalization
87682
88391
  * @param {string} [xSessionId] Session ID for personalization
@@ -87684,8 +88393,8 @@ export class SearchApi extends BaseAPI {
87684
88393
  * @throws {RequiredError}
87685
88394
  * @memberof SearchApi
87686
88395
  */
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));
88396
+ public v1SearchPost(xStoreid: string, xStoresecret: string, dataTypesSearchRequest: DataTypesSearchRequest, xUserId?: string, xAnonId?: string, xSessionId?: string, options?: RawAxiosRequestConfig) {
88397
+ return SearchApiFp(this.configuration).v1SearchPost(xStoreid, xStoresecret, dataTypesSearchRequest, xUserId, xAnonId, xSessionId, options).then((request) => request(this.axios, this.basePath));
87689
88398
  }
87690
88399
  }
87691
88400
 
@@ -89805,15 +90514,15 @@ export const StoreManagementApiAxiosParamCreator = function (configuration?: Con
89805
90514
  * 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
90515
  * @summary Create Store (Public SDK API)
89807
90516
  * @param {string} authorization Bearer JWT Token
89808
- * @param {DataTypesPublicCreateStoreRequest} dataTypesPublicCreateStoreRequest Store creation request
90517
+ * @param {DataTypesCreateStoreRequest} dataTypesCreateStoreRequest Store creation request
89809
90518
  * @param {*} [options] Override http request option.
89810
90519
  * @throws {RequiredError}
89811
90520
  */
89812
- apiV1StoresPost: async (authorization: string, dataTypesPublicCreateStoreRequest: DataTypesPublicCreateStoreRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
90521
+ apiV1StoresPost: async (authorization: string, dataTypesCreateStoreRequest: DataTypesCreateStoreRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
89813
90522
  // verify required parameter 'authorization' is not null or undefined
89814
90523
  assertParamExists('apiV1StoresPost', 'authorization', authorization)
89815
- // verify required parameter 'dataTypesPublicCreateStoreRequest' is not null or undefined
89816
- assertParamExists('apiV1StoresPost', 'dataTypesPublicCreateStoreRequest', dataTypesPublicCreateStoreRequest)
90524
+ // verify required parameter 'dataTypesCreateStoreRequest' is not null or undefined
90525
+ assertParamExists('apiV1StoresPost', 'dataTypesCreateStoreRequest', dataTypesCreateStoreRequest)
89817
90526
  const localVarPath = `/api/v1/stores`;
89818
90527
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
89819
90528
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -89839,7 +90548,7 @@ export const StoreManagementApiAxiosParamCreator = function (configuration?: Con
89839
90548
  setSearchParams(localVarUrlObj, localVarQueryParameter);
89840
90549
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
89841
90550
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
89842
- localVarRequestOptions.data = serializeDataIfNeeded(dataTypesPublicCreateStoreRequest, localVarRequestOptions, configuration)
90551
+ localVarRequestOptions.data = serializeDataIfNeeded(dataTypesCreateStoreRequest, localVarRequestOptions, configuration)
89843
90552
 
89844
90553
  return {
89845
90554
  url: toPathString(localVarUrlObj),
@@ -89901,19 +90610,19 @@ export const StoreManagementApiAxiosParamCreator = function (configuration?: Con
89901
90610
  * @param {string} xStoreid Store ID (from dashboard)
89902
90611
  * @param {string} xStoreWriteSecret Store write secret
89903
90612
  * @param {string} xStoreID Store ID (must match x-storeid header)
89904
- * @param {DataTypesIndexConfig} dataTypesIndexConfig Fields to update (partial)
90613
+ * @param {DataTypesStoreConfigUpdateRequest} dataTypesStoreConfigUpdateRequest Fields to update (partial, includes allow_public_search)
89905
90614
  * @param {*} [options] Override http request option.
89906
90615
  * @throws {RequiredError}
89907
90616
  */
89908
- apiV1StoresXStoreIDConfigPut: async (xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesIndexConfig: DataTypesIndexConfig, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
90617
+ apiV1StoresXStoreIDConfigPut: async (xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesStoreConfigUpdateRequest: DataTypesStoreConfigUpdateRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
89909
90618
  // verify required parameter 'xStoreid' is not null or undefined
89910
90619
  assertParamExists('apiV1StoresXStoreIDConfigPut', 'xStoreid', xStoreid)
89911
90620
  // verify required parameter 'xStoreWriteSecret' is not null or undefined
89912
90621
  assertParamExists('apiV1StoresXStoreIDConfigPut', 'xStoreWriteSecret', xStoreWriteSecret)
89913
90622
  // verify required parameter 'xStoreID' is not null or undefined
89914
90623
  assertParamExists('apiV1StoresXStoreIDConfigPut', 'xStoreID', xStoreID)
89915
- // verify required parameter 'dataTypesIndexConfig' is not null or undefined
89916
- assertParamExists('apiV1StoresXStoreIDConfigPut', 'dataTypesIndexConfig', dataTypesIndexConfig)
90624
+ // verify required parameter 'dataTypesStoreConfigUpdateRequest' is not null or undefined
90625
+ assertParamExists('apiV1StoresXStoreIDConfigPut', 'dataTypesStoreConfigUpdateRequest', dataTypesStoreConfigUpdateRequest)
89917
90626
  const localVarPath = `/api/v1/stores/{xStoreID}/config`
89918
90627
  .replace(`{${"xStoreID"}}`, encodeURIComponent(String(xStoreID)));
89919
90628
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -89943,7 +90652,7 @@ export const StoreManagementApiAxiosParamCreator = function (configuration?: Con
89943
90652
  setSearchParams(localVarUrlObj, localVarQueryParameter);
89944
90653
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
89945
90654
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
89946
- localVarRequestOptions.data = serializeDataIfNeeded(dataTypesIndexConfig, localVarRequestOptions, configuration)
90655
+ localVarRequestOptions.data = serializeDataIfNeeded(dataTypesStoreConfigUpdateRequest, localVarRequestOptions, configuration)
89947
90656
 
89948
90657
  return {
89949
90658
  url: toPathString(localVarUrlObj),
@@ -90535,12 +91244,12 @@ export const StoreManagementApiFp = function(configuration?: Configuration) {
90535
91244
  * 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
91245
  * @summary Create Store (Public SDK API)
90537
91246
  * @param {string} authorization Bearer JWT Token
90538
- * @param {DataTypesPublicCreateStoreRequest} dataTypesPublicCreateStoreRequest Store creation request
91247
+ * @param {DataTypesCreateStoreRequest} dataTypesCreateStoreRequest Store creation request
90539
91248
  * @param {*} [options] Override http request option.
90540
91249
  * @throws {RequiredError}
90541
91250
  */
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);
91251
+ async apiV1StoresPost(authorization: string, dataTypesCreateStoreRequest: DataTypesCreateStoreRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesCreateStoreResponse>> {
91252
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1StoresPost(authorization, dataTypesCreateStoreRequest, options);
90544
91253
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
90545
91254
  const localVarOperationServerBasePath = operationServerMap['StoreManagementApi.apiV1StoresPost']?.[localVarOperationServerIndex]?.url;
90546
91255
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -90566,12 +91275,12 @@ export const StoreManagementApiFp = function(configuration?: Configuration) {
90566
91275
  * @param {string} xStoreid Store ID (from dashboard)
90567
91276
  * @param {string} xStoreWriteSecret Store write secret
90568
91277
  * @param {string} xStoreID Store ID (must match x-storeid header)
90569
- * @param {DataTypesIndexConfig} dataTypesIndexConfig Fields to update (partial)
91278
+ * @param {DataTypesStoreConfigUpdateRequest} dataTypesStoreConfigUpdateRequest Fields to update (partial, includes allow_public_search)
90570
91279
  * @param {*} [options] Override http request option.
90571
91280
  * @throws {RequiredError}
90572
91281
  */
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);
91282
+ async apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesStoreConfigUpdateRequest: DataTypesStoreConfigUpdateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesIndexConfigResponseWrapper>> {
91283
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1StoresXStoreIDConfigPut(xStoreid, xStoreWriteSecret, xStoreID, dataTypesStoreConfigUpdateRequest, options);
90575
91284
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
90576
91285
  const localVarOperationServerBasePath = operationServerMap['StoreManagementApi.apiV1StoresXStoreIDConfigPut']?.[localVarOperationServerIndex]?.url;
90577
91286
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -90679,7 +91388,7 @@ export const StoreManagementApiFp = function(configuration?: Configuration) {
90679
91388
  * @param {*} [options] Override http request option.
90680
91389
  * @throws {RequiredError}
90681
91390
  */
90682
- async apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesPublicStoreInfoResponse>> {
91391
+ async apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesGenericResponseDataTypesStoreInfoResponse>> {
90683
91392
  const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1StoresXStoreIDGet(xStoreid, xStoresecret, xStoreID, options);
90684
91393
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
90685
91394
  const localVarOperationServerBasePath = operationServerMap['StoreManagementApi.apiV1StoresXStoreIDGet']?.[localVarOperationServerIndex]?.url;
@@ -90761,12 +91470,12 @@ export const StoreManagementApiFactory = function (configuration?: Configuration
90761
91470
  * 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
91471
  * @summary Create Store (Public SDK API)
90763
91472
  * @param {string} authorization Bearer JWT Token
90764
- * @param {DataTypesPublicCreateStoreRequest} dataTypesPublicCreateStoreRequest Store creation request
91473
+ * @param {DataTypesCreateStoreRequest} dataTypesCreateStoreRequest Store creation request
90765
91474
  * @param {*} [options] Override http request option.
90766
91475
  * @throws {RequiredError}
90767
91476
  */
90768
- apiV1StoresPost(authorization: string, dataTypesPublicCreateStoreRequest: DataTypesPublicCreateStoreRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesPublicCreateStoreResponse> {
90769
- return localVarFp.apiV1StoresPost(authorization, dataTypesPublicCreateStoreRequest, options).then((request) => request(axios, basePath));
91477
+ apiV1StoresPost(authorization: string, dataTypesCreateStoreRequest: DataTypesCreateStoreRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesCreateStoreResponse> {
91478
+ return localVarFp.apiV1StoresPost(authorization, dataTypesCreateStoreRequest, options).then((request) => request(axios, basePath));
90770
91479
  },
90771
91480
  /**
90772
91481
  * 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 +91495,12 @@ export const StoreManagementApiFactory = function (configuration?: Configuration
90786
91495
  * @param {string} xStoreid Store ID (from dashboard)
90787
91496
  * @param {string} xStoreWriteSecret Store write secret
90788
91497
  * @param {string} xStoreID Store ID (must match x-storeid header)
90789
- * @param {DataTypesIndexConfig} dataTypesIndexConfig Fields to update (partial)
91498
+ * @param {DataTypesStoreConfigUpdateRequest} dataTypesStoreConfigUpdateRequest Fields to update (partial, includes allow_public_search)
90790
91499
  * @param {*} [options] Override http request option.
90791
91500
  * @throws {RequiredError}
90792
91501
  */
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));
91502
+ apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesStoreConfigUpdateRequest: DataTypesStoreConfigUpdateRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesIndexConfigResponseWrapper> {
91503
+ return localVarFp.apiV1StoresXStoreIDConfigPut(xStoreid, xStoreWriteSecret, xStoreID, dataTypesStoreConfigUpdateRequest, options).then((request) => request(axios, basePath));
90795
91504
  },
90796
91505
  /**
90797
91506
  * 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 +91587,7 @@ export const StoreManagementApiFactory = function (configuration?: Configuration
90878
91587
  * @param {*} [options] Override http request option.
90879
91588
  * @throws {RequiredError}
90880
91589
  */
90881
- apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesPublicStoreInfoResponse> {
91590
+ apiV1StoresXStoreIDGet(xStoreid: string, xStoresecret: string, xStoreID: string, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesGenericResponseDataTypesStoreInfoResponse> {
90882
91591
  return localVarFp.apiV1StoresXStoreIDGet(xStoreid, xStoresecret, xStoreID, options).then((request) => request(axios, basePath));
90883
91592
  },
90884
91593
  /**
@@ -90945,13 +91654,13 @@ export class StoreManagementApi extends BaseAPI {
90945
91654
  * 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
91655
  * @summary Create Store (Public SDK API)
90947
91656
  * @param {string} authorization Bearer JWT Token
90948
- * @param {DataTypesPublicCreateStoreRequest} dataTypesPublicCreateStoreRequest Store creation request
91657
+ * @param {DataTypesCreateStoreRequest} dataTypesCreateStoreRequest Store creation request
90949
91658
  * @param {*} [options] Override http request option.
90950
91659
  * @throws {RequiredError}
90951
91660
  * @memberof StoreManagementApi
90952
91661
  */
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));
91662
+ public apiV1StoresPost(authorization: string, dataTypesCreateStoreRequest: DataTypesCreateStoreRequest, options?: RawAxiosRequestConfig) {
91663
+ return StoreManagementApiFp(this.configuration).apiV1StoresPost(authorization, dataTypesCreateStoreRequest, options).then((request) => request(this.axios, this.basePath));
90955
91664
  }
90956
91665
 
90957
91666
  /**
@@ -90974,13 +91683,13 @@ export class StoreManagementApi extends BaseAPI {
90974
91683
  * @param {string} xStoreid Store ID (from dashboard)
90975
91684
  * @param {string} xStoreWriteSecret Store write secret
90976
91685
  * @param {string} xStoreID Store ID (must match x-storeid header)
90977
- * @param {DataTypesIndexConfig} dataTypesIndexConfig Fields to update (partial)
91686
+ * @param {DataTypesStoreConfigUpdateRequest} dataTypesStoreConfigUpdateRequest Fields to update (partial, includes allow_public_search)
90978
91687
  * @param {*} [options] Override http request option.
90979
91688
  * @throws {RequiredError}
90980
91689
  * @memberof StoreManagementApi
90981
91690
  */
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));
91691
+ public apiV1StoresXStoreIDConfigPut(xStoreid: string, xStoreWriteSecret: string, xStoreID: string, dataTypesStoreConfigUpdateRequest: DataTypesStoreConfigUpdateRequest, options?: RawAxiosRequestConfig) {
91692
+ return StoreManagementApiFp(this.configuration).apiV1StoresXStoreIDConfigPut(xStoreid, xStoreWriteSecret, xStoreID, dataTypesStoreConfigUpdateRequest, options).then((request) => request(this.axios, this.basePath));
90984
91693
  }
90985
91694
 
90986
91695
  /**