@seekora-ai/admin-api 1.1.52 → 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 +969 -4
- package/dist/api.d.ts +950 -120
- package/dist/api.js +296 -5
- package/dist/esm/api.d.ts +950 -120
- package/dist/esm/api.js +287 -0
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.1.53.tgz +0 -0
- package/seekora-ai-admin-api-1.1.52.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}
|
|
@@ -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}
|
|
@@ -26065,13 +26746,13 @@ export interface SubscriptionRouteCancelPreviewRequest {
|
|
|
26065
26746
|
* @type {string}
|
|
26066
26747
|
* @memberof SubscriptionRouteCancelPreviewRequest
|
|
26067
26748
|
*/
|
|
26068
|
-
'reason'
|
|
26749
|
+
'reason'?: string;
|
|
26069
26750
|
/**
|
|
26070
26751
|
*
|
|
26071
26752
|
* @type {string}
|
|
26072
26753
|
* @memberof SubscriptionRouteCancelPreviewRequest
|
|
26073
26754
|
*/
|
|
26074
|
-
'subscription_id'
|
|
26755
|
+
'subscription_id'?: string;
|
|
26075
26756
|
}
|
|
26076
26757
|
/**
|
|
26077
26758
|
*
|
|
@@ -26090,13 +26771,13 @@ export interface SubscriptionRouteCancelProcessRequest {
|
|
|
26090
26771
|
* @type {string}
|
|
26091
26772
|
* @memberof SubscriptionRouteCancelProcessRequest
|
|
26092
26773
|
*/
|
|
26093
|
-
'reason'
|
|
26774
|
+
'reason'?: string;
|
|
26094
26775
|
/**
|
|
26095
26776
|
*
|
|
26096
26777
|
* @type {string}
|
|
26097
26778
|
* @memberof SubscriptionRouteCancelProcessRequest
|
|
26098
26779
|
*/
|
|
26099
|
-
'subscription_id'
|
|
26780
|
+
'subscription_id'?: string;
|
|
26100
26781
|
}
|
|
26101
26782
|
/**
|
|
26102
26783
|
*
|
|
@@ -34146,6 +34827,155 @@ export declare class DocumentsApi extends BaseAPI {
|
|
|
34146
34827
|
*/
|
|
34147
34828
|
adminStoresXStoreIDUploadPost(xStoreID: string, file: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DataTypesGenericResponseArrayString, any, {}>>;
|
|
34148
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
|
+
}
|
|
34149
34979
|
/**
|
|
34150
34980
|
* ExternalAPINotificationsApi - axios parameter creator
|
|
34151
34981
|
* @export
|