@seekora-ai/admin-api 1.1.51 → 1.1.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -2
- package/api.ts +985 -32
- package/dist/api.d.ts +850 -32
- package/dist/api.js +312 -21
- package/dist/esm/api.d.ts +850 -32
- package/dist/esm/api.js +303 -16
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.53.tgz +0 -0
- package/seekora-ai-admin-api-1.1.51.tgz +0 -0
package/dist/esm/api.d.ts
CHANGED
|
@@ -9419,6 +9419,139 @@ export interface DataTypesDocumentResponseWrapper {
|
|
|
9419
9419
|
*/
|
|
9420
9420
|
'status'?: number;
|
|
9421
9421
|
}
|
|
9422
|
+
/**
|
|
9423
|
+
*
|
|
9424
|
+
* @export
|
|
9425
|
+
* @interface DataTypesDropdownRecommendationsConfig
|
|
9426
|
+
*/
|
|
9427
|
+
export interface DataTypesDropdownRecommendationsConfig {
|
|
9428
|
+
/**
|
|
9429
|
+
* Dataset-agnostic field mappings for brands
|
|
9430
|
+
* @type {{ [key: string]: string; }}
|
|
9431
|
+
* @memberof DataTypesDropdownRecommendationsConfig
|
|
9432
|
+
*/
|
|
9433
|
+
'brand_field_mappings'?: {
|
|
9434
|
+
[key: string]: string;
|
|
9435
|
+
};
|
|
9436
|
+
/**
|
|
9437
|
+
* Sort method: searches, clicks, conversions
|
|
9438
|
+
* @type {string}
|
|
9439
|
+
* @memberof DataTypesDropdownRecommendationsConfig
|
|
9440
|
+
*/
|
|
9441
|
+
'brand_sort_by'?: string;
|
|
9442
|
+
/**
|
|
9443
|
+
* Cache TTL in seconds
|
|
9444
|
+
* @type {number}
|
|
9445
|
+
* @memberof DataTypesDropdownRecommendationsConfig
|
|
9446
|
+
*/
|
|
9447
|
+
'cache_ttl_seconds'?: number;
|
|
9448
|
+
/**
|
|
9449
|
+
* Dataset-agnostic field mappings for categories
|
|
9450
|
+
* @type {{ [key: string]: string; }}
|
|
9451
|
+
* @memberof DataTypesDropdownRecommendationsConfig
|
|
9452
|
+
*/
|
|
9453
|
+
'category_field_mappings'?: {
|
|
9454
|
+
[key: string]: string;
|
|
9455
|
+
};
|
|
9456
|
+
/**
|
|
9457
|
+
* Enable popular brands section
|
|
9458
|
+
* @type {boolean}
|
|
9459
|
+
* @memberof DataTypesDropdownRecommendationsConfig
|
|
9460
|
+
*/
|
|
9461
|
+
'enable_popular_brands'?: boolean;
|
|
9462
|
+
/**
|
|
9463
|
+
* Enable trending products section
|
|
9464
|
+
* @type {boolean}
|
|
9465
|
+
* @memberof DataTypesDropdownRecommendationsConfig
|
|
9466
|
+
*/
|
|
9467
|
+
'enable_trending_products'?: boolean;
|
|
9468
|
+
/**
|
|
9469
|
+
* Enable trending search categories section
|
|
9470
|
+
* @type {boolean}
|
|
9471
|
+
* @memberof DataTypesDropdownRecommendationsConfig
|
|
9472
|
+
*/
|
|
9473
|
+
'enable_trending_search'?: boolean;
|
|
9474
|
+
/**
|
|
9475
|
+
* Whether dropdown recommendations are enabled
|
|
9476
|
+
* @type {boolean}
|
|
9477
|
+
* @memberof DataTypesDropdownRecommendationsConfig
|
|
9478
|
+
*/
|
|
9479
|
+
'enabled'?: boolean;
|
|
9480
|
+
/**
|
|
9481
|
+
* Exclude out of stock products
|
|
9482
|
+
* @type {boolean}
|
|
9483
|
+
* @memberof DataTypesDropdownRecommendationsConfig
|
|
9484
|
+
*/
|
|
9485
|
+
'exclude_out_of_stock'?: boolean;
|
|
9486
|
+
/**
|
|
9487
|
+
* Include only in stock products
|
|
9488
|
+
* @type {boolean}
|
|
9489
|
+
* @memberof DataTypesDropdownRecommendationsConfig
|
|
9490
|
+
*/
|
|
9491
|
+
'include_only_in_stock'?: boolean;
|
|
9492
|
+
/**
|
|
9493
|
+
* Minimum searches for popular brands
|
|
9494
|
+
* @type {number}
|
|
9495
|
+
* @memberof DataTypesDropdownRecommendationsConfig
|
|
9496
|
+
*/
|
|
9497
|
+
'min_brand_searches'?: number;
|
|
9498
|
+
/**
|
|
9499
|
+
* Minimum clicks for trending products
|
|
9500
|
+
* @type {number}
|
|
9501
|
+
* @memberof DataTypesDropdownRecommendationsConfig
|
|
9502
|
+
*/
|
|
9503
|
+
'min_product_clicks'?: number;
|
|
9504
|
+
/**
|
|
9505
|
+
* Minimum conversions for trending products
|
|
9506
|
+
* @type {number}
|
|
9507
|
+
* @memberof DataTypesDropdownRecommendationsConfig
|
|
9508
|
+
*/
|
|
9509
|
+
'min_product_conversions'?: number;
|
|
9510
|
+
/**
|
|
9511
|
+
* Max number of popular brands
|
|
9512
|
+
* @type {number}
|
|
9513
|
+
* @memberof DataTypesDropdownRecommendationsConfig
|
|
9514
|
+
*/
|
|
9515
|
+
'popular_brands_limit'?: number;
|
|
9516
|
+
/**
|
|
9517
|
+
* Dataset-agnostic field mappings for products
|
|
9518
|
+
* @type {{ [key: string]: string; }}
|
|
9519
|
+
* @memberof DataTypesDropdownRecommendationsConfig
|
|
9520
|
+
*/
|
|
9521
|
+
'product_field_mappings'?: {
|
|
9522
|
+
[key: string]: string;
|
|
9523
|
+
};
|
|
9524
|
+
/**
|
|
9525
|
+
* Sort method: clicks, conversions, revenue, trend_score
|
|
9526
|
+
* @type {string}
|
|
9527
|
+
* @memberof DataTypesDropdownRecommendationsConfig
|
|
9528
|
+
*/
|
|
9529
|
+
'product_sort_by'?: string;
|
|
9530
|
+
/**
|
|
9531
|
+
* Max number of trending products
|
|
9532
|
+
* @type {number}
|
|
9533
|
+
* @memberof DataTypesDropdownRecommendationsConfig
|
|
9534
|
+
*/
|
|
9535
|
+
'trending_products_limit'?: number;
|
|
9536
|
+
/**
|
|
9537
|
+
* Max number of trending search categories
|
|
9538
|
+
* @type {number}
|
|
9539
|
+
* @memberof DataTypesDropdownRecommendationsConfig
|
|
9540
|
+
*/
|
|
9541
|
+
'trending_search_limit'?: number;
|
|
9542
|
+
/**
|
|
9543
|
+
* Time range in days for trending data
|
|
9544
|
+
* @type {number}
|
|
9545
|
+
* @memberof DataTypesDropdownRecommendationsConfig
|
|
9546
|
+
*/
|
|
9547
|
+
'trending_time_range_days'?: number;
|
|
9548
|
+
/**
|
|
9549
|
+
* Use query suggestions config for trending search
|
|
9550
|
+
* @type {boolean}
|
|
9551
|
+
* @memberof DataTypesDropdownRecommendationsConfig
|
|
9552
|
+
*/
|
|
9553
|
+
'use_query_suggestions_config'?: boolean;
|
|
9554
|
+
}
|
|
9422
9555
|
/**
|
|
9423
9556
|
*
|
|
9424
9557
|
* @export
|
|
@@ -11319,6 +11452,12 @@ export interface DataTypesIndexConfig {
|
|
|
11319
11452
|
* @memberof DataTypesIndexConfig
|
|
11320
11453
|
*/
|
|
11321
11454
|
'drop_tokens_threshold'?: number;
|
|
11455
|
+
/**
|
|
11456
|
+
* Dropdown recommendations configuration
|
|
11457
|
+
* @type {DataTypesDropdownRecommendationsConfig}
|
|
11458
|
+
* @memberof DataTypesIndexConfig
|
|
11459
|
+
*/
|
|
11460
|
+
'dropdown_recommendations_config'?: DataTypesDropdownRecommendationsConfig;
|
|
11322
11461
|
/**
|
|
11323
11462
|
*
|
|
11324
11463
|
* @type {string}
|
|
@@ -23380,6 +23519,548 @@ export interface DefaultMenuRoutesUpdateMenuVisibilityResponse {
|
|
|
23380
23519
|
*/
|
|
23381
23520
|
'menuName'?: string;
|
|
23382
23521
|
}
|
|
23522
|
+
/**
|
|
23523
|
+
*
|
|
23524
|
+
* @export
|
|
23525
|
+
* @interface DropdownRecommendationsServiceDropdownConfigResponse
|
|
23526
|
+
*/
|
|
23527
|
+
export interface DropdownRecommendationsServiceDropdownConfigResponse {
|
|
23528
|
+
/**
|
|
23529
|
+
*
|
|
23530
|
+
* @type {DropdownRecommendationsServiceDropdownRecommendationsConfig}
|
|
23531
|
+
* @memberof DropdownRecommendationsServiceDropdownConfigResponse
|
|
23532
|
+
*/
|
|
23533
|
+
'data'?: DropdownRecommendationsServiceDropdownRecommendationsConfig;
|
|
23534
|
+
/**
|
|
23535
|
+
*
|
|
23536
|
+
* @type {string}
|
|
23537
|
+
* @memberof DropdownRecommendationsServiceDropdownConfigResponse
|
|
23538
|
+
*/
|
|
23539
|
+
'message'?: string;
|
|
23540
|
+
/**
|
|
23541
|
+
*
|
|
23542
|
+
* @type {string}
|
|
23543
|
+
* @memberof DropdownRecommendationsServiceDropdownConfigResponse
|
|
23544
|
+
*/
|
|
23545
|
+
'status'?: string;
|
|
23546
|
+
/**
|
|
23547
|
+
*
|
|
23548
|
+
* @type {string}
|
|
23549
|
+
* @memberof DropdownRecommendationsServiceDropdownConfigResponse
|
|
23550
|
+
*/
|
|
23551
|
+
'timestamp'?: string;
|
|
23552
|
+
/**
|
|
23553
|
+
*
|
|
23554
|
+
* @type {string}
|
|
23555
|
+
* @memberof DropdownRecommendationsServiceDropdownConfigResponse
|
|
23556
|
+
*/
|
|
23557
|
+
'version'?: string;
|
|
23558
|
+
}
|
|
23559
|
+
/**
|
|
23560
|
+
*
|
|
23561
|
+
* @export
|
|
23562
|
+
* @interface DropdownRecommendationsServiceDropdownRecommendationsAPIResponse
|
|
23563
|
+
*/
|
|
23564
|
+
export interface DropdownRecommendationsServiceDropdownRecommendationsAPIResponse {
|
|
23565
|
+
/**
|
|
23566
|
+
*
|
|
23567
|
+
* @type {DropdownRecommendationsServiceDropdownRecommendationsResponse}
|
|
23568
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsAPIResponse
|
|
23569
|
+
*/
|
|
23570
|
+
'data'?: DropdownRecommendationsServiceDropdownRecommendationsResponse;
|
|
23571
|
+
/**
|
|
23572
|
+
*
|
|
23573
|
+
* @type {string}
|
|
23574
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsAPIResponse
|
|
23575
|
+
*/
|
|
23576
|
+
'error'?: string;
|
|
23577
|
+
/**
|
|
23578
|
+
*
|
|
23579
|
+
* @type {string}
|
|
23580
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsAPIResponse
|
|
23581
|
+
*/
|
|
23582
|
+
'status'?: string;
|
|
23583
|
+
/**
|
|
23584
|
+
*
|
|
23585
|
+
* @type {string}
|
|
23586
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsAPIResponse
|
|
23587
|
+
*/
|
|
23588
|
+
'timestamp'?: string;
|
|
23589
|
+
/**
|
|
23590
|
+
*
|
|
23591
|
+
* @type {string}
|
|
23592
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsAPIResponse
|
|
23593
|
+
*/
|
|
23594
|
+
'version'?: string;
|
|
23595
|
+
}
|
|
23596
|
+
/**
|
|
23597
|
+
*
|
|
23598
|
+
* @export
|
|
23599
|
+
* @interface DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23600
|
+
*/
|
|
23601
|
+
export interface DropdownRecommendationsServiceDropdownRecommendationsConfig {
|
|
23602
|
+
/**
|
|
23603
|
+
*
|
|
23604
|
+
* @type {{ [key: string]: string; }}
|
|
23605
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23606
|
+
*/
|
|
23607
|
+
'brand_field_mappings'?: {
|
|
23608
|
+
[key: string]: string;
|
|
23609
|
+
};
|
|
23610
|
+
/**
|
|
23611
|
+
* \'searches\', \'clicks\', \'conversions\'
|
|
23612
|
+
* @type {string}
|
|
23613
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23614
|
+
*/
|
|
23615
|
+
'brand_sort_by'?: string;
|
|
23616
|
+
/**
|
|
23617
|
+
* Caching configuration
|
|
23618
|
+
* @type {number}
|
|
23619
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23620
|
+
*/
|
|
23621
|
+
'cache_ttl_seconds'?: number;
|
|
23622
|
+
/**
|
|
23623
|
+
*
|
|
23624
|
+
* @type {{ [key: string]: string; }}
|
|
23625
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23626
|
+
*/
|
|
23627
|
+
'category_field_mappings'?: {
|
|
23628
|
+
[key: string]: string;
|
|
23629
|
+
};
|
|
23630
|
+
/**
|
|
23631
|
+
*
|
|
23632
|
+
* @type {string}
|
|
23633
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23634
|
+
*/
|
|
23635
|
+
'created_at'?: string;
|
|
23636
|
+
/**
|
|
23637
|
+
*
|
|
23638
|
+
* @type {boolean}
|
|
23639
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23640
|
+
*/
|
|
23641
|
+
'enable_popular_brands'?: boolean;
|
|
23642
|
+
/**
|
|
23643
|
+
*
|
|
23644
|
+
* @type {boolean}
|
|
23645
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23646
|
+
*/
|
|
23647
|
+
'enable_trending_products'?: boolean;
|
|
23648
|
+
/**
|
|
23649
|
+
*
|
|
23650
|
+
* @type {boolean}
|
|
23651
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23652
|
+
*/
|
|
23653
|
+
'enable_trending_search'?: boolean;
|
|
23654
|
+
/**
|
|
23655
|
+
* Feature enable/disable flags
|
|
23656
|
+
* @type {boolean}
|
|
23657
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23658
|
+
*/
|
|
23659
|
+
'enabled'?: boolean;
|
|
23660
|
+
/**
|
|
23661
|
+
* Additional filters
|
|
23662
|
+
* @type {boolean}
|
|
23663
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23664
|
+
*/
|
|
23665
|
+
'exclude_out_of_stock'?: boolean;
|
|
23666
|
+
/**
|
|
23667
|
+
*
|
|
23668
|
+
* @type {boolean}
|
|
23669
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23670
|
+
*/
|
|
23671
|
+
'include_only_in_stock'?: boolean;
|
|
23672
|
+
/**
|
|
23673
|
+
* Brand selection criteria
|
|
23674
|
+
* @type {number}
|
|
23675
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23676
|
+
*/
|
|
23677
|
+
'min_brand_searches'?: number;
|
|
23678
|
+
/**
|
|
23679
|
+
* Product selection criteria
|
|
23680
|
+
* @type {number}
|
|
23681
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23682
|
+
*/
|
|
23683
|
+
'min_product_clicks'?: number;
|
|
23684
|
+
/**
|
|
23685
|
+
*
|
|
23686
|
+
* @type {number}
|
|
23687
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23688
|
+
*/
|
|
23689
|
+
'min_product_conversions'?: number;
|
|
23690
|
+
/**
|
|
23691
|
+
*
|
|
23692
|
+
* @type {number}
|
|
23693
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23694
|
+
*/
|
|
23695
|
+
'popular_brands_limit'?: number;
|
|
23696
|
+
/**
|
|
23697
|
+
* Dataset-agnostic field mappings
|
|
23698
|
+
* @type {{ [key: string]: string; }}
|
|
23699
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23700
|
+
*/
|
|
23701
|
+
'product_field_mappings'?: {
|
|
23702
|
+
[key: string]: string;
|
|
23703
|
+
};
|
|
23704
|
+
/**
|
|
23705
|
+
* \'clicks\', \'conversions\', \'revenue\', \'trend_score\'
|
|
23706
|
+
* @type {string}
|
|
23707
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23708
|
+
*/
|
|
23709
|
+
'product_sort_by'?: string;
|
|
23710
|
+
/**
|
|
23711
|
+
*
|
|
23712
|
+
* @type {number}
|
|
23713
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23714
|
+
*/
|
|
23715
|
+
'trending_products_limit'?: number;
|
|
23716
|
+
/**
|
|
23717
|
+
* Limits for each section
|
|
23718
|
+
* @type {number}
|
|
23719
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23720
|
+
*/
|
|
23721
|
+
'trending_search_limit'?: number;
|
|
23722
|
+
/**
|
|
23723
|
+
* Time range configuration
|
|
23724
|
+
* @type {number}
|
|
23725
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23726
|
+
*/
|
|
23727
|
+
'trending_time_range_days'?: number;
|
|
23728
|
+
/**
|
|
23729
|
+
*
|
|
23730
|
+
* @type {string}
|
|
23731
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23732
|
+
*/
|
|
23733
|
+
'updated_at'?: string;
|
|
23734
|
+
/**
|
|
23735
|
+
* Trending search configuration
|
|
23736
|
+
* @type {boolean}
|
|
23737
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23738
|
+
*/
|
|
23739
|
+
'use_query_suggestions_config'?: boolean;
|
|
23740
|
+
}
|
|
23741
|
+
/**
|
|
23742
|
+
*
|
|
23743
|
+
* @export
|
|
23744
|
+
* @interface DropdownRecommendationsServiceDropdownRecommendationsResponse
|
|
23745
|
+
*/
|
|
23746
|
+
export interface DropdownRecommendationsServiceDropdownRecommendationsResponse {
|
|
23747
|
+
/**
|
|
23748
|
+
*
|
|
23749
|
+
* @type {Array<DropdownRecommendationsServicePopularBrand>}
|
|
23750
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsResponse
|
|
23751
|
+
*/
|
|
23752
|
+
'popular_brands'?: Array<DropdownRecommendationsServicePopularBrand>;
|
|
23753
|
+
/**
|
|
23754
|
+
*
|
|
23755
|
+
* @type {number}
|
|
23756
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsResponse
|
|
23757
|
+
*/
|
|
23758
|
+
'processing_time_ms'?: number;
|
|
23759
|
+
/**
|
|
23760
|
+
*
|
|
23761
|
+
* @type {string}
|
|
23762
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsResponse
|
|
23763
|
+
*/
|
|
23764
|
+
'timestamp'?: string;
|
|
23765
|
+
/**
|
|
23766
|
+
*
|
|
23767
|
+
* @type {Array<DropdownRecommendationsServiceTrendingProduct>}
|
|
23768
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsResponse
|
|
23769
|
+
*/
|
|
23770
|
+
'trending_products'?: Array<DropdownRecommendationsServiceTrendingProduct>;
|
|
23771
|
+
/**
|
|
23772
|
+
*
|
|
23773
|
+
* @type {Array<DropdownRecommendationsServiceTrendingSearchItem>}
|
|
23774
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsResponse
|
|
23775
|
+
*/
|
|
23776
|
+
'trending_search'?: Array<DropdownRecommendationsServiceTrendingSearchItem>;
|
|
23777
|
+
}
|
|
23778
|
+
/**
|
|
23779
|
+
*
|
|
23780
|
+
* @export
|
|
23781
|
+
* @interface DropdownRecommendationsServicePopularBrand
|
|
23782
|
+
*/
|
|
23783
|
+
export interface DropdownRecommendationsServicePopularBrand {
|
|
23784
|
+
/**
|
|
23785
|
+
*
|
|
23786
|
+
* @type {number}
|
|
23787
|
+
* @memberof DropdownRecommendationsServicePopularBrand
|
|
23788
|
+
*/
|
|
23789
|
+
'clicks'?: number;
|
|
23790
|
+
/**
|
|
23791
|
+
*
|
|
23792
|
+
* @type {number}
|
|
23793
|
+
* @memberof DropdownRecommendationsServicePopularBrand
|
|
23794
|
+
*/
|
|
23795
|
+
'conversions'?: number;
|
|
23796
|
+
/**
|
|
23797
|
+
*
|
|
23798
|
+
* @type {string}
|
|
23799
|
+
* @memberof DropdownRecommendationsServicePopularBrand
|
|
23800
|
+
*/
|
|
23801
|
+
'name'?: string;
|
|
23802
|
+
/**
|
|
23803
|
+
*
|
|
23804
|
+
* @type {number}
|
|
23805
|
+
* @memberof DropdownRecommendationsServicePopularBrand
|
|
23806
|
+
*/
|
|
23807
|
+
'searches'?: number;
|
|
23808
|
+
}
|
|
23809
|
+
/**
|
|
23810
|
+
*
|
|
23811
|
+
* @export
|
|
23812
|
+
* @interface DropdownRecommendationsServiceTrendingProduct
|
|
23813
|
+
*/
|
|
23814
|
+
export interface DropdownRecommendationsServiceTrendingProduct {
|
|
23815
|
+
/**
|
|
23816
|
+
*
|
|
23817
|
+
* @type {string}
|
|
23818
|
+
* @memberof DropdownRecommendationsServiceTrendingProduct
|
|
23819
|
+
*/
|
|
23820
|
+
'brand'?: string;
|
|
23821
|
+
/**
|
|
23822
|
+
*
|
|
23823
|
+
* @type {string}
|
|
23824
|
+
* @memberof DropdownRecommendationsServiceTrendingProduct
|
|
23825
|
+
*/
|
|
23826
|
+
'category'?: string;
|
|
23827
|
+
/**
|
|
23828
|
+
* Analytics metrics
|
|
23829
|
+
* @type {number}
|
|
23830
|
+
* @memberof DropdownRecommendationsServiceTrendingProduct
|
|
23831
|
+
*/
|
|
23832
|
+
'clicks'?: number;
|
|
23833
|
+
/**
|
|
23834
|
+
*
|
|
23835
|
+
* @type {number}
|
|
23836
|
+
* @memberof DropdownRecommendationsServiceTrendingProduct
|
|
23837
|
+
*/
|
|
23838
|
+
'conversions'?: number;
|
|
23839
|
+
/**
|
|
23840
|
+
*
|
|
23841
|
+
* @type {string}
|
|
23842
|
+
* @memberof DropdownRecommendationsServiceTrendingProduct
|
|
23843
|
+
*/
|
|
23844
|
+
'description'?: string;
|
|
23845
|
+
/**
|
|
23846
|
+
*
|
|
23847
|
+
* @type {number}
|
|
23848
|
+
* @memberof DropdownRecommendationsServiceTrendingProduct
|
|
23849
|
+
*/
|
|
23850
|
+
'discount'?: number;
|
|
23851
|
+
/**
|
|
23852
|
+
*
|
|
23853
|
+
* @type {number}
|
|
23854
|
+
* @memberof DropdownRecommendationsServiceTrendingProduct
|
|
23855
|
+
*/
|
|
23856
|
+
'discount_percentage'?: number;
|
|
23857
|
+
/**
|
|
23858
|
+
*
|
|
23859
|
+
* @type {string}
|
|
23860
|
+
* @memberof DropdownRecommendationsServiceTrendingProduct
|
|
23861
|
+
*/
|
|
23862
|
+
'id'?: string;
|
|
23863
|
+
/**
|
|
23864
|
+
*
|
|
23865
|
+
* @type {string}
|
|
23866
|
+
* @memberof DropdownRecommendationsServiceTrendingProduct
|
|
23867
|
+
*/
|
|
23868
|
+
'image'?: string;
|
|
23869
|
+
/**
|
|
23870
|
+
*
|
|
23871
|
+
* @type {boolean}
|
|
23872
|
+
* @memberof DropdownRecommendationsServiceTrendingProduct
|
|
23873
|
+
*/
|
|
23874
|
+
'in_stock'?: boolean;
|
|
23875
|
+
/**
|
|
23876
|
+
*
|
|
23877
|
+
* @type {string}
|
|
23878
|
+
* @memberof DropdownRecommendationsServiceTrendingProduct
|
|
23879
|
+
*/
|
|
23880
|
+
'name'?: string;
|
|
23881
|
+
/**
|
|
23882
|
+
*
|
|
23883
|
+
* @type {number}
|
|
23884
|
+
* @memberof DropdownRecommendationsServiceTrendingProduct
|
|
23885
|
+
*/
|
|
23886
|
+
'price'?: number;
|
|
23887
|
+
/**
|
|
23888
|
+
*
|
|
23889
|
+
* @type {number}
|
|
23890
|
+
* @memberof DropdownRecommendationsServiceTrendingProduct
|
|
23891
|
+
*/
|
|
23892
|
+
'revenue'?: number;
|
|
23893
|
+
/**
|
|
23894
|
+
*
|
|
23895
|
+
* @type {number}
|
|
23896
|
+
* @memberof DropdownRecommendationsServiceTrendingProduct
|
|
23897
|
+
*/
|
|
23898
|
+
'selling_price'?: number;
|
|
23899
|
+
/**
|
|
23900
|
+
*
|
|
23901
|
+
* @type {string}
|
|
23902
|
+
* @memberof DropdownRecommendationsServiceTrendingProduct
|
|
23903
|
+
*/
|
|
23904
|
+
'url'?: string;
|
|
23905
|
+
}
|
|
23906
|
+
/**
|
|
23907
|
+
*
|
|
23908
|
+
* @export
|
|
23909
|
+
* @interface DropdownRecommendationsServiceTrendingSearchItem
|
|
23910
|
+
*/
|
|
23911
|
+
export interface DropdownRecommendationsServiceTrendingSearchItem {
|
|
23912
|
+
/**
|
|
23913
|
+
*
|
|
23914
|
+
* @type {string}
|
|
23915
|
+
* @memberof DropdownRecommendationsServiceTrendingSearchItem
|
|
23916
|
+
*/
|
|
23917
|
+
'category'?: string;
|
|
23918
|
+
/**
|
|
23919
|
+
*
|
|
23920
|
+
* @type {number}
|
|
23921
|
+
* @memberof DropdownRecommendationsServiceTrendingSearchItem
|
|
23922
|
+
*/
|
|
23923
|
+
'popularity'?: number;
|
|
23924
|
+
/**
|
|
23925
|
+
*
|
|
23926
|
+
* @type {string}
|
|
23927
|
+
* @memberof DropdownRecommendationsServiceTrendingSearchItem
|
|
23928
|
+
*/
|
|
23929
|
+
'query'?: string;
|
|
23930
|
+
}
|
|
23931
|
+
/**
|
|
23932
|
+
*
|
|
23933
|
+
* @export
|
|
23934
|
+
* @interface DropdownRecommendationsServiceUpdateDropdownConfigRequest
|
|
23935
|
+
*/
|
|
23936
|
+
export interface DropdownRecommendationsServiceUpdateDropdownConfigRequest {
|
|
23937
|
+
/**
|
|
23938
|
+
*
|
|
23939
|
+
* @type {{ [key: string]: string; }}
|
|
23940
|
+
* @memberof DropdownRecommendationsServiceUpdateDropdownConfigRequest
|
|
23941
|
+
*/
|
|
23942
|
+
'brand_field_mappings'?: {
|
|
23943
|
+
[key: string]: string;
|
|
23944
|
+
};
|
|
23945
|
+
/**
|
|
23946
|
+
*
|
|
23947
|
+
* @type {string}
|
|
23948
|
+
* @memberof DropdownRecommendationsServiceUpdateDropdownConfigRequest
|
|
23949
|
+
*/
|
|
23950
|
+
'brand_sort_by'?: string;
|
|
23951
|
+
/**
|
|
23952
|
+
*
|
|
23953
|
+
* @type {number}
|
|
23954
|
+
* @memberof DropdownRecommendationsServiceUpdateDropdownConfigRequest
|
|
23955
|
+
*/
|
|
23956
|
+
'cache_ttl_seconds'?: number;
|
|
23957
|
+
/**
|
|
23958
|
+
*
|
|
23959
|
+
* @type {{ [key: string]: string; }}
|
|
23960
|
+
* @memberof DropdownRecommendationsServiceUpdateDropdownConfigRequest
|
|
23961
|
+
*/
|
|
23962
|
+
'category_field_mappings'?: {
|
|
23963
|
+
[key: string]: string;
|
|
23964
|
+
};
|
|
23965
|
+
/**
|
|
23966
|
+
*
|
|
23967
|
+
* @type {boolean}
|
|
23968
|
+
* @memberof DropdownRecommendationsServiceUpdateDropdownConfigRequest
|
|
23969
|
+
*/
|
|
23970
|
+
'enable_popular_brands'?: boolean;
|
|
23971
|
+
/**
|
|
23972
|
+
*
|
|
23973
|
+
* @type {boolean}
|
|
23974
|
+
* @memberof DropdownRecommendationsServiceUpdateDropdownConfigRequest
|
|
23975
|
+
*/
|
|
23976
|
+
'enable_trending_products'?: boolean;
|
|
23977
|
+
/**
|
|
23978
|
+
*
|
|
23979
|
+
* @type {boolean}
|
|
23980
|
+
* @memberof DropdownRecommendationsServiceUpdateDropdownConfigRequest
|
|
23981
|
+
*/
|
|
23982
|
+
'enable_trending_search'?: boolean;
|
|
23983
|
+
/**
|
|
23984
|
+
*
|
|
23985
|
+
* @type {boolean}
|
|
23986
|
+
* @memberof DropdownRecommendationsServiceUpdateDropdownConfigRequest
|
|
23987
|
+
*/
|
|
23988
|
+
'enabled'?: boolean;
|
|
23989
|
+
/**
|
|
23990
|
+
*
|
|
23991
|
+
* @type {boolean}
|
|
23992
|
+
* @memberof DropdownRecommendationsServiceUpdateDropdownConfigRequest
|
|
23993
|
+
*/
|
|
23994
|
+
'exclude_out_of_stock'?: boolean;
|
|
23995
|
+
/**
|
|
23996
|
+
*
|
|
23997
|
+
* @type {boolean}
|
|
23998
|
+
* @memberof DropdownRecommendationsServiceUpdateDropdownConfigRequest
|
|
23999
|
+
*/
|
|
24000
|
+
'include_only_in_stock'?: boolean;
|
|
24001
|
+
/**
|
|
24002
|
+
*
|
|
24003
|
+
* @type {number}
|
|
24004
|
+
* @memberof DropdownRecommendationsServiceUpdateDropdownConfigRequest
|
|
24005
|
+
*/
|
|
24006
|
+
'min_brand_searches'?: number;
|
|
24007
|
+
/**
|
|
24008
|
+
*
|
|
24009
|
+
* @type {number}
|
|
24010
|
+
* @memberof DropdownRecommendationsServiceUpdateDropdownConfigRequest
|
|
24011
|
+
*/
|
|
24012
|
+
'min_product_clicks'?: number;
|
|
24013
|
+
/**
|
|
24014
|
+
*
|
|
24015
|
+
* @type {number}
|
|
24016
|
+
* @memberof DropdownRecommendationsServiceUpdateDropdownConfigRequest
|
|
24017
|
+
*/
|
|
24018
|
+
'min_product_conversions'?: number;
|
|
24019
|
+
/**
|
|
24020
|
+
*
|
|
24021
|
+
* @type {number}
|
|
24022
|
+
* @memberof DropdownRecommendationsServiceUpdateDropdownConfigRequest
|
|
24023
|
+
*/
|
|
24024
|
+
'popular_brands_limit'?: number;
|
|
24025
|
+
/**
|
|
24026
|
+
*
|
|
24027
|
+
* @type {{ [key: string]: string; }}
|
|
24028
|
+
* @memberof DropdownRecommendationsServiceUpdateDropdownConfigRequest
|
|
24029
|
+
*/
|
|
24030
|
+
'product_field_mappings'?: {
|
|
24031
|
+
[key: string]: string;
|
|
24032
|
+
};
|
|
24033
|
+
/**
|
|
24034
|
+
*
|
|
24035
|
+
* @type {string}
|
|
24036
|
+
* @memberof DropdownRecommendationsServiceUpdateDropdownConfigRequest
|
|
24037
|
+
*/
|
|
24038
|
+
'product_sort_by'?: string;
|
|
24039
|
+
/**
|
|
24040
|
+
*
|
|
24041
|
+
* @type {number}
|
|
24042
|
+
* @memberof DropdownRecommendationsServiceUpdateDropdownConfigRequest
|
|
24043
|
+
*/
|
|
24044
|
+
'trending_products_limit'?: number;
|
|
24045
|
+
/**
|
|
24046
|
+
*
|
|
24047
|
+
* @type {number}
|
|
24048
|
+
* @memberof DropdownRecommendationsServiceUpdateDropdownConfigRequest
|
|
24049
|
+
*/
|
|
24050
|
+
'trending_search_limit'?: number;
|
|
24051
|
+
/**
|
|
24052
|
+
*
|
|
24053
|
+
* @type {number}
|
|
24054
|
+
* @memberof DropdownRecommendationsServiceUpdateDropdownConfigRequest
|
|
24055
|
+
*/
|
|
24056
|
+
'trending_time_range_days'?: number;
|
|
24057
|
+
/**
|
|
24058
|
+
*
|
|
24059
|
+
* @type {boolean}
|
|
24060
|
+
* @memberof DropdownRecommendationsServiceUpdateDropdownConfigRequest
|
|
24061
|
+
*/
|
|
24062
|
+
'use_query_suggestions_config'?: boolean;
|
|
24063
|
+
}
|
|
23383
24064
|
/**
|
|
23384
24065
|
*
|
|
23385
24066
|
* @export
|
|
@@ -26060,24 +26741,18 @@ export interface StoreRouteTimeSeriesResponse {
|
|
|
26060
26741
|
* @interface SubscriptionRouteCancelPreviewRequest
|
|
26061
26742
|
*/
|
|
26062
26743
|
export interface SubscriptionRouteCancelPreviewRequest {
|
|
26063
|
-
/**
|
|
26064
|
-
*
|
|
26065
|
-
* @type {number}
|
|
26066
|
-
* @memberof SubscriptionRouteCancelPreviewRequest
|
|
26067
|
-
*/
|
|
26068
|
-
'org_id': number;
|
|
26069
26744
|
/**
|
|
26070
26745
|
*
|
|
26071
26746
|
* @type {string}
|
|
26072
26747
|
* @memberof SubscriptionRouteCancelPreviewRequest
|
|
26073
26748
|
*/
|
|
26074
|
-
'reason'
|
|
26749
|
+
'reason'?: string;
|
|
26075
26750
|
/**
|
|
26076
26751
|
*
|
|
26077
26752
|
* @type {string}
|
|
26078
26753
|
* @memberof SubscriptionRouteCancelPreviewRequest
|
|
26079
26754
|
*/
|
|
26080
|
-
'subscription_id'
|
|
26755
|
+
'subscription_id'?: string;
|
|
26081
26756
|
}
|
|
26082
26757
|
/**
|
|
26083
26758
|
*
|
|
@@ -26091,24 +26766,18 @@ export interface SubscriptionRouteCancelProcessRequest {
|
|
|
26091
26766
|
* @memberof SubscriptionRouteCancelProcessRequest
|
|
26092
26767
|
*/
|
|
26093
26768
|
'immediate_cancellation'?: boolean;
|
|
26094
|
-
/**
|
|
26095
|
-
*
|
|
26096
|
-
* @type {number}
|
|
26097
|
-
* @memberof SubscriptionRouteCancelProcessRequest
|
|
26098
|
-
*/
|
|
26099
|
-
'org_id': number;
|
|
26100
26769
|
/**
|
|
26101
26770
|
*
|
|
26102
26771
|
* @type {string}
|
|
26103
26772
|
* @memberof SubscriptionRouteCancelProcessRequest
|
|
26104
26773
|
*/
|
|
26105
|
-
'reason'
|
|
26774
|
+
'reason'?: string;
|
|
26106
26775
|
/**
|
|
26107
26776
|
*
|
|
26108
26777
|
* @type {string}
|
|
26109
26778
|
* @memberof SubscriptionRouteCancelProcessRequest
|
|
26110
26779
|
*/
|
|
26111
|
-
'subscription_id'
|
|
26780
|
+
'subscription_id'?: string;
|
|
26112
26781
|
}
|
|
26113
26782
|
/**
|
|
26114
26783
|
*
|
|
@@ -34158,6 +34827,155 @@ export declare class DocumentsApi extends BaseAPI {
|
|
|
34158
34827
|
*/
|
|
34159
34828
|
adminStoresXStoreIDUploadPost(xStoreID: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayString, any, {}>>;
|
|
34160
34829
|
}
|
|
34830
|
+
/**
|
|
34831
|
+
* DropdownRecommendationsApi - axios parameter creator
|
|
34832
|
+
* @export
|
|
34833
|
+
*/
|
|
34834
|
+
export declare const DropdownRecommendationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
34835
|
+
/**
|
|
34836
|
+
* Retrieve configuration settings for dropdown recommendations
|
|
34837
|
+
* @summary Get Dropdown Recommendations Configuration
|
|
34838
|
+
* @param {string} xStoreid Store ID
|
|
34839
|
+
* @param {string} xStoresecret Store Secret
|
|
34840
|
+
* @param {*} [options] Override http request option.
|
|
34841
|
+
* @throws {RequiredError}
|
|
34842
|
+
*/
|
|
34843
|
+
v1DropdownRecommendationsConfigGet: (xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
34844
|
+
/**
|
|
34845
|
+
* Update configuration settings for dropdown recommendations
|
|
34846
|
+
* @summary Update Dropdown Recommendations Configuration
|
|
34847
|
+
* @param {string} xStoreid Store ID
|
|
34848
|
+
* @param {string} xStoresecret Store Secret
|
|
34849
|
+
* @param {DropdownRecommendationsServiceUpdateDropdownConfigRequest} dropdownRecommendationsServiceUpdateDropdownConfigRequest Configuration to update
|
|
34850
|
+
* @param {*} [options] Override http request option.
|
|
34851
|
+
* @throws {RequiredError}
|
|
34852
|
+
*/
|
|
34853
|
+
v1DropdownRecommendationsConfigPut: (xStoreid: string, xStoresecret: string, dropdownRecommendationsServiceUpdateDropdownConfigRequest: DropdownRecommendationsServiceUpdateDropdownConfigRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
34854
|
+
/**
|
|
34855
|
+
* Retrieve trending search categories, trending products, and popular brands for the dropdown
|
|
34856
|
+
* @summary Get Dropdown Recommendations
|
|
34857
|
+
* @param {string} xStoreid Store ID
|
|
34858
|
+
* @param {string} xStoresecret Store Secret
|
|
34859
|
+
* @param {string} [xUserId] User ID for personalization
|
|
34860
|
+
* @param {string} [xAnonId] Anonymous ID for personalization
|
|
34861
|
+
* @param {*} [options] Override http request option.
|
|
34862
|
+
* @throws {RequiredError}
|
|
34863
|
+
*/
|
|
34864
|
+
v1DropdownRecommendationsGet: (xStoreid: string, xStoresecret: string, xUserId?: string, xAnonId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
34865
|
+
};
|
|
34866
|
+
/**
|
|
34867
|
+
* DropdownRecommendationsApi - functional programming interface
|
|
34868
|
+
* @export
|
|
34869
|
+
*/
|
|
34870
|
+
export declare const DropdownRecommendationsApiFp: (configuration?: Configuration) => {
|
|
34871
|
+
/**
|
|
34872
|
+
* Retrieve configuration settings for dropdown recommendations
|
|
34873
|
+
* @summary Get Dropdown Recommendations Configuration
|
|
34874
|
+
* @param {string} xStoreid Store ID
|
|
34875
|
+
* @param {string} xStoresecret Store Secret
|
|
34876
|
+
* @param {*} [options] Override http request option.
|
|
34877
|
+
* @throws {RequiredError}
|
|
34878
|
+
*/
|
|
34879
|
+
v1DropdownRecommendationsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DropdownRecommendationsServiceDropdownConfigResponse>>;
|
|
34880
|
+
/**
|
|
34881
|
+
* Update configuration settings for dropdown recommendations
|
|
34882
|
+
* @summary Update Dropdown Recommendations Configuration
|
|
34883
|
+
* @param {string} xStoreid Store ID
|
|
34884
|
+
* @param {string} xStoresecret Store Secret
|
|
34885
|
+
* @param {DropdownRecommendationsServiceUpdateDropdownConfigRequest} dropdownRecommendationsServiceUpdateDropdownConfigRequest Configuration to update
|
|
34886
|
+
* @param {*} [options] Override http request option.
|
|
34887
|
+
* @throws {RequiredError}
|
|
34888
|
+
*/
|
|
34889
|
+
v1DropdownRecommendationsConfigPut(xStoreid: string, xStoresecret: string, dropdownRecommendationsServiceUpdateDropdownConfigRequest: DropdownRecommendationsServiceUpdateDropdownConfigRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DropdownRecommendationsServiceDropdownConfigResponse>>;
|
|
34890
|
+
/**
|
|
34891
|
+
* Retrieve trending search categories, trending products, and popular brands for the dropdown
|
|
34892
|
+
* @summary Get Dropdown Recommendations
|
|
34893
|
+
* @param {string} xStoreid Store ID
|
|
34894
|
+
* @param {string} xStoresecret Store Secret
|
|
34895
|
+
* @param {string} [xUserId] User ID for personalization
|
|
34896
|
+
* @param {string} [xAnonId] Anonymous ID for personalization
|
|
34897
|
+
* @param {*} [options] Override http request option.
|
|
34898
|
+
* @throws {RequiredError}
|
|
34899
|
+
*/
|
|
34900
|
+
v1DropdownRecommendationsGet(xStoreid: string, xStoresecret: string, xUserId?: string, xAnonId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DropdownRecommendationsServiceDropdownRecommendationsAPIResponse>>;
|
|
34901
|
+
};
|
|
34902
|
+
/**
|
|
34903
|
+
* DropdownRecommendationsApi - factory interface
|
|
34904
|
+
* @export
|
|
34905
|
+
*/
|
|
34906
|
+
export declare const DropdownRecommendationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
34907
|
+
/**
|
|
34908
|
+
* Retrieve configuration settings for dropdown recommendations
|
|
34909
|
+
* @summary Get Dropdown Recommendations Configuration
|
|
34910
|
+
* @param {string} xStoreid Store ID
|
|
34911
|
+
* @param {string} xStoresecret Store Secret
|
|
34912
|
+
* @param {*} [options] Override http request option.
|
|
34913
|
+
* @throws {RequiredError}
|
|
34914
|
+
*/
|
|
34915
|
+
v1DropdownRecommendationsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): AxiosPromise<DropdownRecommendationsServiceDropdownConfigResponse>;
|
|
34916
|
+
/**
|
|
34917
|
+
* Update configuration settings for dropdown recommendations
|
|
34918
|
+
* @summary Update Dropdown Recommendations Configuration
|
|
34919
|
+
* @param {string} xStoreid Store ID
|
|
34920
|
+
* @param {string} xStoresecret Store Secret
|
|
34921
|
+
* @param {DropdownRecommendationsServiceUpdateDropdownConfigRequest} dropdownRecommendationsServiceUpdateDropdownConfigRequest Configuration to update
|
|
34922
|
+
* @param {*} [options] Override http request option.
|
|
34923
|
+
* @throws {RequiredError}
|
|
34924
|
+
*/
|
|
34925
|
+
v1DropdownRecommendationsConfigPut(xStoreid: string, xStoresecret: string, dropdownRecommendationsServiceUpdateDropdownConfigRequest: DropdownRecommendationsServiceUpdateDropdownConfigRequest, options?: RawAxiosRequestConfig): AxiosPromise<DropdownRecommendationsServiceDropdownConfigResponse>;
|
|
34926
|
+
/**
|
|
34927
|
+
* Retrieve trending search categories, trending products, and popular brands for the dropdown
|
|
34928
|
+
* @summary Get Dropdown Recommendations
|
|
34929
|
+
* @param {string} xStoreid Store ID
|
|
34930
|
+
* @param {string} xStoresecret Store Secret
|
|
34931
|
+
* @param {string} [xUserId] User ID for personalization
|
|
34932
|
+
* @param {string} [xAnonId] Anonymous ID for personalization
|
|
34933
|
+
* @param {*} [options] Override http request option.
|
|
34934
|
+
* @throws {RequiredError}
|
|
34935
|
+
*/
|
|
34936
|
+
v1DropdownRecommendationsGet(xStoreid: string, xStoresecret: string, xUserId?: string, xAnonId?: string, options?: RawAxiosRequestConfig): AxiosPromise<DropdownRecommendationsServiceDropdownRecommendationsAPIResponse>;
|
|
34937
|
+
};
|
|
34938
|
+
/**
|
|
34939
|
+
* DropdownRecommendationsApi - object-oriented interface
|
|
34940
|
+
* @export
|
|
34941
|
+
* @class DropdownRecommendationsApi
|
|
34942
|
+
* @extends {BaseAPI}
|
|
34943
|
+
*/
|
|
34944
|
+
export declare class DropdownRecommendationsApi extends BaseAPI {
|
|
34945
|
+
/**
|
|
34946
|
+
* Retrieve configuration settings for dropdown recommendations
|
|
34947
|
+
* @summary Get Dropdown Recommendations Configuration
|
|
34948
|
+
* @param {string} xStoreid Store ID
|
|
34949
|
+
* @param {string} xStoresecret Store Secret
|
|
34950
|
+
* @param {*} [options] Override http request option.
|
|
34951
|
+
* @throws {RequiredError}
|
|
34952
|
+
* @memberof DropdownRecommendationsApi
|
|
34953
|
+
*/
|
|
34954
|
+
v1DropdownRecommendationsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DropdownRecommendationsServiceDropdownConfigResponse, any, {}>>;
|
|
34955
|
+
/**
|
|
34956
|
+
* Update configuration settings for dropdown recommendations
|
|
34957
|
+
* @summary Update Dropdown Recommendations Configuration
|
|
34958
|
+
* @param {string} xStoreid Store ID
|
|
34959
|
+
* @param {string} xStoresecret Store Secret
|
|
34960
|
+
* @param {DropdownRecommendationsServiceUpdateDropdownConfigRequest} dropdownRecommendationsServiceUpdateDropdownConfigRequest Configuration to update
|
|
34961
|
+
* @param {*} [options] Override http request option.
|
|
34962
|
+
* @throws {RequiredError}
|
|
34963
|
+
* @memberof DropdownRecommendationsApi
|
|
34964
|
+
*/
|
|
34965
|
+
v1DropdownRecommendationsConfigPut(xStoreid: string, xStoresecret: string, dropdownRecommendationsServiceUpdateDropdownConfigRequest: DropdownRecommendationsServiceUpdateDropdownConfigRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DropdownRecommendationsServiceDropdownConfigResponse, any, {}>>;
|
|
34966
|
+
/**
|
|
34967
|
+
* Retrieve trending search categories, trending products, and popular brands for the dropdown
|
|
34968
|
+
* @summary Get Dropdown Recommendations
|
|
34969
|
+
* @param {string} xStoreid Store ID
|
|
34970
|
+
* @param {string} xStoresecret Store Secret
|
|
34971
|
+
* @param {string} [xUserId] User ID for personalization
|
|
34972
|
+
* @param {string} [xAnonId] Anonymous ID for personalization
|
|
34973
|
+
* @param {*} [options] Override http request option.
|
|
34974
|
+
* @throws {RequiredError}
|
|
34975
|
+
* @memberof DropdownRecommendationsApi
|
|
34976
|
+
*/
|
|
34977
|
+
v1DropdownRecommendationsGet(xStoreid: string, xStoresecret: string, xUserId?: string, xAnonId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DropdownRecommendationsServiceDropdownRecommendationsAPIResponse, any, {}>>;
|
|
34978
|
+
}
|
|
34161
34979
|
/**
|
|
34162
34980
|
* ExternalAPINotificationsApi - axios parameter creator
|
|
34163
34981
|
* @export
|
|
@@ -44381,17 +45199,17 @@ export declare class StoresApi extends BaseAPI {
|
|
|
44381
45199
|
*/
|
|
44382
45200
|
export declare const SubscriptionsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
44383
45201
|
/**
|
|
44384
|
-
* Shows detailed preview of subscription cancellation including credit calculation, billing period info, and potential refund
|
|
45202
|
+
* Shows detailed preview of subscription cancellation including credit calculation, billing period info, and potential refund. Org ID is automatically extracted from JWT session.
|
|
44385
45203
|
* @summary Preview subscription cancellation details
|
|
44386
|
-
* @param {SubscriptionRouteCancelPreviewRequest} subscriptionRouteCancelPreviewRequest Cancellation preview request
|
|
45204
|
+
* @param {SubscriptionRouteCancelPreviewRequest} subscriptionRouteCancelPreviewRequest Cancellation preview request (org_id is extracted from session)
|
|
44387
45205
|
* @param {*} [options] Override http request option.
|
|
44388
45206
|
* @throws {RequiredError}
|
|
44389
45207
|
*/
|
|
44390
45208
|
adminSubscriptionsCancelPreviewPost: (subscriptionRouteCancelPreviewRequest: SubscriptionRouteCancelPreviewRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
44391
45209
|
/**
|
|
44392
|
-
* Cancels the subscription, removes unused credits, and processes refund if applicable
|
|
45210
|
+
* Cancels the subscription, removes unused credits, and processes refund if applicable. Org ID is automatically extracted from JWT session.
|
|
44393
45211
|
* @summary Process subscription cancellation
|
|
44394
|
-
* @param {SubscriptionRouteCancelProcessRequest} subscriptionRouteCancelProcessRequest Cancellation process request
|
|
45212
|
+
* @param {SubscriptionRouteCancelProcessRequest} subscriptionRouteCancelProcessRequest Cancellation process request (org_id is extracted from session)
|
|
44395
45213
|
* @param {*} [options] Override http request option.
|
|
44396
45214
|
* @throws {RequiredError}
|
|
44397
45215
|
*/
|
|
@@ -44444,17 +45262,17 @@ export declare const SubscriptionsApiAxiosParamCreator: (configuration?: Configu
|
|
|
44444
45262
|
*/
|
|
44445
45263
|
export declare const SubscriptionsApiFp: (configuration?: Configuration) => {
|
|
44446
45264
|
/**
|
|
44447
|
-
* Shows detailed preview of subscription cancellation including credit calculation, billing period info, and potential refund
|
|
45265
|
+
* Shows detailed preview of subscription cancellation including credit calculation, billing period info, and potential refund. Org ID is automatically extracted from JWT session.
|
|
44448
45266
|
* @summary Preview subscription cancellation details
|
|
44449
|
-
* @param {SubscriptionRouteCancelPreviewRequest} subscriptionRouteCancelPreviewRequest Cancellation preview request
|
|
45267
|
+
* @param {SubscriptionRouteCancelPreviewRequest} subscriptionRouteCancelPreviewRequest Cancellation preview request (org_id is extracted from session)
|
|
44450
45268
|
* @param {*} [options] Override http request option.
|
|
44451
45269
|
* @throws {RequiredError}
|
|
44452
45270
|
*/
|
|
44453
45271
|
adminSubscriptionsCancelPreviewPost(subscriptionRouteCancelPreviewRequest: SubscriptionRouteCancelPreviewRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DataTypesResponse>>;
|
|
44454
45272
|
/**
|
|
44455
|
-
* Cancels the subscription, removes unused credits, and processes refund if applicable
|
|
45273
|
+
* Cancels the subscription, removes unused credits, and processes refund if applicable. Org ID is automatically extracted from JWT session.
|
|
44456
45274
|
* @summary Process subscription cancellation
|
|
44457
|
-
* @param {SubscriptionRouteCancelProcessRequest} subscriptionRouteCancelProcessRequest Cancellation process request
|
|
45275
|
+
* @param {SubscriptionRouteCancelProcessRequest} subscriptionRouteCancelProcessRequest Cancellation process request (org_id is extracted from session)
|
|
44458
45276
|
* @param {*} [options] Override http request option.
|
|
44459
45277
|
* @throws {RequiredError}
|
|
44460
45278
|
*/
|
|
@@ -44507,17 +45325,17 @@ export declare const SubscriptionsApiFp: (configuration?: Configuration) => {
|
|
|
44507
45325
|
*/
|
|
44508
45326
|
export declare const SubscriptionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
44509
45327
|
/**
|
|
44510
|
-
* Shows detailed preview of subscription cancellation including credit calculation, billing period info, and potential refund
|
|
45328
|
+
* Shows detailed preview of subscription cancellation including credit calculation, billing period info, and potential refund. Org ID is automatically extracted from JWT session.
|
|
44511
45329
|
* @summary Preview subscription cancellation details
|
|
44512
|
-
* @param {SubscriptionRouteCancelPreviewRequest} subscriptionRouteCancelPreviewRequest Cancellation preview request
|
|
45330
|
+
* @param {SubscriptionRouteCancelPreviewRequest} subscriptionRouteCancelPreviewRequest Cancellation preview request (org_id is extracted from session)
|
|
44513
45331
|
* @param {*} [options] Override http request option.
|
|
44514
45332
|
* @throws {RequiredError}
|
|
44515
45333
|
*/
|
|
44516
45334
|
adminSubscriptionsCancelPreviewPost(subscriptionRouteCancelPreviewRequest: SubscriptionRouteCancelPreviewRequest, options?: RawAxiosRequestConfig): AxiosPromise<DataTypesResponse>;
|
|
44517
45335
|
/**
|
|
44518
|
-
* Cancels the subscription, removes unused credits, and processes refund if applicable
|
|
45336
|
+
* Cancels the subscription, removes unused credits, and processes refund if applicable. Org ID is automatically extracted from JWT session.
|
|
44519
45337
|
* @summary Process subscription cancellation
|
|
44520
|
-
* @param {SubscriptionRouteCancelProcessRequest} subscriptionRouteCancelProcessRequest Cancellation process request
|
|
45338
|
+
* @param {SubscriptionRouteCancelProcessRequest} subscriptionRouteCancelProcessRequest Cancellation process request (org_id is extracted from session)
|
|
44521
45339
|
* @param {*} [options] Override http request option.
|
|
44522
45340
|
* @throws {RequiredError}
|
|
44523
45341
|
*/
|
|
@@ -44572,18 +45390,18 @@ export declare const SubscriptionsApiFactory: (configuration?: Configuration, ba
|
|
|
44572
45390
|
*/
|
|
44573
45391
|
export declare class SubscriptionsApi extends BaseAPI {
|
|
44574
45392
|
/**
|
|
44575
|
-
* Shows detailed preview of subscription cancellation including credit calculation, billing period info, and potential refund
|
|
45393
|
+
* Shows detailed preview of subscription cancellation including credit calculation, billing period info, and potential refund. Org ID is automatically extracted from JWT session.
|
|
44576
45394
|
* @summary Preview subscription cancellation details
|
|
44577
|
-
* @param {SubscriptionRouteCancelPreviewRequest} subscriptionRouteCancelPreviewRequest Cancellation preview request
|
|
45395
|
+
* @param {SubscriptionRouteCancelPreviewRequest} subscriptionRouteCancelPreviewRequest Cancellation preview request (org_id is extracted from session)
|
|
44578
45396
|
* @param {*} [options] Override http request option.
|
|
44579
45397
|
* @throws {RequiredError}
|
|
44580
45398
|
* @memberof SubscriptionsApi
|
|
44581
45399
|
*/
|
|
44582
45400
|
adminSubscriptionsCancelPreviewPost(subscriptionRouteCancelPreviewRequest: SubscriptionRouteCancelPreviewRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesResponse, any, {}>>;
|
|
44583
45401
|
/**
|
|
44584
|
-
* Cancels the subscription, removes unused credits, and processes refund if applicable
|
|
45402
|
+
* Cancels the subscription, removes unused credits, and processes refund if applicable. Org ID is automatically extracted from JWT session.
|
|
44585
45403
|
* @summary Process subscription cancellation
|
|
44586
|
-
* @param {SubscriptionRouteCancelProcessRequest} subscriptionRouteCancelProcessRequest Cancellation process request
|
|
45404
|
+
* @param {SubscriptionRouteCancelProcessRequest} subscriptionRouteCancelProcessRequest Cancellation process request (org_id is extracted from session)
|
|
44587
45405
|
* @param {*} [options] Override http request option.
|
|
44588
45406
|
* @throws {RequiredError}
|
|
44589
45407
|
* @memberof SubscriptionsApi
|