@teemill/product-catalog 1.84.0 → 1.85.0
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 +2 -2
- package/api.ts +267 -17
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +141 -9
- package/dist/api.js +133 -15
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +141 -9
- package/dist/esm/api.js +133 -15
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/ProductAnalyticsApi.md +70 -4
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.85.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2500,22 +2500,44 @@ export declare const ProductAnalyticsApiAxiosParamCreator: (configuration?: Conf
|
|
|
2500
2500
|
* Exports all products with analytics data in a CSV file.
|
|
2501
2501
|
* @summary Export product analytics
|
|
2502
2502
|
* @param {string} project What project it is
|
|
2503
|
+
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2504
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like: \'enabled:true\', \'gfn_product_ids:<id>\', \'tag:\"tag name\"\', \'internal_tag:\"internal tag name\"\', \'includeArchived:false\', \'hasSearchPhrase:false\', \'inDataFeeds:true\', \'aiOptimised:true\', \'productType:<id>\', \'genderGroup:\"male,female,unisex\"\', \'hasBarcode:true\', \'onSale:true\', \'type:product,template,bundle\', \'collection:<id>\'. Multiple filters can be combined with spaces and commas.
|
|
2505
|
+
* @param {string} [dateRangeStartDate] Start date for the date range filter (ISO 8601 format)
|
|
2506
|
+
* @param {string} [dateRangeEndDate] End date for the date range filter (ISO 8601 format)
|
|
2507
|
+
* @param {number} [minimumRevenue] Filter to only include products with total revenue greater than or equal to this amount
|
|
2508
|
+
* @param {number} [maximumRevenue] Filter to only include products with total revenue less than or equal to this amount
|
|
2509
|
+
* @param {number} [minimumSales] Filter to only include products with total sales greater than or equal to this number
|
|
2510
|
+
* @param {number} [maximumSales] Filter to only include products with total sales less than or equal to this number
|
|
2511
|
+
* @param {number} [minimumBasketPercent] Filter to only include products where the average basket percentage is greater than or equal to this value
|
|
2512
|
+
* @param {number} [maximumBasketPercent] Filter to only include products where the average basket percentage is less than or equal to this value
|
|
2513
|
+
* @param {number} [minimumTraffic] Filter to only include products with total traffic greater than or equal to this number
|
|
2514
|
+
* @param {number} [maximumTraffic] Filter to only include products with total traffic less than or equal to this number
|
|
2503
2515
|
* @param {*} [options] Override http request option.
|
|
2504
2516
|
* @throws {RequiredError}
|
|
2505
2517
|
*/
|
|
2506
|
-
exportProductAnalytics: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2518
|
+
exportProductAnalytics: (project: string, sortBy?: Array<string>, search?: string, dateRangeStartDate?: string, dateRangeEndDate?: string, minimumRevenue?: number, maximumRevenue?: number, minimumSales?: number, maximumSales?: number, minimumBasketPercent?: number, maximumBasketPercent?: number, minimumTraffic?: number, maximumTraffic?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2507
2519
|
/**
|
|
2508
2520
|
* Lists all product analytics items.
|
|
2509
2521
|
* @summary List product analytics
|
|
2510
2522
|
* @param {string} project What project it is
|
|
2511
2523
|
* @param {number} [pageToken] Page reference token
|
|
2524
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2512
2525
|
* @param {string} [search] Search query string to filter results. Supports field-specific filters like: \'enabled:true\', \'gfn_product_ids:<id>\', \'tag:\"tag name\"\', \'internal_tag:\"internal tag name\"\', \'includeArchived:false\', \'hasSearchPhrase:false\', \'inDataFeeds:true\', \'aiOptimised:true\', \'productType:<id>\', \'genderGroup:\"male,female,unisex\"\', \'hasBarcode:true\', \'onSale:true\', \'type:product,template,bundle\', \'collection:<id>\'. Multiple filters can be combined with spaces and commas.
|
|
2513
2526
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2514
|
-
* @param {
|
|
2527
|
+
* @param {string} [dateRangeStartDate] Start date for the date range filter (ISO 8601 format)
|
|
2528
|
+
* @param {string} [dateRangeEndDate] End date for the date range filter (ISO 8601 format)
|
|
2529
|
+
* @param {number} [minimumRevenue] Filter to only include products with total revenue greater than or equal to this amount
|
|
2530
|
+
* @param {number} [maximumRevenue] Filter to only include products with total revenue less than or equal to this amount
|
|
2531
|
+
* @param {number} [minimumSales] Filter to only include products with total sales greater than or equal to this number
|
|
2532
|
+
* @param {number} [maximumSales] Filter to only include products with total sales less than or equal to this number
|
|
2533
|
+
* @param {number} [minimumBasketPercent] Filter to only include products where the average basket percentage is greater than or equal to this value
|
|
2534
|
+
* @param {number} [maximumBasketPercent] Filter to only include products where the average basket percentage is less than or equal to this value
|
|
2535
|
+
* @param {number} [minimumTraffic] Filter to only include products with total traffic greater than or equal to this number
|
|
2536
|
+
* @param {number} [maximumTraffic] Filter to only include products with total traffic less than or equal to this number
|
|
2515
2537
|
* @param {*} [options] Override http request option.
|
|
2516
2538
|
* @throws {RequiredError}
|
|
2517
2539
|
*/
|
|
2518
|
-
listProductAnalytics: (project: string, pageToken?: number, search?: string, sortBy?: Array<string>,
|
|
2540
|
+
listProductAnalytics: (project: string, pageToken?: number, pageSize?: number, search?: string, sortBy?: Array<string>, dateRangeStartDate?: string, dateRangeEndDate?: string, minimumRevenue?: number, maximumRevenue?: number, minimumSales?: number, maximumSales?: number, minimumBasketPercent?: number, maximumBasketPercent?: number, minimumTraffic?: number, maximumTraffic?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2519
2541
|
};
|
|
2520
2542
|
/**
|
|
2521
2543
|
* ProductAnalyticsApi - functional programming interface
|
|
@@ -2525,22 +2547,44 @@ export declare const ProductAnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
2525
2547
|
* Exports all products with analytics data in a CSV file.
|
|
2526
2548
|
* @summary Export product analytics
|
|
2527
2549
|
* @param {string} project What project it is
|
|
2550
|
+
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2551
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like: \'enabled:true\', \'gfn_product_ids:<id>\', \'tag:\"tag name\"\', \'internal_tag:\"internal tag name\"\', \'includeArchived:false\', \'hasSearchPhrase:false\', \'inDataFeeds:true\', \'aiOptimised:true\', \'productType:<id>\', \'genderGroup:\"male,female,unisex\"\', \'hasBarcode:true\', \'onSale:true\', \'type:product,template,bundle\', \'collection:<id>\'. Multiple filters can be combined with spaces and commas.
|
|
2552
|
+
* @param {string} [dateRangeStartDate] Start date for the date range filter (ISO 8601 format)
|
|
2553
|
+
* @param {string} [dateRangeEndDate] End date for the date range filter (ISO 8601 format)
|
|
2554
|
+
* @param {number} [minimumRevenue] Filter to only include products with total revenue greater than or equal to this amount
|
|
2555
|
+
* @param {number} [maximumRevenue] Filter to only include products with total revenue less than or equal to this amount
|
|
2556
|
+
* @param {number} [minimumSales] Filter to only include products with total sales greater than or equal to this number
|
|
2557
|
+
* @param {number} [maximumSales] Filter to only include products with total sales less than or equal to this number
|
|
2558
|
+
* @param {number} [minimumBasketPercent] Filter to only include products where the average basket percentage is greater than or equal to this value
|
|
2559
|
+
* @param {number} [maximumBasketPercent] Filter to only include products where the average basket percentage is less than or equal to this value
|
|
2560
|
+
* @param {number} [minimumTraffic] Filter to only include products with total traffic greater than or equal to this number
|
|
2561
|
+
* @param {number} [maximumTraffic] Filter to only include products with total traffic less than or equal to this number
|
|
2528
2562
|
* @param {*} [options] Override http request option.
|
|
2529
2563
|
* @throws {RequiredError}
|
|
2530
2564
|
*/
|
|
2531
|
-
exportProductAnalytics(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
2565
|
+
exportProductAnalytics(project: string, sortBy?: Array<string>, search?: string, dateRangeStartDate?: string, dateRangeEndDate?: string, minimumRevenue?: number, maximumRevenue?: number, minimumSales?: number, maximumSales?: number, minimumBasketPercent?: number, maximumBasketPercent?: number, minimumTraffic?: number, maximumTraffic?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
2532
2566
|
/**
|
|
2533
2567
|
* Lists all product analytics items.
|
|
2534
2568
|
* @summary List product analytics
|
|
2535
2569
|
* @param {string} project What project it is
|
|
2536
2570
|
* @param {number} [pageToken] Page reference token
|
|
2571
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2537
2572
|
* @param {string} [search] Search query string to filter results. Supports field-specific filters like: \'enabled:true\', \'gfn_product_ids:<id>\', \'tag:\"tag name\"\', \'internal_tag:\"internal tag name\"\', \'includeArchived:false\', \'hasSearchPhrase:false\', \'inDataFeeds:true\', \'aiOptimised:true\', \'productType:<id>\', \'genderGroup:\"male,female,unisex\"\', \'hasBarcode:true\', \'onSale:true\', \'type:product,template,bundle\', \'collection:<id>\'. Multiple filters can be combined with spaces and commas.
|
|
2538
2573
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2539
|
-
* @param {
|
|
2574
|
+
* @param {string} [dateRangeStartDate] Start date for the date range filter (ISO 8601 format)
|
|
2575
|
+
* @param {string} [dateRangeEndDate] End date for the date range filter (ISO 8601 format)
|
|
2576
|
+
* @param {number} [minimumRevenue] Filter to only include products with total revenue greater than or equal to this amount
|
|
2577
|
+
* @param {number} [maximumRevenue] Filter to only include products with total revenue less than or equal to this amount
|
|
2578
|
+
* @param {number} [minimumSales] Filter to only include products with total sales greater than or equal to this number
|
|
2579
|
+
* @param {number} [maximumSales] Filter to only include products with total sales less than or equal to this number
|
|
2580
|
+
* @param {number} [minimumBasketPercent] Filter to only include products where the average basket percentage is greater than or equal to this value
|
|
2581
|
+
* @param {number} [maximumBasketPercent] Filter to only include products where the average basket percentage is less than or equal to this value
|
|
2582
|
+
* @param {number} [minimumTraffic] Filter to only include products with total traffic greater than or equal to this number
|
|
2583
|
+
* @param {number} [maximumTraffic] Filter to only include products with total traffic less than or equal to this number
|
|
2540
2584
|
* @param {*} [options] Override http request option.
|
|
2541
2585
|
* @throws {RequiredError}
|
|
2542
2586
|
*/
|
|
2543
|
-
listProductAnalytics(project: string, pageToken?: number, search?: string, sortBy?: Array<string>,
|
|
2587
|
+
listProductAnalytics(project: string, pageToken?: number, pageSize?: number, search?: string, sortBy?: Array<string>, dateRangeStartDate?: string, dateRangeEndDate?: string, minimumRevenue?: number, maximumRevenue?: number, minimumSales?: number, maximumSales?: number, minimumBasketPercent?: number, maximumBasketPercent?: number, minimumTraffic?: number, maximumTraffic?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductAnalyticsResponse>>;
|
|
2544
2588
|
};
|
|
2545
2589
|
/**
|
|
2546
2590
|
* ProductAnalyticsApi - factory interface
|
|
@@ -2571,6 +2615,54 @@ export interface ProductAnalyticsApiExportProductAnalyticsRequest {
|
|
|
2571
2615
|
* What project it is
|
|
2572
2616
|
*/
|
|
2573
2617
|
readonly project: string;
|
|
2618
|
+
/**
|
|
2619
|
+
* An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2620
|
+
*/
|
|
2621
|
+
readonly sortBy?: Array<string>;
|
|
2622
|
+
/**
|
|
2623
|
+
* Search query string to filter results. Supports field-specific filters like: \'enabled:true\', \'gfn_product_ids:<id>\', \'tag:\"tag name\"\', \'internal_tag:\"internal tag name\"\', \'includeArchived:false\', \'hasSearchPhrase:false\', \'inDataFeeds:true\', \'aiOptimised:true\', \'productType:<id>\', \'genderGroup:\"male,female,unisex\"\', \'hasBarcode:true\', \'onSale:true\', \'type:product,template,bundle\', \'collection:<id>\'. Multiple filters can be combined with spaces and commas.
|
|
2624
|
+
*/
|
|
2625
|
+
readonly search?: string;
|
|
2626
|
+
/**
|
|
2627
|
+
* Start date for the date range filter (ISO 8601 format)
|
|
2628
|
+
*/
|
|
2629
|
+
readonly dateRangeStartDate?: string;
|
|
2630
|
+
/**
|
|
2631
|
+
* End date for the date range filter (ISO 8601 format)
|
|
2632
|
+
*/
|
|
2633
|
+
readonly dateRangeEndDate?: string;
|
|
2634
|
+
/**
|
|
2635
|
+
* Filter to only include products with total revenue greater than or equal to this amount
|
|
2636
|
+
*/
|
|
2637
|
+
readonly minimumRevenue?: number;
|
|
2638
|
+
/**
|
|
2639
|
+
* Filter to only include products with total revenue less than or equal to this amount
|
|
2640
|
+
*/
|
|
2641
|
+
readonly maximumRevenue?: number;
|
|
2642
|
+
/**
|
|
2643
|
+
* Filter to only include products with total sales greater than or equal to this number
|
|
2644
|
+
*/
|
|
2645
|
+
readonly minimumSales?: number;
|
|
2646
|
+
/**
|
|
2647
|
+
* Filter to only include products with total sales less than or equal to this number
|
|
2648
|
+
*/
|
|
2649
|
+
readonly maximumSales?: number;
|
|
2650
|
+
/**
|
|
2651
|
+
* Filter to only include products where the average basket percentage is greater than or equal to this value
|
|
2652
|
+
*/
|
|
2653
|
+
readonly minimumBasketPercent?: number;
|
|
2654
|
+
/**
|
|
2655
|
+
* Filter to only include products where the average basket percentage is less than or equal to this value
|
|
2656
|
+
*/
|
|
2657
|
+
readonly maximumBasketPercent?: number;
|
|
2658
|
+
/**
|
|
2659
|
+
* Filter to only include products with total traffic greater than or equal to this number
|
|
2660
|
+
*/
|
|
2661
|
+
readonly minimumTraffic?: number;
|
|
2662
|
+
/**
|
|
2663
|
+
* Filter to only include products with total traffic less than or equal to this number
|
|
2664
|
+
*/
|
|
2665
|
+
readonly maximumTraffic?: number;
|
|
2574
2666
|
}
|
|
2575
2667
|
/**
|
|
2576
2668
|
* Request parameters for listProductAnalytics operation in ProductAnalyticsApi.
|
|
@@ -2584,6 +2676,10 @@ export interface ProductAnalyticsApiListProductAnalyticsRequest {
|
|
|
2584
2676
|
* Page reference token
|
|
2585
2677
|
*/
|
|
2586
2678
|
readonly pageToken?: number;
|
|
2679
|
+
/**
|
|
2680
|
+
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2681
|
+
*/
|
|
2682
|
+
readonly pageSize?: number;
|
|
2587
2683
|
/**
|
|
2588
2684
|
* Search query string to filter results. Supports field-specific filters like: \'enabled:true\', \'gfn_product_ids:<id>\', \'tag:\"tag name\"\', \'internal_tag:\"internal tag name\"\', \'includeArchived:false\', \'hasSearchPhrase:false\', \'inDataFeeds:true\', \'aiOptimised:true\', \'productType:<id>\', \'genderGroup:\"male,female,unisex\"\', \'hasBarcode:true\', \'onSale:true\', \'type:product,template,bundle\', \'collection:<id>\'. Multiple filters can be combined with spaces and commas.
|
|
2589
2685
|
*/
|
|
@@ -2593,9 +2689,45 @@ export interface ProductAnalyticsApiListProductAnalyticsRequest {
|
|
|
2593
2689
|
*/
|
|
2594
2690
|
readonly sortBy?: Array<string>;
|
|
2595
2691
|
/**
|
|
2596
|
-
*
|
|
2692
|
+
* Start date for the date range filter (ISO 8601 format)
|
|
2597
2693
|
*/
|
|
2598
|
-
readonly
|
|
2694
|
+
readonly dateRangeStartDate?: string;
|
|
2695
|
+
/**
|
|
2696
|
+
* End date for the date range filter (ISO 8601 format)
|
|
2697
|
+
*/
|
|
2698
|
+
readonly dateRangeEndDate?: string;
|
|
2699
|
+
/**
|
|
2700
|
+
* Filter to only include products with total revenue greater than or equal to this amount
|
|
2701
|
+
*/
|
|
2702
|
+
readonly minimumRevenue?: number;
|
|
2703
|
+
/**
|
|
2704
|
+
* Filter to only include products with total revenue less than or equal to this amount
|
|
2705
|
+
*/
|
|
2706
|
+
readonly maximumRevenue?: number;
|
|
2707
|
+
/**
|
|
2708
|
+
* Filter to only include products with total sales greater than or equal to this number
|
|
2709
|
+
*/
|
|
2710
|
+
readonly minimumSales?: number;
|
|
2711
|
+
/**
|
|
2712
|
+
* Filter to only include products with total sales less than or equal to this number
|
|
2713
|
+
*/
|
|
2714
|
+
readonly maximumSales?: number;
|
|
2715
|
+
/**
|
|
2716
|
+
* Filter to only include products where the average basket percentage is greater than or equal to this value
|
|
2717
|
+
*/
|
|
2718
|
+
readonly minimumBasketPercent?: number;
|
|
2719
|
+
/**
|
|
2720
|
+
* Filter to only include products where the average basket percentage is less than or equal to this value
|
|
2721
|
+
*/
|
|
2722
|
+
readonly maximumBasketPercent?: number;
|
|
2723
|
+
/**
|
|
2724
|
+
* Filter to only include products with total traffic greater than or equal to this number
|
|
2725
|
+
*/
|
|
2726
|
+
readonly minimumTraffic?: number;
|
|
2727
|
+
/**
|
|
2728
|
+
* Filter to only include products with total traffic less than or equal to this number
|
|
2729
|
+
*/
|
|
2730
|
+
readonly maximumTraffic?: number;
|
|
2599
2731
|
}
|
|
2600
2732
|
/**
|
|
2601
2733
|
* ProductAnalyticsApi - object-oriented interface
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.85.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -1118,10 +1118,22 @@ const ProductAnalyticsApiAxiosParamCreator = function (configuration) {
|
|
|
1118
1118
|
* Exports all products with analytics data in a CSV file.
|
|
1119
1119
|
* @summary Export product analytics
|
|
1120
1120
|
* @param {string} project What project it is
|
|
1121
|
+
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
1122
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like: \'enabled:true\', \'gfn_product_ids:<id>\', \'tag:\"tag name\"\', \'internal_tag:\"internal tag name\"\', \'includeArchived:false\', \'hasSearchPhrase:false\', \'inDataFeeds:true\', \'aiOptimised:true\', \'productType:<id>\', \'genderGroup:\"male,female,unisex\"\', \'hasBarcode:true\', \'onSale:true\', \'type:product,template,bundle\', \'collection:<id>\'. Multiple filters can be combined with spaces and commas.
|
|
1123
|
+
* @param {string} [dateRangeStartDate] Start date for the date range filter (ISO 8601 format)
|
|
1124
|
+
* @param {string} [dateRangeEndDate] End date for the date range filter (ISO 8601 format)
|
|
1125
|
+
* @param {number} [minimumRevenue] Filter to only include products with total revenue greater than or equal to this amount
|
|
1126
|
+
* @param {number} [maximumRevenue] Filter to only include products with total revenue less than or equal to this amount
|
|
1127
|
+
* @param {number} [minimumSales] Filter to only include products with total sales greater than or equal to this number
|
|
1128
|
+
* @param {number} [maximumSales] Filter to only include products with total sales less than or equal to this number
|
|
1129
|
+
* @param {number} [minimumBasketPercent] Filter to only include products where the average basket percentage is greater than or equal to this value
|
|
1130
|
+
* @param {number} [maximumBasketPercent] Filter to only include products where the average basket percentage is less than or equal to this value
|
|
1131
|
+
* @param {number} [minimumTraffic] Filter to only include products with total traffic greater than or equal to this number
|
|
1132
|
+
* @param {number} [maximumTraffic] Filter to only include products with total traffic less than or equal to this number
|
|
1121
1133
|
* @param {*} [options] Override http request option.
|
|
1122
1134
|
* @throws {RequiredError}
|
|
1123
1135
|
*/
|
|
1124
|
-
exportProductAnalytics: (project_1, ...args_1) => __awaiter(this, [project_1, ...args_1], void 0, function* (project, options = {}) {
|
|
1136
|
+
exportProductAnalytics: (project_1, sortBy_1, search_1, dateRangeStartDate_1, dateRangeEndDate_1, minimumRevenue_1, maximumRevenue_1, minimumSales_1, maximumSales_1, minimumBasketPercent_1, maximumBasketPercent_1, minimumTraffic_1, maximumTraffic_1, ...args_1) => __awaiter(this, [project_1, sortBy_1, search_1, dateRangeStartDate_1, dateRangeEndDate_1, minimumRevenue_1, maximumRevenue_1, minimumSales_1, maximumSales_1, minimumBasketPercent_1, maximumBasketPercent_1, minimumTraffic_1, maximumTraffic_1, ...args_1], void 0, function* (project, sortBy, search, dateRangeStartDate, dateRangeEndDate, minimumRevenue, maximumRevenue, minimumSales, maximumSales, minimumBasketPercent, maximumBasketPercent, minimumTraffic, maximumTraffic, options = {}) {
|
|
1125
1137
|
// verify required parameter 'project' is not null or undefined
|
|
1126
1138
|
(0, common_1.assertParamExists)('exportProductAnalytics', 'project', project);
|
|
1127
1139
|
const localVarPath = `/v1/catalog/analytics/export`;
|
|
@@ -1142,6 +1154,46 @@ const ProductAnalyticsApiAxiosParamCreator = function (configuration) {
|
|
|
1142
1154
|
if (project !== undefined) {
|
|
1143
1155
|
localVarQueryParameter['project'] = project;
|
|
1144
1156
|
}
|
|
1157
|
+
if (sortBy) {
|
|
1158
|
+
localVarQueryParameter['sortBy'] = sortBy;
|
|
1159
|
+
}
|
|
1160
|
+
if (search !== undefined) {
|
|
1161
|
+
localVarQueryParameter['search'] = search;
|
|
1162
|
+
}
|
|
1163
|
+
if (dateRangeStartDate !== undefined) {
|
|
1164
|
+
localVarQueryParameter['dateRangeStartDate'] = (dateRangeStartDate instanceof Date) ?
|
|
1165
|
+
dateRangeStartDate.toISOString() :
|
|
1166
|
+
dateRangeStartDate;
|
|
1167
|
+
}
|
|
1168
|
+
if (dateRangeEndDate !== undefined) {
|
|
1169
|
+
localVarQueryParameter['dateRangeEndDate'] = (dateRangeEndDate instanceof Date) ?
|
|
1170
|
+
dateRangeEndDate.toISOString() :
|
|
1171
|
+
dateRangeEndDate;
|
|
1172
|
+
}
|
|
1173
|
+
if (minimumRevenue !== undefined) {
|
|
1174
|
+
localVarQueryParameter['minimumRevenue'] = minimumRevenue;
|
|
1175
|
+
}
|
|
1176
|
+
if (maximumRevenue !== undefined) {
|
|
1177
|
+
localVarQueryParameter['maximumRevenue'] = maximumRevenue;
|
|
1178
|
+
}
|
|
1179
|
+
if (minimumSales !== undefined) {
|
|
1180
|
+
localVarQueryParameter['minimumSales'] = minimumSales;
|
|
1181
|
+
}
|
|
1182
|
+
if (maximumSales !== undefined) {
|
|
1183
|
+
localVarQueryParameter['maximumSales'] = maximumSales;
|
|
1184
|
+
}
|
|
1185
|
+
if (minimumBasketPercent !== undefined) {
|
|
1186
|
+
localVarQueryParameter['minimumBasketPercent'] = minimumBasketPercent;
|
|
1187
|
+
}
|
|
1188
|
+
if (maximumBasketPercent !== undefined) {
|
|
1189
|
+
localVarQueryParameter['maximumBasketPercent'] = maximumBasketPercent;
|
|
1190
|
+
}
|
|
1191
|
+
if (minimumTraffic !== undefined) {
|
|
1192
|
+
localVarQueryParameter['minimumTraffic'] = minimumTraffic;
|
|
1193
|
+
}
|
|
1194
|
+
if (maximumTraffic !== undefined) {
|
|
1195
|
+
localVarQueryParameter['maximumTraffic'] = maximumTraffic;
|
|
1196
|
+
}
|
|
1145
1197
|
localVarHeaderParameter['Accept'] = 'text/csv; charset=utf-8,application/json';
|
|
1146
1198
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
1147
1199
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -1156,13 +1208,23 @@ const ProductAnalyticsApiAxiosParamCreator = function (configuration) {
|
|
|
1156
1208
|
* @summary List product analytics
|
|
1157
1209
|
* @param {string} project What project it is
|
|
1158
1210
|
* @param {number} [pageToken] Page reference token
|
|
1211
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1159
1212
|
* @param {string} [search] Search query string to filter results. Supports field-specific filters like: \'enabled:true\', \'gfn_product_ids:<id>\', \'tag:\"tag name\"\', \'internal_tag:\"internal tag name\"\', \'includeArchived:false\', \'hasSearchPhrase:false\', \'inDataFeeds:true\', \'aiOptimised:true\', \'productType:<id>\', \'genderGroup:\"male,female,unisex\"\', \'hasBarcode:true\', \'onSale:true\', \'type:product,template,bundle\', \'collection:<id>\'. Multiple filters can be combined with spaces and commas.
|
|
1160
1213
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
1161
|
-
* @param {
|
|
1214
|
+
* @param {string} [dateRangeStartDate] Start date for the date range filter (ISO 8601 format)
|
|
1215
|
+
* @param {string} [dateRangeEndDate] End date for the date range filter (ISO 8601 format)
|
|
1216
|
+
* @param {number} [minimumRevenue] Filter to only include products with total revenue greater than or equal to this amount
|
|
1217
|
+
* @param {number} [maximumRevenue] Filter to only include products with total revenue less than or equal to this amount
|
|
1218
|
+
* @param {number} [minimumSales] Filter to only include products with total sales greater than or equal to this number
|
|
1219
|
+
* @param {number} [maximumSales] Filter to only include products with total sales less than or equal to this number
|
|
1220
|
+
* @param {number} [minimumBasketPercent] Filter to only include products where the average basket percentage is greater than or equal to this value
|
|
1221
|
+
* @param {number} [maximumBasketPercent] Filter to only include products where the average basket percentage is less than or equal to this value
|
|
1222
|
+
* @param {number} [minimumTraffic] Filter to only include products with total traffic greater than or equal to this number
|
|
1223
|
+
* @param {number} [maximumTraffic] Filter to only include products with total traffic less than or equal to this number
|
|
1162
1224
|
* @param {*} [options] Override http request option.
|
|
1163
1225
|
* @throws {RequiredError}
|
|
1164
1226
|
*/
|
|
1165
|
-
listProductAnalytics: (project_1, pageToken_1, search_1, sortBy_1,
|
|
1227
|
+
listProductAnalytics: (project_1, pageToken_1, pageSize_1, search_1, sortBy_1, dateRangeStartDate_1, dateRangeEndDate_1, minimumRevenue_1, maximumRevenue_1, minimumSales_1, maximumSales_1, minimumBasketPercent_1, maximumBasketPercent_1, minimumTraffic_1, maximumTraffic_1, ...args_1) => __awaiter(this, [project_1, pageToken_1, pageSize_1, search_1, sortBy_1, dateRangeStartDate_1, dateRangeEndDate_1, minimumRevenue_1, maximumRevenue_1, minimumSales_1, maximumSales_1, minimumBasketPercent_1, maximumBasketPercent_1, minimumTraffic_1, maximumTraffic_1, ...args_1], void 0, function* (project, pageToken, pageSize, search, sortBy, dateRangeStartDate, dateRangeEndDate, minimumRevenue, maximumRevenue, minimumSales, maximumSales, minimumBasketPercent, maximumBasketPercent, minimumTraffic, maximumTraffic, options = {}) {
|
|
1166
1228
|
// verify required parameter 'project' is not null or undefined
|
|
1167
1229
|
(0, common_1.assertParamExists)('listProductAnalytics', 'project', project);
|
|
1168
1230
|
const localVarPath = `/v1/catalog/analytics`;
|
|
@@ -1186,14 +1248,48 @@ const ProductAnalyticsApiAxiosParamCreator = function (configuration) {
|
|
|
1186
1248
|
if (pageToken !== undefined) {
|
|
1187
1249
|
localVarQueryParameter['pageToken'] = pageToken;
|
|
1188
1250
|
}
|
|
1251
|
+
if (pageSize !== undefined) {
|
|
1252
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
1253
|
+
}
|
|
1189
1254
|
if (search !== undefined) {
|
|
1190
1255
|
localVarQueryParameter['search'] = search;
|
|
1191
1256
|
}
|
|
1192
1257
|
if (sortBy) {
|
|
1193
1258
|
localVarQueryParameter['sortBy'] = sortBy;
|
|
1194
1259
|
}
|
|
1195
|
-
if (
|
|
1196
|
-
localVarQueryParameter['
|
|
1260
|
+
if (dateRangeStartDate !== undefined) {
|
|
1261
|
+
localVarQueryParameter['dateRangeStartDate'] = (dateRangeStartDate instanceof Date) ?
|
|
1262
|
+
dateRangeStartDate.toISOString() :
|
|
1263
|
+
dateRangeStartDate;
|
|
1264
|
+
}
|
|
1265
|
+
if (dateRangeEndDate !== undefined) {
|
|
1266
|
+
localVarQueryParameter['dateRangeEndDate'] = (dateRangeEndDate instanceof Date) ?
|
|
1267
|
+
dateRangeEndDate.toISOString() :
|
|
1268
|
+
dateRangeEndDate;
|
|
1269
|
+
}
|
|
1270
|
+
if (minimumRevenue !== undefined) {
|
|
1271
|
+
localVarQueryParameter['minimumRevenue'] = minimumRevenue;
|
|
1272
|
+
}
|
|
1273
|
+
if (maximumRevenue !== undefined) {
|
|
1274
|
+
localVarQueryParameter['maximumRevenue'] = maximumRevenue;
|
|
1275
|
+
}
|
|
1276
|
+
if (minimumSales !== undefined) {
|
|
1277
|
+
localVarQueryParameter['minimumSales'] = minimumSales;
|
|
1278
|
+
}
|
|
1279
|
+
if (maximumSales !== undefined) {
|
|
1280
|
+
localVarQueryParameter['maximumSales'] = maximumSales;
|
|
1281
|
+
}
|
|
1282
|
+
if (minimumBasketPercent !== undefined) {
|
|
1283
|
+
localVarQueryParameter['minimumBasketPercent'] = minimumBasketPercent;
|
|
1284
|
+
}
|
|
1285
|
+
if (maximumBasketPercent !== undefined) {
|
|
1286
|
+
localVarQueryParameter['maximumBasketPercent'] = maximumBasketPercent;
|
|
1287
|
+
}
|
|
1288
|
+
if (minimumTraffic !== undefined) {
|
|
1289
|
+
localVarQueryParameter['minimumTraffic'] = minimumTraffic;
|
|
1290
|
+
}
|
|
1291
|
+
if (maximumTraffic !== undefined) {
|
|
1292
|
+
localVarQueryParameter['maximumTraffic'] = maximumTraffic;
|
|
1197
1293
|
}
|
|
1198
1294
|
localVarHeaderParameter['Accept'] = 'application/json';
|
|
1199
1295
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
@@ -1217,13 +1313,25 @@ const ProductAnalyticsApiFp = function (configuration) {
|
|
|
1217
1313
|
* Exports all products with analytics data in a CSV file.
|
|
1218
1314
|
* @summary Export product analytics
|
|
1219
1315
|
* @param {string} project What project it is
|
|
1316
|
+
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
1317
|
+
* @param {string} [search] Search query string to filter results. Supports field-specific filters like: \'enabled:true\', \'gfn_product_ids:<id>\', \'tag:\"tag name\"\', \'internal_tag:\"internal tag name\"\', \'includeArchived:false\', \'hasSearchPhrase:false\', \'inDataFeeds:true\', \'aiOptimised:true\', \'productType:<id>\', \'genderGroup:\"male,female,unisex\"\', \'hasBarcode:true\', \'onSale:true\', \'type:product,template,bundle\', \'collection:<id>\'. Multiple filters can be combined with spaces and commas.
|
|
1318
|
+
* @param {string} [dateRangeStartDate] Start date for the date range filter (ISO 8601 format)
|
|
1319
|
+
* @param {string} [dateRangeEndDate] End date for the date range filter (ISO 8601 format)
|
|
1320
|
+
* @param {number} [minimumRevenue] Filter to only include products with total revenue greater than or equal to this amount
|
|
1321
|
+
* @param {number} [maximumRevenue] Filter to only include products with total revenue less than or equal to this amount
|
|
1322
|
+
* @param {number} [minimumSales] Filter to only include products with total sales greater than or equal to this number
|
|
1323
|
+
* @param {number} [maximumSales] Filter to only include products with total sales less than or equal to this number
|
|
1324
|
+
* @param {number} [minimumBasketPercent] Filter to only include products where the average basket percentage is greater than or equal to this value
|
|
1325
|
+
* @param {number} [maximumBasketPercent] Filter to only include products where the average basket percentage is less than or equal to this value
|
|
1326
|
+
* @param {number} [minimumTraffic] Filter to only include products with total traffic greater than or equal to this number
|
|
1327
|
+
* @param {number} [maximumTraffic] Filter to only include products with total traffic less than or equal to this number
|
|
1220
1328
|
* @param {*} [options] Override http request option.
|
|
1221
1329
|
* @throws {RequiredError}
|
|
1222
1330
|
*/
|
|
1223
|
-
exportProductAnalytics(project, options) {
|
|
1331
|
+
exportProductAnalytics(project, sortBy, search, dateRangeStartDate, dateRangeEndDate, minimumRevenue, maximumRevenue, minimumSales, maximumSales, minimumBasketPercent, maximumBasketPercent, minimumTraffic, maximumTraffic, options) {
|
|
1224
1332
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1225
1333
|
var _a, _b, _c;
|
|
1226
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.exportProductAnalytics(project, options);
|
|
1334
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.exportProductAnalytics(project, sortBy, search, dateRangeStartDate, dateRangeEndDate, minimumRevenue, maximumRevenue, minimumSales, maximumSales, minimumBasketPercent, maximumBasketPercent, minimumTraffic, maximumTraffic, options);
|
|
1227
1335
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1228
1336
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ProductAnalyticsApi.exportProductAnalytics']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1229
1337
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1234,16 +1342,26 @@ const ProductAnalyticsApiFp = function (configuration) {
|
|
|
1234
1342
|
* @summary List product analytics
|
|
1235
1343
|
* @param {string} project What project it is
|
|
1236
1344
|
* @param {number} [pageToken] Page reference token
|
|
1345
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1237
1346
|
* @param {string} [search] Search query string to filter results. Supports field-specific filters like: \'enabled:true\', \'gfn_product_ids:<id>\', \'tag:\"tag name\"\', \'internal_tag:\"internal tag name\"\', \'includeArchived:false\', \'hasSearchPhrase:false\', \'inDataFeeds:true\', \'aiOptimised:true\', \'productType:<id>\', \'genderGroup:\"male,female,unisex\"\', \'hasBarcode:true\', \'onSale:true\', \'type:product,template,bundle\', \'collection:<id>\'. Multiple filters can be combined with spaces and commas.
|
|
1238
1347
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
1239
|
-
* @param {
|
|
1348
|
+
* @param {string} [dateRangeStartDate] Start date for the date range filter (ISO 8601 format)
|
|
1349
|
+
* @param {string} [dateRangeEndDate] End date for the date range filter (ISO 8601 format)
|
|
1350
|
+
* @param {number} [minimumRevenue] Filter to only include products with total revenue greater than or equal to this amount
|
|
1351
|
+
* @param {number} [maximumRevenue] Filter to only include products with total revenue less than or equal to this amount
|
|
1352
|
+
* @param {number} [minimumSales] Filter to only include products with total sales greater than or equal to this number
|
|
1353
|
+
* @param {number} [maximumSales] Filter to only include products with total sales less than or equal to this number
|
|
1354
|
+
* @param {number} [minimumBasketPercent] Filter to only include products where the average basket percentage is greater than or equal to this value
|
|
1355
|
+
* @param {number} [maximumBasketPercent] Filter to only include products where the average basket percentage is less than or equal to this value
|
|
1356
|
+
* @param {number} [minimumTraffic] Filter to only include products with total traffic greater than or equal to this number
|
|
1357
|
+
* @param {number} [maximumTraffic] Filter to only include products with total traffic less than or equal to this number
|
|
1240
1358
|
* @param {*} [options] Override http request option.
|
|
1241
1359
|
* @throws {RequiredError}
|
|
1242
1360
|
*/
|
|
1243
|
-
listProductAnalytics(project, pageToken, search, sortBy,
|
|
1361
|
+
listProductAnalytics(project, pageToken, pageSize, search, sortBy, dateRangeStartDate, dateRangeEndDate, minimumRevenue, maximumRevenue, minimumSales, maximumSales, minimumBasketPercent, maximumBasketPercent, minimumTraffic, maximumTraffic, options) {
|
|
1244
1362
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1245
1363
|
var _a, _b, _c;
|
|
1246
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.listProductAnalytics(project, pageToken, search, sortBy,
|
|
1364
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.listProductAnalytics(project, pageToken, pageSize, search, sortBy, dateRangeStartDate, dateRangeEndDate, minimumRevenue, maximumRevenue, minimumSales, maximumSales, minimumBasketPercent, maximumBasketPercent, minimumTraffic, maximumTraffic, options);
|
|
1247
1365
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1248
1366
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ProductAnalyticsApi.listProductAnalytics']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1249
1367
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1266,7 +1384,7 @@ const ProductAnalyticsApiFactory = function (configuration, basePath, axios) {
|
|
|
1266
1384
|
* @throws {RequiredError}
|
|
1267
1385
|
*/
|
|
1268
1386
|
exportProductAnalytics(requestParameters, options) {
|
|
1269
|
-
return localVarFp.exportProductAnalytics(requestParameters.project, options).then((request) => request(axios, basePath));
|
|
1387
|
+
return localVarFp.exportProductAnalytics(requestParameters.project, requestParameters.sortBy, requestParameters.search, requestParameters.dateRangeStartDate, requestParameters.dateRangeEndDate, requestParameters.minimumRevenue, requestParameters.maximumRevenue, requestParameters.minimumSales, requestParameters.maximumSales, requestParameters.minimumBasketPercent, requestParameters.maximumBasketPercent, requestParameters.minimumTraffic, requestParameters.maximumTraffic, options).then((request) => request(axios, basePath));
|
|
1270
1388
|
},
|
|
1271
1389
|
/**
|
|
1272
1390
|
* Lists all product analytics items.
|
|
@@ -1276,7 +1394,7 @@ const ProductAnalyticsApiFactory = function (configuration, basePath, axios) {
|
|
|
1276
1394
|
* @throws {RequiredError}
|
|
1277
1395
|
*/
|
|
1278
1396
|
listProductAnalytics(requestParameters, options) {
|
|
1279
|
-
return localVarFp.listProductAnalytics(requestParameters.project, requestParameters.pageToken, requestParameters.search, requestParameters.sortBy, requestParameters.
|
|
1397
|
+
return localVarFp.listProductAnalytics(requestParameters.project, requestParameters.pageToken, requestParameters.pageSize, requestParameters.search, requestParameters.sortBy, requestParameters.dateRangeStartDate, requestParameters.dateRangeEndDate, requestParameters.minimumRevenue, requestParameters.maximumRevenue, requestParameters.minimumSales, requestParameters.maximumSales, requestParameters.minimumBasketPercent, requestParameters.maximumBasketPercent, requestParameters.minimumTraffic, requestParameters.maximumTraffic, options).then((request) => request(axios, basePath));
|
|
1280
1398
|
},
|
|
1281
1399
|
};
|
|
1282
1400
|
};
|
|
@@ -1293,7 +1411,7 @@ class ProductAnalyticsApi extends base_1.BaseAPI {
|
|
|
1293
1411
|
* @throws {RequiredError}
|
|
1294
1412
|
*/
|
|
1295
1413
|
exportProductAnalytics(requestParameters, options) {
|
|
1296
|
-
return (0, exports.ProductAnalyticsApiFp)(this.configuration).exportProductAnalytics(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
|
|
1414
|
+
return (0, exports.ProductAnalyticsApiFp)(this.configuration).exportProductAnalytics(requestParameters.project, requestParameters.sortBy, requestParameters.search, requestParameters.dateRangeStartDate, requestParameters.dateRangeEndDate, requestParameters.minimumRevenue, requestParameters.maximumRevenue, requestParameters.minimumSales, requestParameters.maximumSales, requestParameters.minimumBasketPercent, requestParameters.maximumBasketPercent, requestParameters.minimumTraffic, requestParameters.maximumTraffic, options).then((request) => request(this.axios, this.basePath));
|
|
1297
1415
|
}
|
|
1298
1416
|
/**
|
|
1299
1417
|
* Lists all product analytics items.
|
|
@@ -1303,7 +1421,7 @@ class ProductAnalyticsApi extends base_1.BaseAPI {
|
|
|
1303
1421
|
* @throws {RequiredError}
|
|
1304
1422
|
*/
|
|
1305
1423
|
listProductAnalytics(requestParameters, options) {
|
|
1306
|
-
return (0, exports.ProductAnalyticsApiFp)(this.configuration).listProductAnalytics(requestParameters.project, requestParameters.pageToken, requestParameters.search, requestParameters.sortBy, requestParameters.
|
|
1424
|
+
return (0, exports.ProductAnalyticsApiFp)(this.configuration).listProductAnalytics(requestParameters.project, requestParameters.pageToken, requestParameters.pageSize, requestParameters.search, requestParameters.sortBy, requestParameters.dateRangeStartDate, requestParameters.dateRangeEndDate, requestParameters.minimumRevenue, requestParameters.maximumRevenue, requestParameters.minimumSales, requestParameters.maximumSales, requestParameters.minimumBasketPercent, requestParameters.maximumBasketPercent, requestParameters.minimumTraffic, requestParameters.maximumTraffic, options).then((request) => request(this.axios, this.basePath));
|
|
1307
1425
|
}
|
|
1308
1426
|
}
|
|
1309
1427
|
exports.ProductAnalyticsApi = ProductAnalyticsApi;
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.85.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.85.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.85.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.85.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.85.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.85.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|