@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/dist/esm/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.84.0
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 \&#39;-\&#39; for descending order or \&#39;+\&#39; for ascending. Default is ascending.
2504
+ * @param {string} [search] Search query string to filter results. Supports field-specific filters like: \&#39;enabled:true\&#39;, \&#39;gfn_product_ids:&lt;id&gt;\&#39;, \&#39;tag:\&quot;tag name\&quot;\&#39;, \&#39;internal_tag:\&quot;internal tag name\&quot;\&#39;, \&#39;includeArchived:false\&#39;, \&#39;hasSearchPhrase:false\&#39;, \&#39;inDataFeeds:true\&#39;, \&#39;aiOptimised:true\&#39;, \&#39;productType:&lt;id&gt;\&#39;, \&#39;genderGroup:\&quot;male,female,unisex\&quot;\&#39;, \&#39;hasBarcode:true\&#39;, \&#39;onSale:true\&#39;, \&#39;type:product,template,bundle\&#39;, \&#39;collection:&lt;id&gt;\&#39;. 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: \&#39;enabled:true\&#39;, \&#39;gfn_product_ids:&lt;id&gt;\&#39;, \&#39;tag:\&quot;tag name\&quot;\&#39;, \&#39;internal_tag:\&quot;internal tag name\&quot;\&#39;, \&#39;includeArchived:false\&#39;, \&#39;hasSearchPhrase:false\&#39;, \&#39;inDataFeeds:true\&#39;, \&#39;aiOptimised:true\&#39;, \&#39;productType:&lt;id&gt;\&#39;, \&#39;genderGroup:\&quot;male,female,unisex\&quot;\&#39;, \&#39;hasBarcode:true\&#39;, \&#39;onSale:true\&#39;, \&#39;type:product,template,bundle\&#39;, \&#39;collection:&lt;id&gt;\&#39;. 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 \&#39;-\&#39; for descending order or \&#39;+\&#39; for ascending. Default is ascending.
2514
- * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
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>, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
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 \&#39;-\&#39; for descending order or \&#39;+\&#39; for ascending. Default is ascending.
2551
+ * @param {string} [search] Search query string to filter results. Supports field-specific filters like: \&#39;enabled:true\&#39;, \&#39;gfn_product_ids:&lt;id&gt;\&#39;, \&#39;tag:\&quot;tag name\&quot;\&#39;, \&#39;internal_tag:\&quot;internal tag name\&quot;\&#39;, \&#39;includeArchived:false\&#39;, \&#39;hasSearchPhrase:false\&#39;, \&#39;inDataFeeds:true\&#39;, \&#39;aiOptimised:true\&#39;, \&#39;productType:&lt;id&gt;\&#39;, \&#39;genderGroup:\&quot;male,female,unisex\&quot;\&#39;, \&#39;hasBarcode:true\&#39;, \&#39;onSale:true\&#39;, \&#39;type:product,template,bundle\&#39;, \&#39;collection:&lt;id&gt;\&#39;. 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: \&#39;enabled:true\&#39;, \&#39;gfn_product_ids:&lt;id&gt;\&#39;, \&#39;tag:\&quot;tag name\&quot;\&#39;, \&#39;internal_tag:\&quot;internal tag name\&quot;\&#39;, \&#39;includeArchived:false\&#39;, \&#39;hasSearchPhrase:false\&#39;, \&#39;inDataFeeds:true\&#39;, \&#39;aiOptimised:true\&#39;, \&#39;productType:&lt;id&gt;\&#39;, \&#39;genderGroup:\&quot;male,female,unisex\&quot;\&#39;, \&#39;hasBarcode:true\&#39;, \&#39;onSale:true\&#39;, \&#39;type:product,template,bundle\&#39;, \&#39;collection:&lt;id&gt;\&#39;. 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 \&#39;-\&#39; for descending order or \&#39;+\&#39; for ascending. Default is ascending.
2539
- * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
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>, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductAnalyticsResponse>>;
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 \&#39;-\&#39; for descending order or \&#39;+\&#39; for ascending. Default is ascending.
2620
+ */
2621
+ readonly sortBy?: Array<string>;
2622
+ /**
2623
+ * Search query string to filter results. Supports field-specific filters like: \&#39;enabled:true\&#39;, \&#39;gfn_product_ids:&lt;id&gt;\&#39;, \&#39;tag:\&quot;tag name\&quot;\&#39;, \&#39;internal_tag:\&quot;internal tag name\&quot;\&#39;, \&#39;includeArchived:false\&#39;, \&#39;hasSearchPhrase:false\&#39;, \&#39;inDataFeeds:true\&#39;, \&#39;aiOptimised:true\&#39;, \&#39;productType:&lt;id&gt;\&#39;, \&#39;genderGroup:\&quot;male,female,unisex\&quot;\&#39;, \&#39;hasBarcode:true\&#39;, \&#39;onSale:true\&#39;, \&#39;type:product,template,bundle\&#39;, \&#39;collection:&lt;id&gt;\&#39;. 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: \&#39;enabled:true\&#39;, \&#39;gfn_product_ids:&lt;id&gt;\&#39;, \&#39;tag:\&quot;tag name\&quot;\&#39;, \&#39;internal_tag:\&quot;internal tag name\&quot;\&#39;, \&#39;includeArchived:false\&#39;, \&#39;hasSearchPhrase:false\&#39;, \&#39;inDataFeeds:true\&#39;, \&#39;aiOptimised:true\&#39;, \&#39;productType:&lt;id&gt;\&#39;, \&#39;genderGroup:\&quot;male,female,unisex\&quot;\&#39;, \&#39;hasBarcode:true\&#39;, \&#39;onSale:true\&#39;, \&#39;type:product,template,bundle\&#39;, \&#39;collection:&lt;id&gt;\&#39;. 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
- * Max page size. This is the maximum page size that will be returned, but it might be smaller.
2692
+ * Start date for the date range filter (ISO 8601 format)
2597
2693
  */
