@teemill/product-catalog 1.90.2 → 1.92.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/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Product Catalog
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 product from the GFN Catalog, plus listing information such as title, description and tags.
7
7
  *
8
- * The version of the OpenAPI document: 1.90.2
8
+ * The version of the OpenAPI document: 1.92.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2123,10 +2123,24 @@ const ProductsApiAxiosParamCreator = function (configuration) {
2123
2123
  * @param {number} [minRetailPrice] Specify the minimum retail price to filter by. Products will be included so long as either at least one variant or the product itself (in the case of bundles) has a retail price greater than or equal to the specified value.
2124
2124
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
2125
2125
  * @param {string} [fields] Filter response fields to only include a subset of the resource.
2126
+ * @param {string} [dateRangeStartDate] Start date for the date range filter (ISO 8601 format)
2127
+ * @param {string} [dateRangeEndDate] End date for the date range filter (ISO 8601 format)
2128
+ * @param {number} [minimumRevenue] Filter to only include products with total revenue greater than or equal to this amount
2129
+ * @param {number} [maximumRevenue] Filter to only include products with total revenue less than or equal to this amount
2130
+ * @param {number} [minimumSales] Filter to only include products with total sales greater than or equal to this number
2131
+ * @param {number} [maximumSales] Filter to only include products with total sales less than or equal to this number
2132
+ * @param {number} [minimumBasketPercent] Filter to only include products where the average basket percentage is greater than or equal to this value
2133
+ * @param {number} [maximumBasketPercent] Filter to only include products where the average basket percentage is less than or equal to this value
2134
+ * @param {number} [minimumTraffic] Filter to only include products with total traffic greater than or equal to this number
2135
+ * @param {number} [maximumTraffic] Filter to only include products with total traffic less than or equal to this number
2136
+ * @param {string} [createdBefore] Filter to only include products created before the given date
2137
+ * @param {string} [createdAfter] Filter to only include products created after the given date
2138
+ * @param {string} [updatedBefore] Filter to only include products updated before the given date
2139
+ * @param {string} [updatedAfter] Filter to only include products updated after the given date
2126
2140
  * @param {*} [options] Override http request option.
2127
2141
  * @throws {RequiredError}
2128
2142
  */
2129
- listProducts: (project_1, pageToken_1, search_1, sortBy_1, start_1, end_1, dateFilterType_1, maxRetailPrice_1, minRetailPrice_1, pageSize_1, fields_1, ...args_1) => __awaiter(this, [project_1, pageToken_1, search_1, sortBy_1, start_1, end_1, dateFilterType_1, maxRetailPrice_1, minRetailPrice_1, pageSize_1, fields_1, ...args_1], void 0, function* (project, pageToken, search, sortBy, start, end, dateFilterType, maxRetailPrice, minRetailPrice, pageSize, fields, options = {}) {
2143
+ listProducts: (project_1, pageToken_1, search_1, sortBy_1, start_1, end_1, dateFilterType_1, maxRetailPrice_1, minRetailPrice_1, pageSize_1, fields_1, dateRangeStartDate_1, dateRangeEndDate_1, minimumRevenue_1, maximumRevenue_1, minimumSales_1, maximumSales_1, minimumBasketPercent_1, maximumBasketPercent_1, minimumTraffic_1, maximumTraffic_1, createdBefore_1, createdAfter_1, updatedBefore_1, updatedAfter_1, ...args_1) => __awaiter(this, [project_1, pageToken_1, search_1, sortBy_1, start_1, end_1, dateFilterType_1, maxRetailPrice_1, minRetailPrice_1, pageSize_1, fields_1, dateRangeStartDate_1, dateRangeEndDate_1, minimumRevenue_1, maximumRevenue_1, minimumSales_1, maximumSales_1, minimumBasketPercent_1, maximumBasketPercent_1, minimumTraffic_1, maximumTraffic_1, createdBefore_1, createdAfter_1, updatedBefore_1, updatedAfter_1, ...args_1], void 0, function* (project, pageToken, search, sortBy, start, end, dateFilterType, maxRetailPrice, minRetailPrice, pageSize, fields, dateRangeStartDate, dateRangeEndDate, minimumRevenue, maximumRevenue, minimumSales, maximumSales, minimumBasketPercent, maximumBasketPercent, minimumTraffic, maximumTraffic, createdBefore, createdAfter, updatedBefore, updatedAfter, options = {}) {
2130
2144
  // verify required parameter 'project' is not null or undefined
2131
2145
  (0, common_1.assertParamExists)('listProducts', 'project', project);
2132
2146
  const localVarPath = `/v1/catalog/products`;
@@ -2181,6 +2195,60 @@ const ProductsApiAxiosParamCreator = function (configuration) {
2181
2195
  if (fields !== undefined) {
2182
2196
  localVarQueryParameter['fields'] = fields;
2183
2197
  }
2198
+ if (dateRangeStartDate !== undefined) {
2199
+ localVarQueryParameter['dateRangeStartDate'] = (dateRangeStartDate instanceof Date) ?
2200
+ dateRangeStartDate.toISOString() :
2201
+ dateRangeStartDate;
2202
+ }
2203
+ if (dateRangeEndDate !== undefined) {
2204
+ localVarQueryParameter['dateRangeEndDate'] = (dateRangeEndDate instanceof Date) ?
2205
+ dateRangeEndDate.toISOString() :
2206
+ dateRangeEndDate;
2207
+ }
2208
+ if (minimumRevenue !== undefined) {
2209
+ localVarQueryParameter['minimumRevenue'] = minimumRevenue;
2210
+ }
2211
+ if (maximumRevenue !== undefined) {
2212
+ localVarQueryParameter['maximumRevenue'] = maximumRevenue;
2213
+ }
2214
+ if (minimumSales !== undefined) {
2215
+ localVarQueryParameter['minimumSales'] = minimumSales;
2216
+ }
2217
+ if (maximumSales !== undefined) {
2218
+ localVarQueryParameter['maximumSales'] = maximumSales;
2219
+ }
2220
+ if (minimumBasketPercent !== undefined) {
2221
+ localVarQueryParameter['minimumBasketPercent'] = minimumBasketPercent;
2222
+ }
2223
+ if (maximumBasketPercent !== undefined) {
2224
+ localVarQueryParameter['maximumBasketPercent'] = maximumBasketPercent;
2225
+ }
2226
+ if (minimumTraffic !== undefined) {
2227
+ localVarQueryParameter['minimumTraffic'] = minimumTraffic;
2228
+ }
2229
+ if (maximumTraffic !== undefined) {
2230
+ localVarQueryParameter['maximumTraffic'] = maximumTraffic;
2231
+ }
2232
+ if (createdBefore !== undefined) {
2233
+ localVarQueryParameter['createdBefore'] = (createdBefore instanceof Date) ?
2234
+ createdBefore.toISOString() :
2235
+ createdBefore;
2236
+ }
2237
+ if (createdAfter !== undefined) {
2238
+ localVarQueryParameter['createdAfter'] = (createdAfter instanceof Date) ?
2239
+ createdAfter.toISOString() :
2240
+ createdAfter;
2241
+ }
2242
+ if (updatedBefore !== undefined) {
2243
+ localVarQueryParameter['updatedBefore'] = (updatedBefore instanceof Date) ?
2244
+ updatedBefore.toISOString() :
2245
+ updatedBefore;
2246
+ }
2247
+ if (updatedAfter !== undefined) {
2248
+ localVarQueryParameter['updatedAfter'] = (updatedAfter instanceof Date) ?
2249
+ updatedAfter.toISOString() :
2250
+ updatedAfter;
2251
+ }
2184
2252
  localVarHeaderParameter['Accept'] = 'application/json';
2185
2253
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
2186
2254
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -2464,13 +2532,27 @@ const ProductsApiFp = function (configuration) {
2464
2532
  * @param {number} [minRetailPrice] Specify the minimum retail price to filter by. Products will be included so long as either at least one variant or the product itself (in the case of bundles) has a retail price greater than or equal to the specified value.
2465
2533
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
2466
2534
  * @param {string} [fields] Filter response fields to only include a subset of the resource.
2535
+ * @param {string} [dateRangeStartDate] Start date for the date range filter (ISO 8601 format)
2536
+ * @param {string} [dateRangeEndDate] End date for the date range filter (ISO 8601 format)
2537
+ * @param {number} [minimumRevenue] Filter to only include products with total revenue greater than or equal to this amount
2538
+ * @param {number} [maximumRevenue] Filter to only include products with total revenue less than or equal to this amount
2539
+ * @param {number} [minimumSales] Filter to only include products with total sales greater than or equal to this number
2540
+ * @param {number} [maximumSales] Filter to only include products with total sales less than or equal to this number
2541
+ * @param {number} [minimumBasketPercent] Filter to only include products where the average basket percentage is greater than or equal to this value
2542
+ * @param {number} [maximumBasketPercent] Filter to only include products where the average basket percentage is less than or equal to this value
2543
+ * @param {number} [minimumTraffic] Filter to only include products with total traffic greater than or equal to this number
2544
+ * @param {number} [maximumTraffic] Filter to only include products with total traffic less than or equal to this number
2545
+ * @param {string} [createdBefore] Filter to only include products created before the given date
2546
+ * @param {string} [createdAfter] Filter to only include products created after the given date
2547
+ * @param {string} [updatedBefore] Filter to only include products updated before the given date
2548
+ * @param {string} [updatedAfter] Filter to only include products updated after the given date
2467
2549
  * @param {*} [options] Override http request option.
2468
2550
  * @throws {RequiredError}
2469
2551
  */
2470
- listProducts(project, pageToken, search, sortBy, start, end, dateFilterType, maxRetailPrice, minRetailPrice, pageSize, fields, options) {
2552
+ listProducts(project, pageToken, search, sortBy, start, end, dateFilterType, maxRetailPrice, minRetailPrice, pageSize, fields, dateRangeStartDate, dateRangeEndDate, minimumRevenue, maximumRevenue, minimumSales, maximumSales, minimumBasketPercent, maximumBasketPercent, minimumTraffic, maximumTraffic, createdBefore, createdAfter, updatedBefore, updatedAfter, options) {
2471
2553
  return __awaiter(this, void 0, void 0, function* () {
2472
2554
  var _a, _b, _c;
2473
- const localVarAxiosArgs = yield localVarAxiosParamCreator.listProducts(project, pageToken, search, sortBy, start, end, dateFilterType, maxRetailPrice, minRetailPrice, pageSize, fields, options);
2555
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.listProducts(project, pageToken, search, sortBy, start, end, dateFilterType, maxRetailPrice, minRetailPrice, pageSize, fields, dateRangeStartDate, dateRangeEndDate, minimumRevenue, maximumRevenue, minimumSales, maximumSales, minimumBasketPercent, maximumBasketPercent, minimumTraffic, maximumTraffic, createdBefore, createdAfter, updatedBefore, updatedAfter, options);
2474
2556
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
2475
2557
  const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ProductsApi.listProducts']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
2476
2558
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -2615,7 +2697,7 @@ const ProductsApiFactory = function (configuration, basePath, axios) {
2615
2697
  * @throws {RequiredError}
2616
2698
  */
2617
2699
  listProducts(requestParameters, options) {
2618
- return localVarFp.listProducts(requestParameters.project, requestParameters.pageToken, requestParameters.search, requestParameters.sortBy, requestParameters.start, requestParameters.end, requestParameters.dateFilterType, requestParameters.maxRetailPrice, requestParameters.minRetailPrice, requestParameters.pageSize, requestParameters.fields, options).then((request) => request(axios, basePath));
2700
+ return localVarFp.listProducts(requestParameters.project, requestParameters.pageToken, requestParameters.search, requestParameters.sortBy, requestParameters.start, requestParameters.end, requestParameters.dateFilterType, requestParameters.maxRetailPrice, requestParameters.minRetailPrice, requestParameters.pageSize, requestParameters.fields, requestParameters.dateRangeStartDate, requestParameters.dateRangeEndDate, requestParameters.minimumRevenue, requestParameters.maximumRevenue, requestParameters.minimumSales, requestParameters.maximumSales, requestParameters.minimumBasketPercent, requestParameters.maximumBasketPercent, requestParameters.minimumTraffic, requestParameters.maximumTraffic, requestParameters.createdBefore, requestParameters.createdAfter, requestParameters.updatedBefore, requestParameters.updatedAfter, options).then((request) => request(axios, basePath));
2619
2701
  },
2620
2702
  /**
2621
2703
  * AI SEO optimises products by a set of given IDs.
@@ -2732,7 +2814,7 @@ class ProductsApi extends base_1.BaseAPI {
2732
2814
  * @throws {RequiredError}
2733
2815
  */
2734
2816
  listProducts(requestParameters, options) {
2735
- return (0, exports.ProductsApiFp)(this.configuration).listProducts(requestParameters.project, requestParameters.pageToken, requestParameters.search, requestParameters.sortBy, requestParameters.start, requestParameters.end, requestParameters.dateFilterType, requestParameters.maxRetailPrice, requestParameters.minRetailPrice, requestParameters.pageSize, requestParameters.fields, options).then((request) => request(this.axios, this.basePath));
2817
+ return (0, exports.ProductsApiFp)(this.configuration).listProducts(requestParameters.project, requestParameters.pageToken, requestParameters.search, requestParameters.sortBy, requestParameters.start, requestParameters.end, requestParameters.dateFilterType, requestParameters.maxRetailPrice, requestParameters.minRetailPrice, requestParameters.pageSize, requestParameters.fields, requestParameters.dateRangeStartDate, requestParameters.dateRangeEndDate, requestParameters.minimumRevenue, requestParameters.maximumRevenue, requestParameters.minimumSales, requestParameters.maximumSales, requestParameters.minimumBasketPercent, requestParameters.maximumBasketPercent, requestParameters.minimumTraffic, requestParameters.maximumTraffic, requestParameters.createdBefore, requestParameters.createdAfter, requestParameters.updatedBefore, requestParameters.updatedAfter, options).then((request) => request(this.axios, this.basePath));
2736
2818
  }
2737
2819
  /**
2738
2820
  * AI SEO optimises products by a set of given IDs.
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Product Catalog
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 product from the GFN Catalog, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.90.2
5
+ * The version of the OpenAPI document: 1.92.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
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 product from the GFN Catalog, plus listing information such as title, description and tags.
7
7
  *
8
- * The version of the OpenAPI document: 1.90.2
8
+ * The version of the OpenAPI document: 1.92.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
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 product from the GFN Catalog, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.90.2
5
+ * The version of the OpenAPI document: 1.92.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
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 product from the GFN Catalog, plus listing information such as title, description and tags.
7
7
  *
8
- * The version of the OpenAPI document: 1.90.2
8
+ * The version of the OpenAPI document: 1.92.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Product Catalog
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 product from the GFN Catalog, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.90.2
5
+ * The version of the OpenAPI document: 1.92.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
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 product from the GFN Catalog, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.90.2
7
+ * The version of the OpenAPI document: 1.92.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Product Catalog
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 product from the GFN Catalog, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.90.2
5
+ * The version of the OpenAPI document: 1.92.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -858,6 +858,10 @@ export interface CreateProduct {
858
858
  * For use with the Shopify integration. Use this to provide a Shopify product ID to link to an existing Shopify product rather than creating a new one.
859
859
  */
860
860
  'shopifyId'?: number | null;
861
+ /**
862
+ * An exclusive list of collection IDs to assign to the product. Replaces all existing static collection memberships. Requires the website integration.
863
+ */
864
+ 'collections'?: Array<UpdateProductsRequestProductsInnerCollectionsInner>;
861
865
  /**
862
866
  * Key/value pairs that can be used to store additional information about the product
863
867
  */
@@ -1199,6 +1203,11 @@ export interface Product {
1199
1203
  * Whether the product is digital
1200
1204
  */
1201
1205
  'isDigital'?: boolean;
1206
+ 'analytics'?: ProductAnalytics;
1207
+ /**
1208
+ * The static (non-dynamic/filter-based) collections this product belongs to.
1209
+ */
1210
+ 'staticCollections'?: Array<ProductStaticCollectionsInner>;
1202
1211
  }
1203
1212
  export interface ProductAdditionalFilesInner {
1204
1213
  /**
@@ -1210,6 +1219,31 @@ export interface ProductAdditionalFilesInner {
1210
1219
  */
1211
1220
  'src'?: string;
1212
1221
  }
1222
+ /**
1223
+ * Product analytics metrics. Only present when \'analytics\' is included in the fields query parameter.
1224
+ */
1225
+ export interface ProductAnalytics {
1226
+ /**
1227
+ * Total revenue for this product within the date range
1228
+ */
1229
+ 'revenue'?: number;
1230
+ /**
1231
+ * Total number of sales for this product within the date range
1232
+ */
1233
+ 'sales'?: number;
1234
+ /**
1235
+ * Total page views for this product within the date range
1236
+ */
1237
+ 'traffic'?: number;
1238
+ /**
1239
+ * Conversion rate as a percentage (sales / traffic * 100)
1240
+ */
1241
+ 'conversionRate'?: number;
1242
+ /**
1243
+ * Basket rate as a percentage (cart adds / traffic * 100)
1244
+ */
1245
+ 'basketRate'?: number;
1246
+ }
1213
1247
  export interface ProductAnalyticsResponse {
1214
1248
  'analytics'?: Array<AnalyticsItem>;
1215
1249
  }
@@ -1332,6 +1366,10 @@ export interface ProductGfnProduct {
1332
1366
  */
1333
1367
  'metafields'?: Array<MetaField>;
1334
1368
  }
1369
+ export interface ProductStaticCollectionsInner {
1370
+ 'id'?: string;
1371
+ 'title'?: string;
1372
+ }
1335
1373
  export interface ProductType {
1336
1374
  /**
1337
1375
  * Unique object identifier
@@ -1741,6 +1779,10 @@ export interface UpdateProductRequest {
1741
1779
  * Whether to show a sale badge on the product
1742
1780
  */
1743
1781
  'showSaleBadge'?: boolean;
1782
+ /**
1783
+ * An exclusive list of collection IDs to assign to the product. Replaces all existing static collection memberships. Requires the website integration.
1784
+ */
1785
+ 'collections'?: Array<UpdateProductsRequestProductsInnerCollectionsInner>;
1744
1786
  }
1745
1787
  export interface UpdateProductRequestBundleItemsInner {
1746
1788
  /**
@@ -1823,8 +1865,15 @@ export interface UpdateProductsRequestProductsInner {
1823
1865
  * Whether to show a sale badge on the product
1824
1866
  */
1825
1867
  'showSaleBadge'?: boolean;
1868
+ /**
1869
+ * An exclusive list of collection IDs to assign to the product. Replaces all existing static collection memberships. Requires the website integration.
1870
+ */
1871
+ 'collections'?: Array<UpdateProductsRequestProductsInnerCollectionsInner>;
1826
1872
  'license'?: UpdateProductsRequestProductsInnerLicense;
1827
1873
  }
1874
+ export interface UpdateProductsRequestProductsInnerCollectionsInner {
1875
+ 'id': string;
1876
+ }
1828
1877
  export interface UpdateProductsRequestProductsInnerIntegrationConnectionsInner {
1829
1878
  'integrationCode': string;
1830
1879
  /**
@@ -3277,10 +3326,24 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
3277
3326
  * @param {number} [minRetailPrice] Specify the minimum retail price to filter by. Products will be included so long as either at least one variant or the product itself (in the case of bundles) has a retail price greater than or equal to the specified value.
3278
3327
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
3279
3328
  * @param {string} [fields] Filter response fields to only include a subset of the resource.
3329
+ * @param {string} [dateRangeStartDate] Start date for the date range filter (ISO 8601 format)
3330
+ * @param {string} [dateRangeEndDate] End date for the date range filter (ISO 8601 format)
3331
+ * @param {number} [minimumRevenue] Filter to only include products with total revenue greater than or equal to this amount
3332
+ * @param {number} [maximumRevenue] Filter to only include products with total revenue less than or equal to this amount
3333
+ * @param {number} [minimumSales] Filter to only include products with total sales greater than or equal to this number
3334
+ * @param {number} [maximumSales] Filter to only include products with total sales less than or equal to this number
3335
+ * @param {number} [minimumBasketPercent] Filter to only include products where the average basket percentage is greater than or equal to this value
3336
+ * @param {number} [maximumBasketPercent] Filter to only include products where the average basket percentage is less than or equal to this value
3337
+ * @param {number} [minimumTraffic] Filter to only include products with total traffic greater than or equal to this number
3338
+ * @param {number} [maximumTraffic] Filter to only include products with total traffic less than or equal to this number
3339
+ * @param {string} [createdBefore] Filter to only include products created before the given date
3340
+ * @param {string} [createdAfter] Filter to only include products created after the given date
3341
+ * @param {string} [updatedBefore] Filter to only include products updated before the given date
3342
+ * @param {string} [updatedAfter] Filter to only include products updated after the given date
3280
3343
  * @param {*} [options] Override http request option.
3281
3344
  * @throws {RequiredError}
3282
3345
  */
3283
- listProducts: (project: string, pageToken?: number, search?: string, sortBy?: Array<string>, start?: string, end?: string, dateFilterType?: ListProductsDateFilterTypeEnum, maxRetailPrice?: number, minRetailPrice?: number, pageSize?: number, fields?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3346
+ listProducts: (project: string, pageToken?: number, search?: string, sortBy?: Array<string>, start?: string, end?: string, dateFilterType?: ListProductsDateFilterTypeEnum, maxRetailPrice?: number, minRetailPrice?: number, pageSize?: number, fields?: string, dateRangeStartDate?: string, dateRangeEndDate?: string, minimumRevenue?: number, maximumRevenue?: number, minimumSales?: number, maximumSales?: number, minimumBasketPercent?: number, maximumBasketPercent?: number, minimumTraffic?: number, maximumTraffic?: number, createdBefore?: string, createdAfter?: string, updatedBefore?: string, updatedAfter?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3284
3347
  /**
3285
3348
  * AI SEO optimises products by a set of given IDs.
3286
3349
  * @summary AI SEO optimise products.
@@ -3397,10 +3460,24 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
3397
3460
  * @param {number} [minRetailPrice] Specify the minimum retail price to filter by. Products will be included so long as either at least one variant or the product itself (in the case of bundles) has a retail price greater than or equal to the specified value.
3398
3461
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
3399
3462
  * @param {string} [fields] Filter response fields to only include a subset of the resource.
3463
+ * @param {string} [dateRangeStartDate] Start date for the date range filter (ISO 8601 format)
3464
+ * @param {string} [dateRangeEndDate] End date for the date range filter (ISO 8601 format)
3465
+ * @param {number} [minimumRevenue] Filter to only include products with total revenue greater than or equal to this amount
3466
+ * @param {number} [maximumRevenue] Filter to only include products with total revenue less than or equal to this amount
3467
+ * @param {number} [minimumSales] Filter to only include products with total sales greater than or equal to this number
3468
+ * @param {number} [maximumSales] Filter to only include products with total sales less than or equal to this number
3469
+ * @param {number} [minimumBasketPercent] Filter to only include products where the average basket percentage is greater than or equal to this value
3470
+ * @param {number} [maximumBasketPercent] Filter to only include products where the average basket percentage is less than or equal to this value
3471
+ * @param {number} [minimumTraffic] Filter to only include products with total traffic greater than or equal to this number
3472
+ * @param {number} [maximumTraffic] Filter to only include products with total traffic less than or equal to this number
3473
+ * @param {string} [createdBefore] Filter to only include products created before the given date
3474
+ * @param {string} [createdAfter] Filter to only include products created after the given date
3475
+ * @param {string} [updatedBefore] Filter to only include products updated before the given date
3476
+ * @param {string} [updatedAfter] Filter to only include products updated after the given date
3400
3477
  * @param {*} [options] Override http request option.
3401
3478
  * @throws {RequiredError}
3402
3479
  */
3403
- listProducts(project: string, pageToken?: number, search?: string, sortBy?: Array<string>, start?: string, end?: string, dateFilterType?: ListProductsDateFilterTypeEnum, maxRetailPrice?: number, minRetailPrice?: number, pageSize?: number, fields?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductsResponse>>;
3480
+ listProducts(project: string, pageToken?: number, search?: string, sortBy?: Array<string>, start?: string, end?: string, dateFilterType?: ListProductsDateFilterTypeEnum, maxRetailPrice?: number, minRetailPrice?: number, pageSize?: number, fields?: string, dateRangeStartDate?: string, dateRangeEndDate?: string, minimumRevenue?: number, maximumRevenue?: number, minimumSales?: number, maximumSales?: number, minimumBasketPercent?: number, maximumBasketPercent?: number, minimumTraffic?: number, maximumTraffic?: number, createdBefore?: string, createdAfter?: string, updatedBefore?: string, updatedAfter?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductsResponse>>;
3404
3481
  /**
3405
3482
  * AI SEO optimises products by a set of given IDs.
3406
3483
  * @summary AI SEO optimise products.
@@ -3683,6 +3760,62 @@ export interface ProductsApiListProductsRequest {
3683
3760
  * Filter response fields to only include a subset of the resource.
3684
3761
  */
3685
3762
  readonly fields?: string;
3763
+ /**
3764
+ * Start date for the date range filter (ISO 8601 format)
3765
+ */
3766
+ readonly dateRangeStartDate?: string;
3767
+ /**
3768
+ * End date for the date range filter (ISO 8601 format)
3769
+ */
3770
+ readonly dateRangeEndDate?: string;
3771
+ /**
3772
+ * Filter to only include products with total revenue greater than or equal to this amount
3773
+ */
3774
+ readonly minimumRevenue?: number;
3775
+ /**
3776
+ * Filter to only include products with total revenue less than or equal to this amount
3777
+ */
3778
+ readonly maximumRevenue?: number;
3779
+ /**
3780
+ * Filter to only include products with total sales greater than or equal to this number
3781
+ */
3782
+ readonly minimumSales?: number;
3783
+ /**
3784
+ * Filter to only include products with total sales less than or equal to this number
3785
+ */
3786
+ readonly maximumSales?: number;
3787
+ /**
3788
+ * Filter to only include products where the average basket percentage is greater than or equal to this value
3789
+ */
3790
+ readonly minimumBasketPercent?: number;
3791
+ /**
3792
+ * Filter to only include products where the average basket percentage is less than or equal to this value
3793
+ */
3794
+ readonly maximumBasketPercent?: number;
3795
+ /**
3796
+ * Filter to only include products with total traffic greater than or equal to this number
3797
+ */
3798
+ readonly minimumTraffic?: number;
3799
+ /**
3800
+ * Filter to only include products with total traffic less than or equal to this number
3801
+ */
3802
+ readonly maximumTraffic?: number;
3803
+ /**
3804
+ * Filter to only include products created before the given date
3805
+ */
3806
+ readonly createdBefore?: string;
3807
+ /**
3808
+ * Filter to only include products created after the given date
3809
+ */
3810
+ readonly createdAfter?: string;
3811
+ /**
3812
+ * Filter to only include products updated before the given date
3813
+ */
3814
+ readonly updatedBefore?: string;
3815
+ /**
3816
+ * Filter to only include products updated after the given date
3817
+ */
3818
+ readonly updatedAfter?: string;
3686
3819
  }
3687
3820
  /**
3688
3821
  * Request parameters for seoOptimiseProducts operation in ProductsApi.
package/dist/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Product Catalog
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 product from the GFN Catalog, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.90.2
7
+ * The version of the OpenAPI document: 1.92.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2095,10 +2095,24 @@ export const ProductsApiAxiosParamCreator = function (configuration) {
2095
2095
  * @param {number} [minRetailPrice] Specify the minimum retail price to filter by. Products will be included so long as either at least one variant or the product itself (in the case of bundles) has a retail price greater than or equal to the specified value.
2096
2096
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
2097
2097
  * @param {string} [fields] Filter response fields to only include a subset of the resource.
2098
+ * @param {string} [dateRangeStartDate] Start date for the date range filter (ISO 8601 format)
2099
+ * @param {string} [dateRangeEndDate] End date for the date range filter (ISO 8601 format)
2100
+ * @param {number} [minimumRevenue] Filter to only include products with total revenue greater than or equal to this amount
2101
+ * @param {number} [maximumRevenue] Filter to only include products with total revenue less than or equal to this amount
2102
+ * @param {number} [minimumSales] Filter to only include products with total sales greater than or equal to this number
2103
+ * @param {number} [maximumSales] Filter to only include products with total sales less than or equal to this number
2104
+ * @param {number} [minimumBasketPercent] Filter to only include products where the average basket percentage is greater than or equal to this value
2105
+ * @param {number} [maximumBasketPercent] Filter to only include products where the average basket percentage is less than or equal to this value
2106
+ * @param {number} [minimumTraffic] Filter to only include products with total traffic greater than or equal to this number
2107
+ * @param {number} [maximumTraffic] Filter to only include products with total traffic less than or equal to this number
2108
+ * @param {string} [createdBefore] Filter to only include products created before the given date
2109
+ * @param {string} [createdAfter] Filter to only include products created after the given date
2110
+ * @param {string} [updatedBefore] Filter to only include products updated before the given date
2111
+ * @param {string} [updatedAfter] Filter to only include products updated after the given date
2098
2112
  * @param {*} [options] Override http request option.
2099
2113
  * @throws {RequiredError}
2100
2114
  */
2101
- listProducts: (project_1, pageToken_1, search_1, sortBy_1, start_1, end_1, dateFilterType_1, maxRetailPrice_1, minRetailPrice_1, pageSize_1, fields_1, ...args_1) => __awaiter(this, [project_1, pageToken_1, search_1, sortBy_1, start_1, end_1, dateFilterType_1, maxRetailPrice_1, minRetailPrice_1, pageSize_1, fields_1, ...args_1], void 0, function* (project, pageToken, search, sortBy, start, end, dateFilterType, maxRetailPrice, minRetailPrice, pageSize, fields, options = {}) {
2115
+ listProducts: (project_1, pageToken_1, search_1, sortBy_1, start_1, end_1, dateFilterType_1, maxRetailPrice_1, minRetailPrice_1, pageSize_1, fields_1, dateRangeStartDate_1, dateRangeEndDate_1, minimumRevenue_1, maximumRevenue_1, minimumSales_1, maximumSales_1, minimumBasketPercent_1, maximumBasketPercent_1, minimumTraffic_1, maximumTraffic_1, createdBefore_1, createdAfter_1, updatedBefore_1, updatedAfter_1, ...args_1) => __awaiter(this, [project_1, pageToken_1, search_1, sortBy_1, start_1, end_1, dateFilterType_1, maxRetailPrice_1, minRetailPrice_1, pageSize_1, fields_1, dateRangeStartDate_1, dateRangeEndDate_1, minimumRevenue_1, maximumRevenue_1, minimumSales_1, maximumSales_1, minimumBasketPercent_1, maximumBasketPercent_1, minimumTraffic_1, maximumTraffic_1, createdBefore_1, createdAfter_1, updatedBefore_1, updatedAfter_1, ...args_1], void 0, function* (project, pageToken, search, sortBy, start, end, dateFilterType, maxRetailPrice, minRetailPrice, pageSize, fields, dateRangeStartDate, dateRangeEndDate, minimumRevenue, maximumRevenue, minimumSales, maximumSales, minimumBasketPercent, maximumBasketPercent, minimumTraffic, maximumTraffic, createdBefore, createdAfter, updatedBefore, updatedAfter, options = {}) {
2102
2116
  // verify required parameter 'project' is not null or undefined
2103
2117
  assertParamExists('listProducts', 'project', project);
2104
2118
  const localVarPath = `/v1/catalog/products`;
@@ -2153,6 +2167,60 @@ export const ProductsApiAxiosParamCreator = function (configuration) {
2153
2167
  if (fields !== undefined) {
2154
2168
  localVarQueryParameter['fields'] = fields;
2155
2169
  }
2170
+ if (dateRangeStartDate !== undefined) {
2171
+ localVarQueryParameter['dateRangeStartDate'] = (dateRangeStartDate instanceof Date) ?
2172
+ dateRangeStartDate.toISOString() :
2173
+ dateRangeStartDate;
2174
+ }
2175
+ if (dateRangeEndDate !== undefined) {
2176
+ localVarQueryParameter['dateRangeEndDate'] = (dateRangeEndDate instanceof Date) ?
2177
+ dateRangeEndDate.toISOString() :
2178
+ dateRangeEndDate;
2179
+ }
2180
+ if (minimumRevenue !== undefined) {
2181
+ localVarQueryParameter['minimumRevenue'] = minimumRevenue;
2182
+ }
2183
+ if (maximumRevenue !== undefined) {
2184
+ localVarQueryParameter['maximumRevenue'] = maximumRevenue;
2185
+ }
2186
+ if (minimumSales !== undefined) {
2187
+ localVarQueryParameter['minimumSales'] = minimumSales;
2188
+ }
2189
+ if (maximumSales !== undefined) {
2190
+ localVarQueryParameter['maximumSales'] = maximumSales;
2191
+ }
2192
+ if (minimumBasketPercent !== undefined) {
2193
+ localVarQueryParameter['minimumBasketPercent'] = minimumBasketPercent;
2194
+ }
2195
+ if (maximumBasketPercent !== undefined) {
2196
+ localVarQueryParameter['maximumBasketPercent'] = maximumBasketPercent;
2197
+ }
2198
+ if (minimumTraffic !== undefined) {
2199
+ localVarQueryParameter['minimumTraffic'] = minimumTraffic;
2200
+ }
2201
+ if (maximumTraffic !== undefined) {
2202
+ localVarQueryParameter['maximumTraffic'] = maximumTraffic;
2203
+ }
2204
+ if (createdBefore !== undefined) {
2205
+ localVarQueryParameter['createdBefore'] = (createdBefore instanceof Date) ?
2206
+ createdBefore.toISOString() :
2207
+ createdBefore;
2208
+ }
2209
+ if (createdAfter !== undefined) {
2210
+ localVarQueryParameter['createdAfter'] = (createdAfter instanceof Date) ?
2211
+ createdAfter.toISOString() :
2212
+ createdAfter;
2213
+ }
2214
+ if (updatedBefore !== undefined) {
2215
+ localVarQueryParameter['updatedBefore'] = (updatedBefore instanceof Date) ?
2216
+ updatedBefore.toISOString() :
2217
+ updatedBefore;
2218
+ }
2219
+ if (updatedAfter !== undefined) {
2220
+ localVarQueryParameter['updatedAfter'] = (updatedAfter instanceof Date) ?
2221
+ updatedAfter.toISOString() :
2222
+ updatedAfter;
2223
+ }
2156
2224
  localVarHeaderParameter['Accept'] = 'application/json';
2157
2225
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2158
2226
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -2435,13 +2503,27 @@ export const ProductsApiFp = function (configuration) {
2435
2503
  * @param {number} [minRetailPrice] Specify the minimum retail price to filter by. Products will be included so long as either at least one variant or the product itself (in the case of bundles) has a retail price greater than or equal to the specified value.
2436
2504
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
2437
2505
  * @param {string} [fields] Filter response fields to only include a subset of the resource.
2506
+ * @param {string} [dateRangeStartDate] Start date for the date range filter (ISO 8601 format)
2507
+ * @param {string} [dateRangeEndDate] End date for the date range filter (ISO 8601 format)
2508
+ * @param {number} [minimumRevenue] Filter to only include products with total revenue greater than or equal to this amount
2509
+ * @param {number} [maximumRevenue] Filter to only include products with total revenue less than or equal to this amount
2510
+ * @param {number} [minimumSales] Filter to only include products with total sales greater than or equal to this number
2511
+ * @param {number} [maximumSales] Filter to only include products with total sales less than or equal to this number
2512
+ * @param {number} [minimumBasketPercent] Filter to only include products where the average basket percentage is greater than or equal to this value
2513
+ * @param {number} [maximumBasketPercent] Filter to only include products where the average basket percentage is less than or equal to this value
2514
+ * @param {number} [minimumTraffic] Filter to only include products with total traffic greater than or equal to this number
2515
+ * @param {number} [maximumTraffic] Filter to only include products with total traffic less than or equal to this number
2516
+ * @param {string} [createdBefore] Filter to only include products created before the given date
2517
+ * @param {string} [createdAfter] Filter to only include products created after the given date
2518
+ * @param {string} [updatedBefore] Filter to only include products updated before the given date
2519
+ * @param {string} [updatedAfter] Filter to only include products updated after the given date
2438
2520
  * @param {*} [options] Override http request option.
2439
2521
  * @throws {RequiredError}
2440
2522
  */
2441
- listProducts(project, pageToken, search, sortBy, start, end, dateFilterType, maxRetailPrice, minRetailPrice, pageSize, fields, options) {
2523
+ listProducts(project, pageToken, search, sortBy, start, end, dateFilterType, maxRetailPrice, minRetailPrice, pageSize, fields, dateRangeStartDate, dateRangeEndDate, minimumRevenue, maximumRevenue, minimumSales, maximumSales, minimumBasketPercent, maximumBasketPercent, minimumTraffic, maximumTraffic, createdBefore, createdAfter, updatedBefore, updatedAfter, options) {
2442
2524
  return __awaiter(this, void 0, void 0, function* () {
2443
2525
  var _a, _b, _c;
2444
- const localVarAxiosArgs = yield localVarAxiosParamCreator.listProducts(project, pageToken, search, sortBy, start, end, dateFilterType, maxRetailPrice, minRetailPrice, pageSize, fields, options);
2526
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.listProducts(project, pageToken, search, sortBy, start, end, dateFilterType, maxRetailPrice, minRetailPrice, pageSize, fields, dateRangeStartDate, dateRangeEndDate, minimumRevenue, maximumRevenue, minimumSales, maximumSales, minimumBasketPercent, maximumBasketPercent, minimumTraffic, maximumTraffic, createdBefore, createdAfter, updatedBefore, updatedAfter, options);
2445
2527
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
2446
2528
  const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ProductsApi.listProducts']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
2447
2529
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -2585,7 +2667,7 @@ export const ProductsApiFactory = function (configuration, basePath, axios) {
2585
2667
  * @throws {RequiredError}
2586
2668
  */
2587
2669
  listProducts(requestParameters, options) {
2588
- return localVarFp.listProducts(requestParameters.project, requestParameters.pageToken, requestParameters.search, requestParameters.sortBy, requestParameters.start, requestParameters.end, requestParameters.dateFilterType, requestParameters.maxRetailPrice, requestParameters.minRetailPrice, requestParameters.pageSize, requestParameters.fields, options).then((request) => request(axios, basePath));
2670
+ return localVarFp.listProducts(requestParameters.project, requestParameters.pageToken, requestParameters.search, requestParameters.sortBy, requestParameters.start, requestParameters.end, requestParameters.dateFilterType, requestParameters.maxRetailPrice, requestParameters.minRetailPrice, requestParameters.pageSize, requestParameters.fields, requestParameters.dateRangeStartDate, requestParameters.dateRangeEndDate, requestParameters.minimumRevenue, requestParameters.maximumRevenue, requestParameters.minimumSales, requestParameters.maximumSales, requestParameters.minimumBasketPercent, requestParameters.maximumBasketPercent, requestParameters.minimumTraffic, requestParameters.maximumTraffic, requestParameters.createdBefore, requestParameters.createdAfter, requestParameters.updatedBefore, requestParameters.updatedAfter, options).then((request) => request(axios, basePath));
2589
2671
  },
2590
2672
  /**
2591
2673
  * AI SEO optimises products by a set of given IDs.
@@ -2701,7 +2783,7 @@ export class ProductsApi extends BaseAPI {
2701
2783
  * @throws {RequiredError}
2702
2784
  */
2703
2785
  listProducts(requestParameters, options) {
2704
- return ProductsApiFp(this.configuration).listProducts(requestParameters.project, requestParameters.pageToken, requestParameters.search, requestParameters.sortBy, requestParameters.start, requestParameters.end, requestParameters.dateFilterType, requestParameters.maxRetailPrice, requestParameters.minRetailPrice, requestParameters.pageSize, requestParameters.fields, options).then((request) => request(this.axios, this.basePath));
2786
+ return ProductsApiFp(this.configuration).listProducts(requestParameters.project, requestParameters.pageToken, requestParameters.search, requestParameters.sortBy, requestParameters.start, requestParameters.end, requestParameters.dateFilterType, requestParameters.maxRetailPrice, requestParameters.minRetailPrice, requestParameters.pageSize, requestParameters.fields, requestParameters.dateRangeStartDate, requestParameters.dateRangeEndDate, requestParameters.minimumRevenue, requestParameters.maximumRevenue, requestParameters.minimumSales, requestParameters.maximumSales, requestParameters.minimumBasketPercent, requestParameters.maximumBasketPercent, requestParameters.minimumTraffic, requestParameters.maximumTraffic, requestParameters.createdBefore, requestParameters.createdAfter, requestParameters.updatedBefore, requestParameters.updatedAfter, options).then((request) => request(this.axios, this.basePath));
2705
2787
  }
2706
2788
  /**
2707
2789
  * AI SEO optimises products by a set of given IDs.
@@ -2,7 +2,7 @@
2
2
  * Product Catalog
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 product from the GFN Catalog, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.90.2
5
+ * The version of the OpenAPI document: 1.92.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
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 product from the GFN Catalog, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.90.2
7
+ * The version of the OpenAPI document: 1.92.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
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 product from the GFN Catalog, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.90.2
5
+ * The version of the OpenAPI document: 1.92.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
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 product from the GFN Catalog, plus listing information such as title, description and tags.
6
6
  *
7
- * The version of the OpenAPI document: 1.90.2
7
+ * The version of the OpenAPI document: 1.92.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
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 product from the GFN Catalog, plus listing information such as title, description and tags.
4
4
  *
5
- * The version of the OpenAPI document: 1.90.2
5
+ * The version of the OpenAPI document: 1.92.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).