@seekora-ai/admin-api 1.1.52 → 1.1.54
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 +991 -20
- package/dist/api.d.ts +972 -136
- package/dist/api.js +304 -13
- package/dist/esm/api.d.ts +972 -136
- package/dist/esm/api.js +295 -8
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.54.tgz +0 -0
- package/seekora-ai-admin-api-1.1.52.tgz +0 -0
package/dist/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}
|
|
@@ -23383,231 +23522,773 @@ export interface DefaultMenuRoutesUpdateMenuVisibilityResponse {
|
|
|
23383
23522
|
/**
|
|
23384
23523
|
*
|
|
23385
23524
|
* @export
|
|
23386
|
-
* @interface
|
|
23525
|
+
* @interface DropdownRecommendationsServiceDropdownConfigResponse
|
|
23387
23526
|
*/
|
|
23388
|
-
export interface
|
|
23527
|
+
export interface DropdownRecommendationsServiceDropdownConfigResponse {
|
|
23389
23528
|
/**
|
|
23390
23529
|
*
|
|
23391
|
-
* @type {
|
|
23392
|
-
* @memberof
|
|
23530
|
+
* @type {DropdownRecommendationsServiceDropdownRecommendationsConfig}
|
|
23531
|
+
* @memberof DropdownRecommendationsServiceDropdownConfigResponse
|
|
23393
23532
|
*/
|
|
23394
|
-
'
|
|
23533
|
+
'data'?: DropdownRecommendationsServiceDropdownRecommendationsConfig;
|
|
23395
23534
|
/**
|
|
23396
23535
|
*
|
|
23397
23536
|
* @type {string}
|
|
23398
|
-
* @memberof
|
|
23537
|
+
* @memberof DropdownRecommendationsServiceDropdownConfigResponse
|
|
23399
23538
|
*/
|
|
23400
|
-
'
|
|
23539
|
+
'message'?: string;
|
|
23401
23540
|
/**
|
|
23402
23541
|
*
|
|
23403
|
-
* @type {
|
|
23404
|
-
* @memberof
|
|
23542
|
+
* @type {string}
|
|
23543
|
+
* @memberof DropdownRecommendationsServiceDropdownConfigResponse
|
|
23405
23544
|
*/
|
|
23406
|
-
'
|
|
23545
|
+
'status'?: string;
|
|
23407
23546
|
/**
|
|
23408
23547
|
*
|
|
23409
|
-
* @type {
|
|
23410
|
-
* @memberof
|
|
23548
|
+
* @type {string}
|
|
23549
|
+
* @memberof DropdownRecommendationsServiceDropdownConfigResponse
|
|
23411
23550
|
*/
|
|
23412
|
-
'
|
|
23551
|
+
'timestamp'?: string;
|
|
23413
23552
|
/**
|
|
23414
23553
|
*
|
|
23415
23554
|
* @type {string}
|
|
23416
|
-
* @memberof
|
|
23555
|
+
* @memberof DropdownRecommendationsServiceDropdownConfigResponse
|
|
23417
23556
|
*/
|
|
23418
|
-
'
|
|
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;
|
|
23419
23571
|
/**
|
|
23420
23572
|
*
|
|
23421
23573
|
* @type {string}
|
|
23422
|
-
* @memberof
|
|
23574
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsAPIResponse
|
|
23423
23575
|
*/
|
|
23424
|
-
'
|
|
23576
|
+
'error'?: string;
|
|
23425
23577
|
/**
|
|
23426
23578
|
*
|
|
23427
|
-
* @type {
|
|
23428
|
-
* @memberof
|
|
23579
|
+
* @type {string}
|
|
23580
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsAPIResponse
|
|
23429
23581
|
*/
|
|
23430
|
-
'
|
|
23582
|
+
'status'?: string;
|
|
23431
23583
|
/**
|
|
23432
23584
|
*
|
|
23433
|
-
* @type {
|
|
23434
|
-
* @memberof
|
|
23585
|
+
* @type {string}
|
|
23586
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsAPIResponse
|
|
23435
23587
|
*/
|
|
23436
|
-
'
|
|
23588
|
+
'timestamp'?: string;
|
|
23589
|
+
/**
|
|
23590
|
+
*
|
|
23591
|
+
* @type {string}
|
|
23592
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsAPIResponse
|
|
23593
|
+
*/
|
|
23594
|
+
'version'?: string;
|
|
23437
23595
|
}
|
|
23438
23596
|
/**
|
|
23439
23597
|
*
|
|
23440
23598
|
* @export
|
|
23441
|
-
* @interface
|
|
23599
|
+
* @interface DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23442
23600
|
*/
|
|
23443
|
-
export interface
|
|
23601
|
+
export interface DropdownRecommendationsServiceDropdownRecommendationsConfig {
|
|
23444
23602
|
/**
|
|
23445
23603
|
*
|
|
23446
|
-
* @type {
|
|
23447
|
-
* @memberof
|
|
23604
|
+
* @type {{ [key: string]: string; }}
|
|
23605
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23448
23606
|
*/
|
|
23449
|
-
'
|
|
23607
|
+
'brand_field_mappings'?: {
|
|
23608
|
+
[key: string]: string;
|
|
23609
|
+
};
|
|
23450
23610
|
/**
|
|
23451
|
-
*
|
|
23611
|
+
* \'searches\', \'clicks\', \'conversions\'
|
|
23612
|
+
* @type {string}
|
|
23613
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23614
|
+
*/
|
|
23615
|
+
'brand_sort_by'?: string;
|
|
23616
|
+
/**
|
|
23617
|
+
* Caching configuration
|
|
23452
23618
|
* @type {number}
|
|
23453
|
-
* @memberof
|
|
23619
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23454
23620
|
*/
|
|
23455
|
-
'
|
|
23621
|
+
'cache_ttl_seconds'?: number;
|
|
23456
23622
|
/**
|
|
23457
23623
|
*
|
|
23458
|
-
* @type {
|
|
23459
|
-
* @memberof
|
|
23624
|
+
* @type {{ [key: string]: string; }}
|
|
23625
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23460
23626
|
*/
|
|
23461
|
-
'
|
|
23627
|
+
'category_field_mappings'?: {
|
|
23628
|
+
[key: string]: string;
|
|
23629
|
+
};
|
|
23462
23630
|
/**
|
|
23463
23631
|
*
|
|
23464
23632
|
* @type {string}
|
|
23465
|
-
* @memberof
|
|
23633
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23466
23634
|
*/
|
|
23467
|
-
'
|
|
23635
|
+
'created_at'?: string;
|
|
23468
23636
|
/**
|
|
23469
23637
|
*
|
|
23470
23638
|
* @type {boolean}
|
|
23471
|
-
* @memberof
|
|
23639
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23472
23640
|
*/
|
|
23473
|
-
'
|
|
23641
|
+
'enable_popular_brands'?: boolean;
|
|
23474
23642
|
/**
|
|
23475
23643
|
*
|
|
23476
|
-
* @type {
|
|
23477
|
-
* @memberof
|
|
23644
|
+
* @type {boolean}
|
|
23645
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23478
23646
|
*/
|
|
23479
|
-
'
|
|
23647
|
+
'enable_trending_products'?: boolean;
|
|
23480
23648
|
/**
|
|
23481
23649
|
*
|
|
23482
|
-
* @type {
|
|
23483
|
-
* @memberof
|
|
23650
|
+
* @type {boolean}
|
|
23651
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23484
23652
|
*/
|
|
23485
|
-
'
|
|
23486
|
-
}
|
|
23487
|
-
/**
|
|
23488
|
-
*
|
|
23489
|
-
* @export
|
|
23490
|
-
* @interface FeatureLimitServiceFeatureStatus
|
|
23491
|
-
*/
|
|
23492
|
-
export interface FeatureLimitServiceFeatureStatus {
|
|
23653
|
+
'enable_trending_search'?: boolean;
|
|
23493
23654
|
/**
|
|
23494
|
-
*
|
|
23495
|
-
* @type {
|
|
23496
|
-
* @memberof
|
|
23655
|
+
* Feature enable/disable flags
|
|
23656
|
+
* @type {boolean}
|
|
23657
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23497
23658
|
*/
|
|
23498
|
-
'
|
|
23659
|
+
'enabled'?: boolean;
|
|
23499
23660
|
/**
|
|
23500
|
-
*
|
|
23501
|
-
* @type {
|
|
23502
|
-
* @memberof
|
|
23661
|
+
* Additional filters
|
|
23662
|
+
* @type {boolean}
|
|
23663
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23503
23664
|
*/
|
|
23504
|
-
'
|
|
23665
|
+
'exclude_out_of_stock'?: boolean;
|
|
23505
23666
|
/**
|
|
23506
23667
|
*
|
|
23507
23668
|
* @type {boolean}
|
|
23508
|
-
* @memberof
|
|
23669
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23509
23670
|
*/
|
|
23510
|
-
'
|
|
23671
|
+
'include_only_in_stock'?: boolean;
|
|
23511
23672
|
/**
|
|
23512
|
-
*
|
|
23513
|
-
* @type {
|
|
23514
|
-
* @memberof
|
|
23673
|
+
* Brand selection criteria
|
|
23674
|
+
* @type {number}
|
|
23675
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23515
23676
|
*/
|
|
23516
|
-
'
|
|
23677
|
+
'min_brand_searches'?: number;
|
|
23517
23678
|
/**
|
|
23518
|
-
*
|
|
23519
|
-
* @type {
|
|
23520
|
-
* @memberof
|
|
23679
|
+
* Product selection criteria
|
|
23680
|
+
* @type {number}
|
|
23681
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23521
23682
|
*/
|
|
23522
|
-
'
|
|
23683
|
+
'min_product_clicks'?: number;
|
|
23523
23684
|
/**
|
|
23524
23685
|
*
|
|
23525
23686
|
* @type {number}
|
|
23526
|
-
* @memberof
|
|
23687
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23527
23688
|
*/
|
|
23528
|
-
'
|
|
23689
|
+
'min_product_conversions'?: number;
|
|
23529
23690
|
/**
|
|
23530
23691
|
*
|
|
23531
|
-
* @type {
|
|
23532
|
-
* @memberof
|
|
23692
|
+
* @type {number}
|
|
23693
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23533
23694
|
*/
|
|
23534
|
-
'
|
|
23535
|
-
}
|
|
23536
|
-
/**
|
|
23537
|
-
*
|
|
23538
|
-
* @export
|
|
23539
|
-
* @interface FeatureLimitServiceLimitStatus
|
|
23540
|
-
*/
|
|
23541
|
-
export interface FeatureLimitServiceLimitStatus {
|
|
23695
|
+
'popular_brands_limit'?: number;
|
|
23542
23696
|
/**
|
|
23543
|
-
*
|
|
23544
|
-
* @type {
|
|
23545
|
-
* @memberof
|
|
23697
|
+
* Dataset-agnostic field mappings
|
|
23698
|
+
* @type {{ [key: string]: string; }}
|
|
23699
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23546
23700
|
*/
|
|
23547
|
-
'
|
|
23701
|
+
'product_field_mappings'?: {
|
|
23702
|
+
[key: string]: string;
|
|
23703
|
+
};
|
|
23548
23704
|
/**
|
|
23549
|
-
*
|
|
23705
|
+
* \'clicks\', \'conversions\', \'revenue\', \'trend_score\'
|
|
23550
23706
|
* @type {string}
|
|
23551
|
-
* @memberof
|
|
23707
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23552
23708
|
*/
|
|
23553
|
-
'
|
|
23709
|
+
'product_sort_by'?: string;
|
|
23554
23710
|
/**
|
|
23555
23711
|
*
|
|
23556
|
-
* @type {
|
|
23557
|
-
* @memberof
|
|
23712
|
+
* @type {number}
|
|
23713
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23558
23714
|
*/
|
|
23559
|
-
'
|
|
23715
|
+
'trending_products_limit'?: number;
|
|
23560
23716
|
/**
|
|
23561
|
-
*
|
|
23562
|
-
* @type {
|
|
23563
|
-
* @memberof
|
|
23717
|
+
* Limits for each section
|
|
23718
|
+
* @type {number}
|
|
23719
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23564
23720
|
*/
|
|
23565
|
-
'
|
|
23566
|
-
[key: string]: FeatureLimitServiceFeatureStatus;
|
|
23567
|
-
};
|
|
23721
|
+
'trending_search_limit'?: number;
|
|
23568
23722
|
/**
|
|
23569
|
-
*
|
|
23570
|
-
* @type {
|
|
23571
|
-
* @memberof
|
|
23723
|
+
* Time range configuration
|
|
23724
|
+
* @type {number}
|
|
23725
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23572
23726
|
*/
|
|
23573
|
-
'
|
|
23727
|
+
'trending_time_range_days'?: number;
|
|
23574
23728
|
/**
|
|
23575
23729
|
*
|
|
23576
23730
|
* @type {string}
|
|
23577
|
-
* @memberof
|
|
23731
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23578
23732
|
*/
|
|
23579
|
-
'
|
|
23733
|
+
'updated_at'?: string;
|
|
23580
23734
|
/**
|
|
23581
|
-
*
|
|
23582
|
-
* @type {
|
|
23583
|
-
* @memberof
|
|
23735
|
+
* Trending search configuration
|
|
23736
|
+
* @type {boolean}
|
|
23737
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsConfig
|
|
23584
23738
|
*/
|
|
23585
|
-
'
|
|
23739
|
+
'use_query_suggestions_config'?: boolean;
|
|
23740
|
+
}
|
|
23741
|
+
/**
|
|
23742
|
+
*
|
|
23743
|
+
* @export
|
|
23744
|
+
* @interface DropdownRecommendationsServiceDropdownRecommendationsResponse
|
|
23745
|
+
*/
|
|
23746
|
+
export interface DropdownRecommendationsServiceDropdownRecommendationsResponse {
|
|
23586
23747
|
/**
|
|
23587
23748
|
*
|
|
23588
|
-
* @type {
|
|
23589
|
-
* @memberof
|
|
23749
|
+
* @type {Array<DropdownRecommendationsServicePopularBrand>}
|
|
23750
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsResponse
|
|
23590
23751
|
*/
|
|
23591
|
-
'
|
|
23752
|
+
'popular_brands'?: Array<DropdownRecommendationsServicePopularBrand>;
|
|
23592
23753
|
/**
|
|
23593
23754
|
*
|
|
23594
23755
|
* @type {number}
|
|
23595
|
-
* @memberof
|
|
23756
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsResponse
|
|
23596
23757
|
*/
|
|
23597
|
-
'
|
|
23758
|
+
'processing_time_ms'?: number;
|
|
23598
23759
|
/**
|
|
23599
23760
|
*
|
|
23600
23761
|
* @type {string}
|
|
23601
|
-
* @memberof
|
|
23762
|
+
* @memberof DropdownRecommendationsServiceDropdownRecommendationsResponse
|
|
23602
23763
|
*/
|
|
23603
|
-
'
|
|
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>;
|
|
23604
23777
|
}
|
|
23605
23778
|
/**
|
|
23606
23779
|
*
|
|
23607
23780
|
* @export
|
|
23608
|
-
* @interface
|
|
23781
|
+
* @interface DropdownRecommendationsServicePopularBrand
|
|
23609
23782
|
*/
|
|
23610
|
-
export interface
|
|
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
|
+
}
|
|
24064
|
+
/**
|
|
24065
|
+
*
|
|
24066
|
+
* @export
|
|
24067
|
+
* @interface FeatureLimitServiceAPICallStatus
|
|
24068
|
+
*/
|
|
24069
|
+
export interface FeatureLimitServiceAPICallStatus {
|
|
24070
|
+
/**
|
|
24071
|
+
*
|
|
24072
|
+
* @type {number}
|
|
24073
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
24074
|
+
*/
|
|
24075
|
+
'calls_made'?: number;
|
|
24076
|
+
/**
|
|
24077
|
+
*
|
|
24078
|
+
* @type {string}
|
|
24079
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
24080
|
+
*/
|
|
24081
|
+
'current_period'?: string;
|
|
24082
|
+
/**
|
|
24083
|
+
*
|
|
24084
|
+
* @type {boolean}
|
|
24085
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
24086
|
+
*/
|
|
24087
|
+
'is_exhausted'?: boolean;
|
|
24088
|
+
/**
|
|
24089
|
+
*
|
|
24090
|
+
* @type {number}
|
|
24091
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
24092
|
+
*/
|
|
24093
|
+
'limit'?: number;
|
|
24094
|
+
/**
|
|
24095
|
+
*
|
|
24096
|
+
* @type {string}
|
|
24097
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
24098
|
+
*/
|
|
24099
|
+
'period_ends_at'?: string;
|
|
24100
|
+
/**
|
|
24101
|
+
*
|
|
24102
|
+
* @type {string}
|
|
24103
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
24104
|
+
*/
|
|
24105
|
+
'period_starts_at'?: string;
|
|
24106
|
+
/**
|
|
24107
|
+
*
|
|
24108
|
+
* @type {number}
|
|
24109
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
24110
|
+
*/
|
|
24111
|
+
'remaining'?: number;
|
|
24112
|
+
/**
|
|
24113
|
+
*
|
|
24114
|
+
* @type {number}
|
|
24115
|
+
* @memberof FeatureLimitServiceAPICallStatus
|
|
24116
|
+
*/
|
|
24117
|
+
'usage_percent'?: number;
|
|
24118
|
+
}
|
|
24119
|
+
/**
|
|
24120
|
+
*
|
|
24121
|
+
* @export
|
|
24122
|
+
* @interface FeatureLimitServiceCreditStatus
|
|
24123
|
+
*/
|
|
24124
|
+
export interface FeatureLimitServiceCreditStatus {
|
|
24125
|
+
/**
|
|
24126
|
+
*
|
|
24127
|
+
* @type {number}
|
|
24128
|
+
* @memberof FeatureLimitServiceCreditStatus
|
|
24129
|
+
*/
|
|
24130
|
+
'available'?: number;
|
|
24131
|
+
/**
|
|
24132
|
+
*
|
|
24133
|
+
* @type {number}
|
|
24134
|
+
* @memberof FeatureLimitServiceCreditStatus
|
|
24135
|
+
*/
|
|
24136
|
+
'consumed'?: number;
|
|
24137
|
+
/**
|
|
24138
|
+
*
|
|
24139
|
+
* @type {number}
|
|
24140
|
+
* @memberof FeatureLimitServiceCreditStatus
|
|
24141
|
+
*/
|
|
24142
|
+
'expiring_credits'?: number;
|
|
24143
|
+
/**
|
|
24144
|
+
*
|
|
24145
|
+
* @type {string}
|
|
24146
|
+
* @memberof FeatureLimitServiceCreditStatus
|
|
24147
|
+
*/
|
|
24148
|
+
'expiry_date'?: string;
|
|
24149
|
+
/**
|
|
24150
|
+
*
|
|
24151
|
+
* @type {boolean}
|
|
24152
|
+
* @memberof FeatureLimitServiceCreditStatus
|
|
24153
|
+
*/
|
|
24154
|
+
'is_exhausted'?: boolean;
|
|
24155
|
+
/**
|
|
24156
|
+
*
|
|
24157
|
+
* @type {number}
|
|
24158
|
+
* @memberof FeatureLimitServiceCreditStatus
|
|
24159
|
+
*/
|
|
24160
|
+
'total'?: number;
|
|
24161
|
+
/**
|
|
24162
|
+
*
|
|
24163
|
+
* @type {number}
|
|
24164
|
+
* @memberof FeatureLimitServiceCreditStatus
|
|
24165
|
+
*/
|
|
24166
|
+
'usage_percent'?: number;
|
|
24167
|
+
}
|
|
24168
|
+
/**
|
|
24169
|
+
*
|
|
24170
|
+
* @export
|
|
24171
|
+
* @interface FeatureLimitServiceFeatureStatus
|
|
24172
|
+
*/
|
|
24173
|
+
export interface FeatureLimitServiceFeatureStatus {
|
|
24174
|
+
/**
|
|
24175
|
+
*
|
|
24176
|
+
* @type {number}
|
|
24177
|
+
* @memberof FeatureLimitServiceFeatureStatus
|
|
24178
|
+
*/
|
|
24179
|
+
'current_usage'?: number;
|
|
24180
|
+
/**
|
|
24181
|
+
*
|
|
24182
|
+
* @type {string}
|
|
24183
|
+
* @memberof FeatureLimitServiceFeatureStatus
|
|
24184
|
+
*/
|
|
24185
|
+
'feature_name'?: string;
|
|
24186
|
+
/**
|
|
24187
|
+
*
|
|
24188
|
+
* @type {boolean}
|
|
24189
|
+
* @memberof FeatureLimitServiceFeatureStatus
|
|
24190
|
+
*/
|
|
24191
|
+
'is_exhausted'?: boolean;
|
|
24192
|
+
/**
|
|
24193
|
+
*
|
|
24194
|
+
* @type {any}
|
|
24195
|
+
* @memberof FeatureLimitServiceFeatureStatus
|
|
24196
|
+
*/
|
|
24197
|
+
'limit'?: any;
|
|
24198
|
+
/**
|
|
24199
|
+
*
|
|
24200
|
+
* @type {any}
|
|
24201
|
+
* @memberof FeatureLimitServiceFeatureStatus
|
|
24202
|
+
*/
|
|
24203
|
+
'remaining'?: any;
|
|
24204
|
+
/**
|
|
24205
|
+
*
|
|
24206
|
+
* @type {number}
|
|
24207
|
+
* @memberof FeatureLimitServiceFeatureStatus
|
|
24208
|
+
*/
|
|
24209
|
+
'usage_percent'?: number;
|
|
24210
|
+
/**
|
|
24211
|
+
*
|
|
24212
|
+
* @type {string}
|
|
24213
|
+
* @memberof FeatureLimitServiceFeatureStatus
|
|
24214
|
+
*/
|
|
24215
|
+
'will_reset_at'?: string;
|
|
24216
|
+
}
|
|
24217
|
+
/**
|
|
24218
|
+
*
|
|
24219
|
+
* @export
|
|
24220
|
+
* @interface FeatureLimitServiceLimitStatus
|
|
24221
|
+
*/
|
|
24222
|
+
export interface FeatureLimitServiceLimitStatus {
|
|
24223
|
+
/**
|
|
24224
|
+
*
|
|
24225
|
+
* @type {FeatureLimitServiceAPICallStatus}
|
|
24226
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
24227
|
+
*/
|
|
24228
|
+
'api_calls'?: FeatureLimitServiceAPICallStatus;
|
|
24229
|
+
/**
|
|
24230
|
+
*
|
|
24231
|
+
* @type {string}
|
|
24232
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
24233
|
+
*/
|
|
24234
|
+
'block_reason'?: string;
|
|
24235
|
+
/**
|
|
24236
|
+
*
|
|
24237
|
+
* @type {FeatureLimitServiceCreditStatus}
|
|
24238
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
24239
|
+
*/
|
|
24240
|
+
'credits'?: FeatureLimitServiceCreditStatus;
|
|
24241
|
+
/**
|
|
24242
|
+
*
|
|
24243
|
+
* @type {{ [key: string]: FeatureLimitServiceFeatureStatus; }}
|
|
24244
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
24245
|
+
*/
|
|
24246
|
+
'features'?: {
|
|
24247
|
+
[key: string]: FeatureLimitServiceFeatureStatus;
|
|
24248
|
+
};
|
|
24249
|
+
/**
|
|
24250
|
+
*
|
|
24251
|
+
* @type {boolean}
|
|
24252
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
24253
|
+
*/
|
|
24254
|
+
'is_blocked'?: boolean;
|
|
24255
|
+
/**
|
|
24256
|
+
*
|
|
24257
|
+
* @type {string}
|
|
24258
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
24259
|
+
*/
|
|
24260
|
+
'last_updated'?: string;
|
|
24261
|
+
/**
|
|
24262
|
+
*
|
|
24263
|
+
* @type {string}
|
|
24264
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
24265
|
+
*/
|
|
24266
|
+
'next_reset'?: string;
|
|
24267
|
+
/**
|
|
24268
|
+
*
|
|
24269
|
+
* @type {number}
|
|
24270
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
24271
|
+
*/
|
|
24272
|
+
'org_id'?: number;
|
|
24273
|
+
/**
|
|
24274
|
+
*
|
|
24275
|
+
* @type {number}
|
|
24276
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
24277
|
+
*/
|
|
24278
|
+
'plan_id'?: number;
|
|
24279
|
+
/**
|
|
24280
|
+
*
|
|
24281
|
+
* @type {string}
|
|
24282
|
+
* @memberof FeatureLimitServiceLimitStatus
|
|
24283
|
+
*/
|
|
24284
|
+
'plan_name'?: string;
|
|
24285
|
+
}
|
|
24286
|
+
/**
|
|
24287
|
+
*
|
|
24288
|
+
* @export
|
|
24289
|
+
* @interface FeatureLimitsCheckGet200Response
|
|
24290
|
+
*/
|
|
24291
|
+
export interface FeatureLimitsCheckGet200Response {
|
|
23611
24292
|
/**
|
|
23612
24293
|
*
|
|
23613
24294
|
* @type {DataTypesFeatureCheckResult}
|
|
@@ -24606,17 +25287,17 @@ export interface QuerySuggestionsServiceQuerySuggestionConfig {
|
|
|
24606
25287
|
*/
|
|
24607
25288
|
'show_top_categories'?: number;
|
|
24608
25289
|
/**
|
|
24609
|
-
*
|
|
25290
|
+
* Enable special characters in tokenization (maps to token_separators and symbols_to_index)
|
|
24610
25291
|
* @type {boolean}
|
|
24611
25292
|
* @memberof QuerySuggestionsServiceQuerySuggestionConfig
|
|
24612
25293
|
*/
|
|
24613
|
-
'
|
|
25294
|
+
'special_chars'?: boolean;
|
|
24614
25295
|
/**
|
|
24615
|
-
*
|
|
24616
|
-
* @type {
|
|
25296
|
+
* Whether to sync enabled suggestions to Typesense
|
|
25297
|
+
* @type {boolean}
|
|
24617
25298
|
* @memberof QuerySuggestionsServiceQuerySuggestionConfig
|
|
24618
25299
|
*/
|
|
24619
|
-
'
|
|
25300
|
+
'sync_to_typesense'?: boolean;
|
|
24620
25301
|
/**
|
|
24621
25302
|
* Whether to sync to Typesense
|
|
24622
25303
|
* @type {boolean}
|
|
@@ -25371,11 +26052,17 @@ export interface QuerySuggestionsServiceUpdateSuggestionConfigRequest {
|
|
|
25371
26052
|
*/
|
|
25372
26053
|
'show_top_categories'?: number;
|
|
25373
26054
|
/**
|
|
25374
|
-
*
|
|
25375
|
-
* @type {
|
|
26055
|
+
* Enable special characters in tokenization
|
|
26056
|
+
* @type {boolean}
|
|
26057
|
+
* @memberof QuerySuggestionsServiceUpdateSuggestionConfigRequest
|
|
26058
|
+
*/
|
|
26059
|
+
'special_chars'?: boolean;
|
|
26060
|
+
/**
|
|
26061
|
+
* Enable/disable syncing suggestions to Typesense
|
|
26062
|
+
* @type {boolean}
|
|
25376
26063
|
* @memberof QuerySuggestionsServiceUpdateSuggestionConfigRequest
|
|
25377
26064
|
*/
|
|
25378
|
-
'
|
|
26065
|
+
'sync_to_typesense'?: boolean;
|
|
25379
26066
|
/**
|
|
25380
26067
|
* Typo tolerance
|
|
25381
26068
|
* @type {number}
|
|
@@ -26065,13 +26752,13 @@ export interface SubscriptionRouteCancelPreviewRequest {
|
|
|
26065
26752
|
* @type {string}
|
|
26066
26753
|
* @memberof SubscriptionRouteCancelPreviewRequest
|
|
26067
26754
|
*/
|
|
26068
|
-
'reason'
|
|
26755
|
+
'reason'?: string;
|
|
26069
26756
|
/**
|
|
26070
26757
|
*
|
|
26071
26758
|
* @type {string}
|
|
26072
26759
|
* @memberof SubscriptionRouteCancelPreviewRequest
|
|
26073
26760
|
*/
|
|
26074
|
-
'subscription_id'
|
|
26761
|
+
'subscription_id'?: string;
|
|
26075
26762
|
}
|
|
26076
26763
|
/**
|
|
26077
26764
|
*
|
|
@@ -26090,13 +26777,13 @@ export interface SubscriptionRouteCancelProcessRequest {
|
|
|
26090
26777
|
* @type {string}
|
|
26091
26778
|
* @memberof SubscriptionRouteCancelProcessRequest
|
|
26092
26779
|
*/
|
|
26093
|
-
'reason'
|
|
26780
|
+
'reason'?: string;
|
|
26094
26781
|
/**
|
|
26095
26782
|
*
|
|
26096
26783
|
* @type {string}
|
|
26097
26784
|
* @memberof SubscriptionRouteCancelProcessRequest
|
|
26098
26785
|
*/
|
|
26099
|
-
'subscription_id'
|
|
26786
|
+
'subscription_id'?: string;
|
|
26100
26787
|
}
|
|
26101
26788
|
/**
|
|
26102
26789
|
*
|
|
@@ -27880,7 +28567,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
27880
28567
|
* @param {string} [path] Path filter (partial match)
|
|
27881
28568
|
* @param {string} [storeId] Store ID filter
|
|
27882
28569
|
* @param {number} [page] Page number (default: 1)
|
|
27883
|
-
* @param {number} [perPage] Results per page (default:
|
|
28570
|
+
* @param {number} [perPage] Results per page (default: 100, max: 1000)
|
|
27884
28571
|
* @param {*} [options] Override http request option.
|
|
27885
28572
|
* @throws {RequiredError}
|
|
27886
28573
|
*/
|
|
@@ -27893,7 +28580,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
27893
28580
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
27894
28581
|
* @param {string} [method] HTTP method filter
|
|
27895
28582
|
* @param {number} [page] Page number (default: 1)
|
|
27896
|
-
* @param {number} [perPage] Results per page (default:
|
|
28583
|
+
* @param {number} [perPage] Results per page (default: 100, max: 1000)
|
|
27897
28584
|
* @param {*} [options] Override http request option.
|
|
27898
28585
|
* @throws {RequiredError}
|
|
27899
28586
|
*/
|
|
@@ -28329,7 +29016,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
28329
29016
|
* @param {string} [path] Path filter (partial match)
|
|
28330
29017
|
* @param {string} [storeId] Store ID filter
|
|
28331
29018
|
* @param {number} [page] Page number (default: 1)
|
|
28332
|
-
* @param {number} [perPage] Results per page (default:
|
|
29019
|
+
* @param {number} [perPage] Results per page (default: 100, max: 1000)
|
|
28333
29020
|
* @param {*} [options] Override http request option.
|
|
28334
29021
|
* @throws {RequiredError}
|
|
28335
29022
|
*/
|
|
@@ -28342,7 +29029,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
28342
29029
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
28343
29030
|
* @param {string} [method] HTTP method filter
|
|
28344
29031
|
* @param {number} [page] Page number (default: 1)
|
|
28345
|
-
* @param {number} [perPage] Results per page (default:
|
|
29032
|
+
* @param {number} [perPage] Results per page (default: 100, max: 1000)
|
|
28346
29033
|
* @param {*} [options] Override http request option.
|
|
28347
29034
|
* @throws {RequiredError}
|
|
28348
29035
|
*/
|
|
@@ -28778,7 +29465,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
28778
29465
|
* @param {string} [path] Path filter (partial match)
|
|
28779
29466
|
* @param {string} [storeId] Store ID filter
|
|
28780
29467
|
* @param {number} [page] Page number (default: 1)
|
|
28781
|
-
* @param {number} [perPage] Results per page (default:
|
|
29468
|
+
* @param {number} [perPage] Results per page (default: 100, max: 1000)
|
|
28782
29469
|
* @param {*} [options] Override http request option.
|
|
28783
29470
|
* @throws {RequiredError}
|
|
28784
29471
|
*/
|
|
@@ -28791,7 +29478,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
28791
29478
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
28792
29479
|
* @param {string} [method] HTTP method filter
|
|
28793
29480
|
* @param {number} [page] Page number (default: 1)
|
|
28794
|
-
* @param {number} [perPage] Results per page (default:
|
|
29481
|
+
* @param {number} [perPage] Results per page (default: 100, max: 1000)
|
|
28795
29482
|
* @param {*} [options] Override http request option.
|
|
28796
29483
|
* @throws {RequiredError}
|
|
28797
29484
|
*/
|
|
@@ -29247,7 +29934,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
29247
29934
|
* @param {string} [path] Path filter (partial match)
|
|
29248
29935
|
* @param {string} [storeId] Store ID filter
|
|
29249
29936
|
* @param {number} [page] Page number (default: 1)
|
|
29250
|
-
* @param {number} [perPage] Results per page (default:
|
|
29937
|
+
* @param {number} [perPage] Results per page (default: 100, max: 1000)
|
|
29251
29938
|
* @param {*} [options] Override http request option.
|
|
29252
29939
|
* @throws {RequiredError}
|
|
29253
29940
|
* @memberof AnalyticsApi
|
|
@@ -29261,7 +29948,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
29261
29948
|
* @param {string} [endDate] End date (ISO 8601 format)
|
|
29262
29949
|
* @param {string} [method] HTTP method filter
|
|
29263
29950
|
* @param {number} [page] Page number (default: 1)
|
|
29264
|
-
* @param {number} [perPage] Results per page (default:
|
|
29951
|
+
* @param {number} [perPage] Results per page (default: 100, max: 1000)
|
|
29265
29952
|
* @param {*} [options] Override http request option.
|
|
29266
29953
|
* @throws {RequiredError}
|
|
29267
29954
|
* @memberof AnalyticsApi
|
|
@@ -34146,6 +34833,155 @@ export declare class DocumentsApi extends BaseAPI {
|
|
|
34146
34833
|
*/
|
|
34147
34834
|
adminStoresXStoreIDUploadPost(xStoreID: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayString, any, {}>>;
|
|
34148
34835
|
}
|
|
34836
|
+
/**
|
|
34837
|
+
* DropdownRecommendationsApi - axios parameter creator
|
|
34838
|
+
* @export
|
|
34839
|
+
*/
|
|
34840
|
+
export declare const DropdownRecommendationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
34841
|
+
/**
|
|
34842
|
+
* Retrieve configuration settings for dropdown recommendations
|
|
34843
|
+
* @summary Get Dropdown Recommendations Configuration
|
|
34844
|
+
* @param {string} xStoreid Store ID
|
|
34845
|
+
* @param {string} xStoresecret Store Secret
|
|
34846
|
+
* @param {*} [options] Override http request option.
|
|
34847
|
+
* @throws {RequiredError}
|
|
34848
|
+
*/
|
|
34849
|
+
v1DropdownRecommendationsConfigGet: (xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
34850
|
+
/**
|
|
34851
|
+
* Update configuration settings for dropdown recommendations
|
|
34852
|
+
* @summary Update Dropdown Recommendations Configuration
|
|
34853
|
+
* @param {string} xStoreid Store ID
|
|
34854
|
+
* @param {string} xStoresecret Store Secret
|
|
34855
|
+
* @param {DropdownRecommendationsServiceUpdateDropdownConfigRequest} dropdownRecommendationsServiceUpdateDropdownConfigRequest Configuration to update
|
|
34856
|
+
* @param {*} [options] Override http request option.
|
|
34857
|
+
* @throws {RequiredError}
|
|
34858
|
+
*/
|
|
34859
|
+
v1DropdownRecommendationsConfigPut: (xStoreid: string, xStoresecret: string, dropdownRecommendationsServiceUpdateDropdownConfigRequest: DropdownRecommendationsServiceUpdateDropdownConfigRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
34860
|
+
/**
|
|
34861
|
+
* Retrieve trending search categories, trending products, and popular brands for the dropdown
|
|
34862
|
+
* @summary Get Dropdown Recommendations
|
|
34863
|
+
* @param {string} xStoreid Store ID
|
|
34864
|
+
* @param {string} xStoresecret Store Secret
|
|
34865
|
+
* @param {string} [xUserId] User ID for personalization
|
|
34866
|
+
* @param {string} [xAnonId] Anonymous ID for personalization
|
|
34867
|
+
* @param {*} [options] Override http request option.
|
|
34868
|
+
* @throws {RequiredError}
|
|
34869
|
+
*/
|
|
34870
|
+
v1DropdownRecommendationsGet: (xStoreid: string, xStoresecret: string, xUserId?: string, xAnonId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
34871
|
+
};
|
|
34872
|
+
/**
|
|
34873
|
+
* DropdownRecommendationsApi - functional programming interface
|
|
34874
|
+
* @export
|
|
34875
|
+
*/
|
|
34876
|
+
export declare const DropdownRecommendationsApiFp: (configuration?: Configuration) => {
|
|
34877
|
+
/**
|
|
34878
|
+
* Retrieve configuration settings for dropdown recommendations
|
|
34879
|
+
* @summary Get Dropdown Recommendations Configuration
|
|
34880
|
+
* @param {string} xStoreid Store ID
|
|
34881
|
+
* @param {string} xStoresecret Store Secret
|
|
34882
|
+
* @param {*} [options] Override http request option.
|
|
34883
|
+
* @throws {RequiredError}
|
|
34884
|
+
*/
|
|
34885
|
+
v1DropdownRecommendationsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DropdownRecommendationsServiceDropdownConfigResponse>>;
|
|
34886
|
+
/**
|
|
34887
|
+
* Update configuration settings for dropdown recommendations
|
|
34888
|
+
* @summary Update Dropdown Recommendations Configuration
|
|
34889
|
+
* @param {string} xStoreid Store ID
|
|
34890
|
+
* @param {string} xStoresecret Store Secret
|
|
34891
|
+
* @param {DropdownRecommendationsServiceUpdateDropdownConfigRequest} dropdownRecommendationsServiceUpdateDropdownConfigRequest Configuration to update
|
|
34892
|
+
* @param {*} [options] Override http request option.
|
|
34893
|
+
* @throws {RequiredError}
|
|
34894
|
+
*/
|
|
34895
|
+
v1DropdownRecommendationsConfigPut(xStoreid: string, xStoresecret: string, dropdownRecommendationsServiceUpdateDropdownConfigRequest: DropdownRecommendationsServiceUpdateDropdownConfigRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DropdownRecommendationsServiceDropdownConfigResponse>>;
|
|
34896
|
+
/**
|
|
34897
|
+
* Retrieve trending search categories, trending products, and popular brands for the dropdown
|
|
34898
|
+
* @summary Get Dropdown Recommendations
|
|
34899
|
+
* @param {string} xStoreid Store ID
|
|
34900
|
+
* @param {string} xStoresecret Store Secret
|
|
34901
|
+
* @param {string} [xUserId] User ID for personalization
|
|
34902
|
+
* @param {string} [xAnonId] Anonymous ID for personalization
|
|
34903
|
+
* @param {*} [options] Override http request option.
|
|
34904
|
+
* @throws {RequiredError}
|
|
34905
|
+
*/
|
|
34906
|
+
v1DropdownRecommendationsGet(xStoreid: string, xStoresecret: string, xUserId?: string, xAnonId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DropdownRecommendationsServiceDropdownRecommendationsAPIResponse>>;
|
|
34907
|
+
};
|
|
34908
|
+
/**
|
|
34909
|
+
* DropdownRecommendationsApi - factory interface
|
|
34910
|
+
* @export
|
|
34911
|
+
*/
|
|
34912
|
+
export declare const DropdownRecommendationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
34913
|
+
/**
|
|
34914
|
+
* Retrieve configuration settings for dropdown recommendations
|
|
34915
|
+
* @summary Get Dropdown Recommendations Configuration
|
|
34916
|
+
* @param {string} xStoreid Store ID
|
|
34917
|
+
* @param {string} xStoresecret Store Secret
|
|
34918
|
+
* @param {*} [options] Override http request option.
|
|
34919
|
+
* @throws {RequiredError}
|
|
34920
|
+
*/
|
|
34921
|
+
v1DropdownRecommendationsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): AxiosPromise<DropdownRecommendationsServiceDropdownConfigResponse>;
|
|
34922
|
+
/**
|
|
34923
|
+
* Update configuration settings for dropdown recommendations
|
|
34924
|
+
* @summary Update Dropdown Recommendations Configuration
|
|
34925
|
+
* @param {string} xStoreid Store ID
|
|
34926
|
+
* @param {string} xStoresecret Store Secret
|
|
34927
|
+
* @param {DropdownRecommendationsServiceUpdateDropdownConfigRequest} dropdownRecommendationsServiceUpdateDropdownConfigRequest Configuration to update
|
|
34928
|
+
* @param {*} [options] Override http request option.
|
|
34929
|
+
* @throws {RequiredError}
|
|
34930
|
+
*/
|
|
34931
|
+
v1DropdownRecommendationsConfigPut(xStoreid: string, xStoresecret: string, dropdownRecommendationsServiceUpdateDropdownConfigRequest: DropdownRecommendationsServiceUpdateDropdownConfigRequest, options?: RawAxiosRequestConfig): AxiosPromise<DropdownRecommendationsServiceDropdownConfigResponse>;
|
|
34932
|
+
/**
|
|
34933
|
+
* Retrieve trending search categories, trending products, and popular brands for the dropdown
|
|
34934
|
+
* @summary Get Dropdown Recommendations
|
|
34935
|
+
* @param {string} xStoreid Store ID
|
|
34936
|
+
* @param {string} xStoresecret Store Secret
|
|
34937
|
+
* @param {string} [xUserId] User ID for personalization
|
|
34938
|
+
* @param {string} [xAnonId] Anonymous ID for personalization
|
|
34939
|
+
* @param {*} [options] Override http request option.
|
|
34940
|
+
* @throws {RequiredError}
|
|
34941
|
+
*/
|
|
34942
|
+
v1DropdownRecommendationsGet(xStoreid: string, xStoresecret: string, xUserId?: string, xAnonId?: string, options?: RawAxiosRequestConfig): AxiosPromise<DropdownRecommendationsServiceDropdownRecommendationsAPIResponse>;
|
|
34943
|
+
};
|
|
34944
|
+
/**
|
|
34945
|
+
* DropdownRecommendationsApi - object-oriented interface
|
|
34946
|
+
* @export
|
|
34947
|
+
* @class DropdownRecommendationsApi
|
|
34948
|
+
* @extends {BaseAPI}
|
|
34949
|
+
*/
|
|
34950
|
+
export declare class DropdownRecommendationsApi extends BaseAPI {
|
|
34951
|
+
/**
|
|
34952
|
+
* Retrieve configuration settings for dropdown recommendations
|
|
34953
|
+
* @summary Get Dropdown Recommendations Configuration
|
|
34954
|
+
* @param {string} xStoreid Store ID
|
|
34955
|
+
* @param {string} xStoresecret Store Secret
|
|
34956
|
+
* @param {*} [options] Override http request option.
|
|
34957
|
+
* @throws {RequiredError}
|
|
34958
|
+
* @memberof DropdownRecommendationsApi
|
|
34959
|
+
*/
|
|
34960
|
+
v1DropdownRecommendationsConfigGet(xStoreid: string, xStoresecret: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DropdownRecommendationsServiceDropdownConfigResponse, any, {}>>;
|
|
34961
|
+
/**
|
|
34962
|
+
* Update configuration settings for dropdown recommendations
|
|
34963
|
+
* @summary Update Dropdown Recommendations Configuration
|
|
34964
|
+
* @param {string} xStoreid Store ID
|
|
34965
|
+
* @param {string} xStoresecret Store Secret
|
|
34966
|
+
* @param {DropdownRecommendationsServiceUpdateDropdownConfigRequest} dropdownRecommendationsServiceUpdateDropdownConfigRequest Configuration to update
|
|
34967
|
+
* @param {*} [options] Override http request option.
|
|
34968
|
+
* @throws {RequiredError}
|
|
34969
|
+
* @memberof DropdownRecommendationsApi
|
|
34970
|
+
*/
|
|
34971
|
+
v1DropdownRecommendationsConfigPut(xStoreid: string, xStoresecret: string, dropdownRecommendationsServiceUpdateDropdownConfigRequest: DropdownRecommendationsServiceUpdateDropdownConfigRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DropdownRecommendationsServiceDropdownConfigResponse, any, {}>>;
|
|
34972
|
+
/**
|
|
34973
|
+
* Retrieve trending search categories, trending products, and popular brands for the dropdown
|
|
34974
|
+
* @summary Get Dropdown Recommendations
|
|
34975
|
+
* @param {string} xStoreid Store ID
|
|
34976
|
+
* @param {string} xStoresecret Store Secret
|
|
34977
|
+
* @param {string} [xUserId] User ID for personalization
|
|
34978
|
+
* @param {string} [xAnonId] Anonymous ID for personalization
|
|
34979
|
+
* @param {*} [options] Override http request option.
|
|
34980
|
+
* @throws {RequiredError}
|
|
34981
|
+
* @memberof DropdownRecommendationsApi
|
|
34982
|
+
*/
|
|
34983
|
+
v1DropdownRecommendationsGet(xStoreid: string, xStoresecret: string, xUserId?: string, xAnonId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DropdownRecommendationsServiceDropdownRecommendationsAPIResponse, any, {}>>;
|
|
34984
|
+
}
|
|
34149
34985
|
/**
|
|
34150
34986
|
* ExternalAPINotificationsApi - axios parameter creator
|
|
34151
34987
|
* @export
|