2598
- readonly pageSize?: number;
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/esm/api.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.84.0
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).
@@ -1103,10 +1103,22 @@ export const ProductAnalyticsApiAxiosParamCreator = function (configuration) {
1103
1103
  * Exports all products with analytics data in a CSV file.
1104
1104
  * @summary Export product analytics
1105
1105
  * @param {string} project What project it is
1106
+ * @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \&#39;-\&#39; for descending order or \&#39;+\&#39; for ascending. Default is ascending.
1107
+ * @param {string} [search] Search query string to filter results. Supports field-specific filters like: \&#39;enabled:true\&#39;, \&#39;gfn_product_ids:&lt;id&gt;\&#39;, \&#39;tag:\&quot;tag name\&quot;\&#39;, \&#39;internal_tag:\&quot;internal tag name\&quot;\&#39;, \&#39;includeArchived:false\&#39;, \&#39;hasSearchPhrase:false\&#39;, \&#39;inDataFeeds:true\&#39;, \&#39;aiOptimised:true\&#39;, \&#39;productType:&lt;id&gt;\&#39;, \&#39;genderGroup:\&quot;male,female,unisex\&quot;\&#39;, \&#39;hasBarcode:true\&#39;, \&#39;onSale:true\&#39;, \&#39;type:product,template,bundle\&#39;, \&#39;collection:&lt;id&gt;\&#39;. Multiple filters can be combined with spaces and commas.
1108
+ * @param {string} [dateRangeStartDate] Start date for the date range filter (ISO 8601 format)
1109
+ * @param {string} [dateRangeEndDate] End date for the date range filter (ISO 8601 format)
1110
+ * @param {number} [minimumRevenue] Filter to only include products with total revenue greater than or equal to this amount
1111
+ * @param {number} [maximumRevenue] Filter to only include products with total revenue less than or equal to this amount
1112
+ * @param {number} [minimumSales] Filter to only include products with total sales greater than or equal to this number
1113
+ * @param {number} [maximumSales] Filter to only include products with total sales less than or equal to this number
1114
+ * @param {number} [minimumBasketPercent] Filter to only include products where the average basket percentage is greater than or equal to this value
1115
+ * @param {number} [maximumBasketPercent] Filter to only include products where the average basket percentage is less than or equal to this value
1116
+ * @param {number} [minimumTraffic] Filter to only include products with total traffic greater than or equal to this number
1117
+ * @param {number} [maximumTraffic] Filter to only include products with total traffic less than or equal to this number
1106
1118
  * @param {*} [options] Override http request option.
1107
1119
  * @throws {RequiredError}
1108
1120
  */
1109
- exportProductAnalytics: (project_1, ...args_1) => __awaiter(this, [project_1, ...args_1], void 0, function* (project, options = {}) {
1121
+ 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 = {}) {
1110
1122
  // verify required parameter 'project' is not null or undefined
1111
1123
  assertParamExists('exportProductAnalytics', 'project', project);
1112
1124
  const localVarPath = `/v1/catalog/analytics/export`;
@@ -1127,6 +1139,46 @@ export const ProductAnalyticsApiAxiosParamCreator = function (configuration) {
1127
1139
  if (project !== undefined) {
1128
1140
  localVarQueryParameter['project'] = project;
1129
1141
  }
1142
+ if (sortBy) {
1143
+ localVarQueryParameter['sortBy'] = sortBy;
1144
+ }
1145
+ if (search !== undefined) {
1146
+ localVarQueryParameter['search'] = search;
1147
+ }
1148
+ if (dateRangeStartDate !== undefined) {
1149
+ localVarQueryParameter['dateRangeStartDate'] = (dateRangeStartDate instanceof Date) ?
1150
+ dateRangeStartDate.toISOString() :
1151
+ dateRangeStartDate;
1152
+ }
1153
+ if (dateRangeEndDate !== undefined) {
1154
+ localVarQueryParameter['dateRangeEndDate'] = (dateRangeEndDate instanceof Date) ?
1155
+ dateRangeEndDate.toISOString() :
1156
+ dateRangeEndDate;
1157
+ }
1158
+ if (minimumRevenue !== undefined) {
1159
+ localVarQueryParameter['minimumRevenue'] = minimumRevenue;
1160
+ }
1161
+ if (maximumRevenue !== undefined) {
1162
+ localVarQueryParameter['maximumRevenue'] = maximumRevenue;
1163
+ }
1164
+ if (minimumSales !== undefined) {
1165
+ localVarQueryParameter['minimumSales'] = minimumSales;
1166
+ }
1167
+ if (maximumSales !== undefined) {
1168
+ localVarQueryParameter['maximumSales'] = maximumSales;
1169
+ }
1170
+ if (minimumBasketPercent !== undefined) {
1171
+ localVarQueryParameter['minimumBasketPercent'] = minimumBasketPercent;
1172
+ }
1173
+ if (maximumBasketPercent !== undefined) {
1174
+ localVarQueryParameter['maximumBasketPercent'] = maximumBasketPercent;
1175
+ }
1176
+ if (minimumTraffic !== undefined) {
1177
+ localVarQueryParameter['minimumTraffic'] = minimumTraffic;
1178
+ }
1179
+ if (maximumTraffic !== undefined) {
1180
+ localVarQueryParameter['maximumTraffic'] = maximumTraffic;
1181
+ }
1130
1182
  localVarHeaderParameter['Accept'] = 'text/csv; charset=utf-8,application/json';
1131
1183
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1132
1184
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -1141,13 +1193,23 @@ export const ProductAnalyticsApiAxiosParamCreator = function (configuration) {
1141
1193
  * @summary List product analytics
1142
1194
  * @param {string} project What project it is
1143
1195
  * @param {number} [pageToken] Page reference token
1196
+ * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
1144
1197
  * @param {string} [search] Search query string to filter results. Supports field-specific filters like: \&#39;enabled:true\&#39;, \&#39;gfn_product_ids:&lt;id&gt;\&#39;, \&#39;tag:\&quot;tag name\&quot;\&#39;, \&#39;internal_tag:\&quot;internal tag name\&quot;\&#39;, \&#39;includeArchived:false\&#39;, \&#39;hasSearchPhrase:false\&#39;, \&#39;inDataFeeds:true\&#39;, \&#39;aiOptimised:true\&#39;, \&#39;productType:&lt;id&gt;\&#39;, \&#39;genderGroup:\&quot;male,female,unisex\&quot;\&#39;, \&#39;hasBarcode:true\&#39;, \&#39;onSale:true\&#39;, \&#39;type:product,template,bundle\&#39;, \&#39;collection:&lt;id&gt;\&#39;. Multiple filters can be combined with spaces and commas.
1145
1198
  * @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \&#39;-\&#39; for descending order or \&#39;+\&#39; for ascending. Default is ascending.
1146
- * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
1199
+ * @param {string} [dateRangeStartDate] Start date for the date range filter (ISO 8601 format)
1200
+ * @param {string} [dateRangeEndDate] End date for the date range filter (ISO 8601 format)
1201
+ * @param {number} [minimumRevenue] Filter to only include products with total revenue greater than or equal to this amount
1202
+ * @param {number} [maximumRevenue] Filter to only include products with total revenue less than or equal to this amount
1203
+ * @param {number} [minimumSales] Filter to only include products with total sales greater than or equal to this number
1204
+ * @param {number} [maximumSales] Filter to only include products with total sales less than or equal to this number
1205
+ * @param {number} [minimumBasketPercent] Filter to only include products where the average basket percentage is greater than or equal to this value
1206
+ * @param {number} [maximumBasketPercent] Filter to only include products where the average basket percentage is less than or equal to this value
1207
+ * @param {number} [minimumTraffic] Filter to only include products with total traffic greater than or equal to this number
1208
+ * @param {number} [maximumTraffic] Filter to only include products with total traffic less than or equal to this number
1147
1209
  * @param {*} [options] Override http request option.
1148
1210
  * @throws {RequiredError}
1149
1211
  */
1150
- listProductAnalytics: (project_1, pageToken_1, search_1, sortBy_1, pageSize_1, ...args_1) => __awaiter(this, [project_1, pageToken_1, search_1, sortBy_1, pageSize_1, ...args_1], void 0, function* (project, pageToken, search, sortBy, pageSize, options = {}) {
1212
+ 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 = {}) {
1151
1213
  // verify required parameter 'project' is not null or undefined
1152
1214
  assertParamExists('listProductAnalytics', 'project', project);
1153
1215
  const localVarPath = `/v1/catalog/analytics`;
@@ -1171,14 +1233,48 @@ export const ProductAnalyticsApiAxiosParamCreator = function (configuration) {
1171
1233
  if (pageToken !== undefined) {
1172
1234
  localVarQueryParameter['pageToken'] = pageToken;
1173
1235
  }
1236
+ if (pageSize !== undefined) {
1237
+ localVarQueryParameter['pageSize'] = pageSize;
1238
+ }
1174
1239
  if (search !== undefined) {
1175
1240
  localVarQueryParameter['search'] = search;
1176
1241
  }
1177
1242
  if (sortBy) {
1178
1243
  localVarQueryParameter['sortBy'] = sortBy;
1179
1244
  }
1180
- if (pageSize !== undefined) {
1181
- localVarQueryParameter['pageSize'] = pageSize;
1245
+ if (dateRangeStartDate !== undefined) {
1246
+ localVarQueryParameter['dateRangeStartDate'] = (dateRangeStartDate instanceof Date) ?
1247
+ dateRangeStartDate.toISOString() :
1248
+ dateRangeStartDate;
1249
+ }
1250
+ if (dateRangeEndDate !== undefined) {
1251
+ localVarQueryParameter['dateRangeEndDate'] = (dateRangeEndDate instanceof Date) ?
1252
+ dateRangeEndDate.toISOString() :
1253
+ dateRangeEndDate;
1254
+ }
1255
+ if (minimumRevenue !== undefined) {
1256
+ localVarQueryParameter['minimumRevenue'] = minimumRevenue;
1257
+ }
1258
+ if (maximumRevenue !== undefined) {
1259
+ localVarQueryParameter['maximumRevenue'] = maximumRevenue;
1260
+ }
1261
+ if (minimumSales !== undefined) {
1262
+ localVarQueryParameter['minimumSales'] = minimumSales;
1263
+ }
1264
+ if (maximumSales !== undefined) {
1265
+ localVarQueryParameter['maximumSales'] = maximumSales;
1266
+ }
1267
+ if (minimumBasketPercent !== undefined) {
1268
+ localVarQueryParameter['minimumBasketPercent'] = minimumBasketPercent;
1269
+ }
1270
+ if (maximumBasketPercent !== undefined) {
1271
+ localVarQueryParameter['maximumBasketPercent'] = maximumBasketPercent;
1272
+ }
1273
+ if (minimumTraffic !== undefined) {
1274
+ localVarQueryParameter['minimumTraffic'] = minimumTraffic;
1275
+ }
1276
+ if (maximumTraffic !== undefined) {
1277
+ localVarQueryParameter['maximumTraffic'] = maximumTraffic;
1182
1278
  }
1183
1279
  localVarHeaderParameter['Accept'] = 'application/json';
1184
1280
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -1201,13 +1297,25 @@ export const ProductAnalyticsApiFp = function (configuration) {
1201
1297
  * Exports all products with analytics data in a CSV file.
1202
1298
  * @summary Export product analytics
1203
1299
  * @param {string} project What project it is
1300
+ * @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \&#39;-\&#39; for descending order or \&#39;+\&#39; for ascending. Default is ascending.
1301
+ * @param {string} [search] Search query string to filter results. Supports field-specific filters like: \&#39;enabled:true\&#39;, \&#39;gfn_product_ids:&lt;id&gt;\&#39;, \&#39;tag:\&quot;tag name\&quot;\&#39;, \&#39;internal_tag:\&quot;internal tag name\&quot;\&#39;, \&#39;includeArchived:false\&#39;, \&#39;hasSearchPhrase:false\&#39;, \&#39;inDataFeeds:true\&#39;, \&#39;aiOptimised:true\&#39;, \&#39;productType:&lt;id&gt;\&#39;, \&#39;genderGroup:\&quot;male,female,unisex\&quot;\&#39;, \&#39;hasBarcode:true\&#39;, \&#39;onSale:true\&#39;, \&#39;type:product,template,bundle\&#39;, \&#39;collection:&lt;id&gt;\&#39;. Multiple filters can be combined with spaces and commas.
1302
+ * @param {string} [dateRangeStartDate] Start date for the date range filter (ISO 8601 format)
1303
+ * @param {string} [dateRangeEndDate] End date for the date range filter (ISO 8601 format)
1304
+ * @param {number} [minimumRevenue] Filter to only include products with total revenue greater than or equal to this amount
1305
+ * @param {number} [maximumRevenue] Filter to only include products with total revenue less than or equal to this amount
1306
+ * @param {number} [minimumSales] Filter to only include products with total sales greater than or equal to this number
1307
+ * @param {number} [maximumSales] Filter to only include products with total sales less than or equal to this number
1308
+ * @param {number} [minimumBasketPercent] Filter to only include products where the average basket percentage is greater than or equal to this value
1309
+ * @param {number} [maximumBasketPercent] Filter to only include products where the average basket percentage is less than or equal to this value
1310
+ * @param {number} [minimumTraffic] Filter to only include products with total traffic greater than or equal to this number
1311
+ * @param {number} [maximumTraffic] Filter to only include products with total traffic less than or equal to this number
1204
1312
  * @param {*} [options] Override http request option.
1205
1313
  * @throws {RequiredError}
1206
1314
  */
1207
- exportProductAnalytics(project, options) {
1315
+ exportProductAnalytics(project, sortBy, search, dateRangeStartDate, dateRangeEndDate, minimumRevenue, maximumRevenue, minimumSales, maximumSales, minimumBasketPercent, maximumBasketPercent, minimumTraffic, maximumTraffic, options) {
1208
1316
  return __awaiter(this, void 0, void 0, function* () {
1209
1317
  var _a, _b, _c;
1210
- const localVarAxiosArgs = yield localVarAxiosParamCreator.exportProductAnalytics(project, options);
1318
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.exportProductAnalytics(project, sortBy, search, dateRangeStartDate, dateRangeEndDate, minimumRevenue, maximumRevenue, minimumSales, maximumSales, minimumBasketPercent, maximumBasketPercent, minimumTraffic, maximumTraffic, options);
1211
1319
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1212
1320
  const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ProductAnalyticsApi.exportProductAnalytics']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1213
1321
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1218,16 +1326,26 @@ export const ProductAnalyticsApiFp = function (configuration) {
1218
1326
  * @summary List product analytics
1219
1327
  * @param {string} project What project it is
1220
1328
  * @param {number} [pageToken] Page reference token
1329
+ * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
1221
1330
  * @param {string} [search] Search query string to filter results. Supports field-specific filters like: \&#39;enabled:true\&#39;, \&#39;gfn_product_ids:&lt;id&gt;\&#39;, \&#39;tag:\&quot;tag name\&quot;\&#39;, \&#39;internal_tag:\&quot;internal tag name\&quot;\&#39;, \&#39;includeArchived:false\&#39;, \&#39;hasSearchPhrase:false\&#39;, \&#39;inDataFeeds:true\&#39;, \&#39;aiOptimised:true\&#39;, \&#39;productType:&lt;id&gt;\&#39;, \&#39;genderGroup:\&quot;male,female,unisex\&quot;\&#39;, \&#39;hasBarcode:true\&#39;, \&#39;onSale:true\&#39;, \&#39;type:product,template,bundle\&#39;, \&#39;collection:&lt;id&gt;\&#39;. Multiple filters can be combined with spaces and commas.
1222
1331
  * @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \&#39;-\&#39; for descending order or \&#39;+\&#39; for ascending. Default is ascending.
1223
- * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
1332
+ * @param {string} [dateRangeStartDate] Start date for the date range filter (ISO 8601 format)
1333
+ * @param {string} [dateRangeEndDate] End date for the date range filter (ISO 8601 format)
1334
+ * @param {number} [minimumRevenue] Filter to only include products with total revenue greater than or equal to this amount
1335
+ * @param {number} [maximumRevenue] Filter to only include products with total revenue less than or equal to this amount
1336
+ * @param {number} [minimumSales] Filter to only include products with total sales greater than or equal to this number
1337
+ * @param {number} [maximumSales] Filter to only include products with total sales less than or equal to this number
1338
+ * @param {number} [minimumBasketPercent] Filter to only include products where the average basket percentage is greater than or equal to this value
1339
+ * @param {number} [maximumBasketPercent] Filter to only include products where the average basket percentage is less than or equal to this value
1340
+ * @param {number} [minimumTraffic] Filter to only include products with total traffic greater than or equal to this number
1341
+ * @param {number} [maximumTraffic] Filter to only include products with total traffic less than or equal to this number
1224
1342
  * @param {*} [options] Override http request option.
1225
1343
  * @throws {RequiredError}
1226
1344
  */
1227
- listProductAnalytics(project, pageToken, search, sortBy, pageSize, options) {
1345
+ listProductAnalytics(project, pageToken, pageSize, search, sortBy, dateRangeStartDate, dateRangeEndDate, minimumRevenue, maximumRevenue, minimumSales, maximumSales, minimumBasketPercent, maximumBasketPercent, minimumTraffic, maximumTraffic, options) {
1228
1346
  return __awaiter(this, void 0, void 0, function* () {
1229
1347
  var _a, _b, _c;
1230
- const localVarAxiosArgs = yield localVarAxiosParamCreator.listProductAnalytics(project, pageToken, search, sortBy, pageSize, options);
1348
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.listProductAnalytics(project, pageToken, pageSize, search, sortBy, dateRangeStartDate, dateRangeEndDate, minimumRevenue, maximumRevenue, minimumSales, maximumSales, minimumBasketPercent, maximumBasketPercent, minimumTraffic, maximumTraffic, options);
1231
1349
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
1232
1350
  const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ProductAnalyticsApi.listProductAnalytics']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
1233
1351
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1249,7 +1367,7 @@ export const ProductAnalyticsApiFactory = function (configuration, basePath, axi
1249
1367
  * @throws {RequiredError}
1250
1368
  */
1251
1369
  exportProductAnalytics(requestParameters, options) {
1252
- return localVarFp.exportProductAnalytics(requestParameters.project, options).then((request) => request(axios, basePath));
1370
+ 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));
1253
1371
  },
1254
1372
  /**
1255
1373
  * Lists all product analytics items.
@@ -1259,7 +1377,7 @@ export const ProductAnalyticsApiFactory = function (configuration, basePath, axi
1259
1377
  * @throws {RequiredError}
1260
1378
  */
1261
1379
  listProductAnalytics(requestParameters, options) {
1262
- return localVarFp.listProductAnalytics(requestParameters.project, requestParameters.pageToken, requestParameters.search, requestParameters.sortBy, requestParameters.pageSize, options).then((request) => request(axios, basePath));
1380
+ 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));
1263
1381
  },
1264
1382
  };
1265
1383
  };
@@ -1275,7 +1393,7 @@ export class ProductAnalyticsApi extends BaseAPI {
1275
1393
  * @throws {RequiredError}
1276
1394
  */
1277
1395
  exportProductAnalytics(requestParameters, options) {
1278
- return ProductAnalyticsApiFp(this.configuration).exportProductAnalytics(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
1396
+ return 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));
1279
1397
  }
1280
1398
  /**
1281
1399
  * Lists all product analytics items.
@@ -1285,7 +1403,7 @@ export class ProductAnalyticsApi extends BaseAPI {
1285
1403
  * @throws {RequiredError}
1286
1404
  */
1287
1405
  listProductAnalytics(requestParameters, options) {
1288
- return ProductAnalyticsApiFp(this.configuration).listProductAnalytics(requestParameters.project, requestParameters.pageToken, requestParameters.search, requestParameters.sortBy, requestParameters.pageSize, options).then((request) => request(this.axios, this.basePath));
1406
+ return 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));
1289
1407
  }
1290
1408
  }
1291
1409
  /**
@@ -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.84.0
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/esm/base.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.84.0
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).
@@ -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.84.0
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).
@@ -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.84.0
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).
@@ -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.84.0
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).
@@ -3,7 +3,7 @@
3
3
  * Product Catalog API
4
4
  * 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.
5
5
  *
6
- * The version of the OpenAPI document: 1.84.0
6
+ * The version of the OpenAPI document: 1.85.0
7
7
  *
8
8
  *
9
9
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -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.84.0
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/esm/index.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.84.0
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).
package/dist/index.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.84.0
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/index.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.84.0
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).