@teemill/product-catalog 1.6.4 → 1.6.5

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.
Files changed (68) hide show
  1. package/README.md +2 -2
  2. package/dist/apis/ProductsApi.d.ts +16 -2
  3. package/dist/apis/ProductsApi.js +66 -1
  4. package/dist/apis/VariantsApi.d.ts +1 -1
  5. package/dist/apis/VariantsApi.js +1 -1
  6. package/dist/models/ApiError.d.ts +1 -1
  7. package/dist/models/ApiError.js +1 -1
  8. package/dist/models/Attribute.d.ts +1 -1
  9. package/dist/models/Attribute.js +1 -1
  10. package/dist/models/AttributeThumbnail.d.ts +1 -1
  11. package/dist/models/AttributeThumbnail.js +1 -1
  12. package/dist/models/CreateProductRequest.d.ts +1 -1
  13. package/dist/models/CreateProductRequest.js +1 -1
  14. package/dist/models/CreateProductRequestVariantsInner.d.ts +1 -1
  15. package/dist/models/CreateProductRequestVariantsInner.js +1 -1
  16. package/dist/models/CreateProductRequestVariantsInnerApplicationsInner.d.ts +1 -1
  17. package/dist/models/CreateProductRequestVariantsInnerApplicationsInner.js +1 -1
  18. package/dist/models/CreateProductRequestVariantsInnerAttributesInner.d.ts +1 -1
  19. package/dist/models/CreateProductRequestVariantsInnerAttributesInner.js +1 -1
  20. package/dist/models/CreateProductRequestVariantsInnerImagesInner.d.ts +1 -1
  21. package/dist/models/CreateProductRequestVariantsInnerImagesInner.js +1 -1
  22. package/dist/models/CreateProductRequestVariantsInnerRetailPrice.d.ts +1 -1
  23. package/dist/models/CreateProductRequestVariantsInnerRetailPrice.js +1 -1
  24. package/dist/models/Image.d.ts +1 -1
  25. package/dist/models/Image.js +1 -1
  26. package/dist/models/ImportProducts200Response.d.ts +1 -1
  27. package/dist/models/ImportProducts200Response.js +1 -1
  28. package/dist/models/Price.d.ts +1 -1
  29. package/dist/models/Price.js +1 -1
  30. package/dist/models/Product.d.ts +1 -1
  31. package/dist/models/Product.js +1 -1
  32. package/dist/models/ProductAdditionalFilesInner.d.ts +1 -1
  33. package/dist/models/ProductAdditionalFilesInner.js +1 -1
  34. package/dist/models/ProductsResponse.d.ts +1 -1
  35. package/dist/models/ProductsResponse.js +1 -1
  36. package/dist/models/Stock.d.ts +1 -1
  37. package/dist/models/Stock.js +1 -1
  38. package/dist/models/Variant.d.ts +1 -1
  39. package/dist/models/Variant.js +1 -1
  40. package/dist/models/VariantProduct.d.ts +1 -1
  41. package/dist/models/VariantProduct.js +1 -1
  42. package/dist/models/VariantsResponse.d.ts +1 -1
  43. package/dist/models/VariantsResponse.js +1 -1
  44. package/dist/runtime.d.ts +1 -1
  45. package/dist/runtime.js +1 -1
  46. package/package.json +1 -1
  47. package/src/apis/ProductsApi.ts +68 -1
  48. package/src/apis/VariantsApi.ts +1 -1
  49. package/src/models/ApiError.ts +1 -1
  50. package/src/models/Attribute.ts +1 -1
  51. package/src/models/AttributeThumbnail.ts +1 -1
  52. package/src/models/CreateProductRequest.ts +1 -1
  53. package/src/models/CreateProductRequestVariantsInner.ts +1 -1
  54. package/src/models/CreateProductRequestVariantsInnerApplicationsInner.ts +1 -1
  55. package/src/models/CreateProductRequestVariantsInnerAttributesInner.ts +1 -1
  56. package/src/models/CreateProductRequestVariantsInnerImagesInner.ts +1 -1
  57. package/src/models/CreateProductRequestVariantsInnerRetailPrice.ts +1 -1
  58. package/src/models/Image.ts +1 -1
  59. package/src/models/ImportProducts200Response.ts +1 -1
  60. package/src/models/Price.ts +1 -1
  61. package/src/models/Product.ts +1 -1
  62. package/src/models/ProductAdditionalFilesInner.ts +1 -1
  63. package/src/models/ProductsResponse.ts +1 -1
  64. package/src/models/Stock.ts +1 -1
  65. package/src/models/Variant.ts +1 -1
  66. package/src/models/VariantProduct.ts +1 -1
  67. package/src/models/VariantsResponse.ts +1 -1
  68. package/src/runtime.ts +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/product-catalog@1.6.4
1
+ ## @teemill/product-catalog@1.6.5
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @teemill/product-catalog@1.6.4 --save
39
+ npm install @teemill/product-catalog@1.6.5 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage 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.6.4
5
+ * The version of the OpenAPI document: 1.6.5
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import * as runtime from '../runtime';
13
- import type { CreateProductRequest, Product, ProductsResponse } from '../models/index';
13
+ import type { CreateProductRequest, ImportProducts200Response, Product, ProductsResponse } from '../models/index';
14
14
  export interface CreateProductOperationRequest {
15
15
  project: string;
16
16
  createProductRequest?: CreateProductRequest;
@@ -26,6 +26,10 @@ export interface GetProductsRequest {
26
26
  pageSize?: number;
27
27
  fields?: string;
28
28
  }
29
+ export interface ImportProductsRequest {
30
+ project: string;
31
+ body?: string;
32
+ }
29
33
  /**
30
34
  *
31
35
  */
@@ -60,4 +64,14 @@ export declare class ProductsApi extends runtime.BaseAPI {
60
64
  * List products
61
65
  */
62
66
  getProducts(project: string, optionalParameters?: runtime.OptionalOnly<GetProductsRequest>, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ProductsResponse>;
67
+ /**
68
+ * Import products
69
+ * Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
70
+ */
71
+ importProductsRaw(requestParameters: ImportProductsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ImportProducts200Response>>;
72
+ /**
73
+ * Import products
74
+ * Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
75
+ */
76
+ importProducts(project: string, optionalParameters?: runtime.OptionalOnly<ImportProductsRequest>, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ImportProducts200Response>;
63
77
  }
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage 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.6.4
8
+ * The version of the OpenAPI document: 1.6.5
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -292,6 +292,71 @@ var ProductsApi = /** @class */ (function (_super) {
292
292
  });
293
293
  });
294
294
  };
295
+ /**
296
+ * Import products
297
+ * Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
298
+ */
299
+ ProductsApi.prototype.importProductsRaw = function (requestParameters, initOverrides) {
300
+ return __awaiter(this, void 0, void 0, function () {
301
+ var queryParameters, headerParameters, _a, _b, response;
302
+ return __generator(this, function (_c) {
303
+ switch (_c.label) {
304
+ case 0:
305
+ if (requestParameters.project === null || requestParameters.project === undefined) {
306
+ throw new runtime.RequiredError('project', 'Required parameter requestParameters.project was null or undefined when calling importProducts.');
307
+ }
308
+ queryParameters = {};
309
+ if (requestParameters.project !== undefined) {
310
+ queryParameters['project'] = requestParameters.project;
311
+ }
312
+ headerParameters = {};
313
+ headerParameters['Content-Type'] = 'text/csv';
314
+ if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 2];
315
+ // oauth required
316
+ _a = headerParameters;
317
+ _b = "Authorization";
318
+ return [4 /*yield*/, this.configuration.accessToken("session-oauth", [])];
319
+ case 1:
320
+ // oauth required
321
+ _a[_b] = _c.sent();
322
+ _c.label = 2;
323
+ case 2:
324
+ if (this.configuration && this.configuration.apiKey) {
325
+ headerParameters["Authorization"] = this.configuration.apiKey("Authorization"); // api-key authentication
326
+ }
327
+ return [4 /*yield*/, this.request({
328
+ path: "/v1/catalog/products/import",
329
+ method: 'POST',
330
+ headers: headerParameters,
331
+ query: queryParameters,
332
+ body: requestParameters.body,
333
+ }, initOverrides)];
334
+ case 3:
335
+ response = _c.sent();
336
+ return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.ImportProducts200ResponseFromJSON)(jsonValue); })];
337
+ }
338
+ });
339
+ });
340
+ };
341
+ /**
342
+ * Import products
343
+ * Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
344
+ */
345
+ ProductsApi.prototype.importProducts = function (project, optionalParameters, initOverrides) {
346
+ if (optionalParameters === void 0) { optionalParameters = {}; }
347
+ return __awaiter(this, void 0, void 0, function () {
348
+ var response;
349
+ return __generator(this, function (_a) {
350
+ switch (_a.label) {
351
+ case 0: return [4 /*yield*/, this.importProductsRaw(__assign({ project: project }, optionalParameters), initOverrides)];
352
+ case 1:
353
+ response = _a.sent();
354
+ return [4 /*yield*/, response.value()];
355
+ case 2: return [2 /*return*/, _a.sent()];
356
+ }
357
+ });
358
+ });
359
+ };
295
360
  return ProductsApi;
296
361
  }(runtime.BaseAPI));
297
362
  exports.ProductsApi = ProductsApi;
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage 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.6.4
5
+ * The version of the OpenAPI document: 1.6.5
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage 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.6.4
8
+ * The version of the OpenAPI document: 1.6.5
9
9
  * Contact: hello@teemill.com
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 API
3
3
  * Manage 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.6.4
5
+ * The version of the OpenAPI document: 1.6.5
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage 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.6.4
8
+ * The version of the OpenAPI document: 1.6.5
9
9
  * Contact: hello@teemill.com
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 API
3
3
  * Manage 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.6.4
5
+ * The version of the OpenAPI document: 1.6.5
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage 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.6.4
8
+ * The version of the OpenAPI document: 1.6.5
9
9
  * Contact: hello@teemill.com
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 API
3
3
  * Manage 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.6.4
5
+ * The version of the OpenAPI document: 1.6.5
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage 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.6.4
8
+ * The version of the OpenAPI document: 1.6.5
9
9
  * Contact: hello@teemill.com
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 API
3
3
  * Manage 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.6.4
5
+ * The version of the OpenAPI document: 1.6.5
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage 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.6.4
8
+ * The version of the OpenAPI document: 1.6.5
9
9
  * Contact: hello@teemill.com
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 API
3
3
  * Manage 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.6.4
5
+ * The version of the OpenAPI document: 1.6.5
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage 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.6.4
8
+ * The version of the OpenAPI document: 1.6.5
9
9
  * Contact: hello@teemill.com
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 API
3
3
  * Manage 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.6.4
5
+ * The version of the OpenAPI document: 1.6.5
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage 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.6.4
8
+ * The version of the OpenAPI document: 1.6.5
9
9
  * Contact: hello@teemill.com
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 API
3
3
  * Manage 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.6.4
5
+ * The version of the OpenAPI document: 1.6.5
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage 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.6.4
8
+ * The version of the OpenAPI document: 1.6.5
9
9
  * Contact: hello@teemill.com
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 API
3
3
  * Manage 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.6.4
5
+ * The version of the OpenAPI document: 1.6.5
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage 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.6.4
8
+ * The version of the OpenAPI document: 1.6.5
9
9
  * Contact: hello@teemill.com
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 API
3
3
  * Manage 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.6.4
5
+ * The version of the OpenAPI document: 1.6.5
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage 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.6.4
8
+ * The version of the OpenAPI document: 1.6.5
9
9
  * Contact: hello@teemill.com
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 API
3
3
  * Manage 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.6.4
5
+ * The version of the OpenAPI document: 1.6.5
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage 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.6.4
8
+ * The version of the OpenAPI document: 1.6.5
9
9
  * Contact: hello@teemill.com
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 API
3
3
  * Manage 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.6.4
5
+ * The version of the OpenAPI document: 1.6.5
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage 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.6.4
8
+ * The version of the OpenAPI document: 1.6.5
9
9
  * Contact: hello@teemill.com
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 API
3
3
  * Manage 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.6.4
5
+ * The version of the OpenAPI document: 1.6.5
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage 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.6.4
8
+ * The version of the OpenAPI document: 1.6.5
9
9
  * Contact: hello@teemill.com
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 API
3
3
  * Manage 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.6.4
5
+ * The version of the OpenAPI document: 1.6.5
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage 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.6.4
8
+ * The version of the OpenAPI document: 1.6.5
9
9
  * Contact: hello@teemill.com
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 API
3
3
  * Manage 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.6.4
5
+ * The version of the OpenAPI document: 1.6.5
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage 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.6.4
8
+ * The version of the OpenAPI document: 1.6.5
9
9
  * Contact: hello@teemill.com
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 API
3
3
  * Manage 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.6.4
5
+ * The version of the OpenAPI document: 1.6.5
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage 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.6.4
8
+ * The version of the OpenAPI document: 1.6.5
9
9
  * Contact: hello@teemill.com
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 API
3
3
  * Manage 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.6.4
5
+ * The version of the OpenAPI document: 1.6.5
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage 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.6.4
8
+ * The version of the OpenAPI document: 1.6.5
9
9
  * Contact: hello@teemill.com
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 API
3
3
  * Manage 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.6.4
5
+ * The version of the OpenAPI document: 1.6.5
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage 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.6.4
8
+ * The version of the OpenAPI document: 1.6.5
9
9
  * Contact: hello@teemill.com
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 API
3
3
  * Manage 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.6.4
5
+ * The version of the OpenAPI document: 1.6.5
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage 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.6.4
8
+ * The version of the OpenAPI document: 1.6.5
9
9
  * Contact: hello@teemill.com
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 API
3
3
  * Manage 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.6.4
5
+ * The version of the OpenAPI document: 1.6.5
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage 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.6.4
8
+ * The version of the OpenAPI document: 1.6.5
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/runtime.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Product Catalog API
3
3
  * Manage 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.6.4
5
+ * The version of the OpenAPI document: 1.6.5
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/runtime.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Product Catalog API
6
6
  * Manage 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.6.4
8
+ * The version of the OpenAPI document: 1.6.5
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teemill/product-catalog",
3
- "version": "1.6.4",
3
+ "version": "1.6.5",
4
4
  "description": "OpenAPI client for @teemill/product-catalog",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -4,7 +4,7 @@
4
4
  * Product Catalog API
5
5
  * Manage 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.6.4
7
+ * The version of the OpenAPI document: 1.6.5
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -17,6 +17,7 @@ import * as runtime from '../runtime';
17
17
  import type {
18
18
  ApiError,
19
19
  CreateProductRequest,
20
+ ImportProducts200Response,
20
21
  Product,
21
22
  ProductsResponse,
22
23
  } from '../models/index';
@@ -25,6 +26,8 @@ import {
25
26
  ApiErrorToJSON,
26
27
  CreateProductRequestFromJSON,
27
28
  CreateProductRequestToJSON,
29
+ ImportProducts200ResponseFromJSON,
30
+ ImportProducts200ResponseToJSON,
28
31
  ProductFromJSON,
29
32
  ProductToJSON,
30
33
  ProductsResponseFromJSON,
@@ -49,6 +52,11 @@ export interface GetProductsRequest {
49
52
  fields?: string;
50
53
  }
51
54
 
55
+ export interface ImportProductsRequest {
56
+ project: string;
57
+ body?: string;
58
+ }
59
+
52
60
  /**
53
61
  *
54
62
  */
@@ -245,4 +253,63 @@ export class ProductsApi extends runtime.BaseAPI {
245
253
  return await response.value();
246
254
  }
247
255
 
256
+ /**
257
+ * Import products
258
+ * Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
259
+ */
260
+ async importProductsRaw(requestParameters: ImportProductsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ImportProducts200Response>> {
261
+ if (requestParameters.project === null || requestParameters.project === undefined) {
262
+ throw new runtime.RequiredError('project','Required parameter requestParameters.project was null or undefined when calling importProducts.');
263
+ }
264
+
265
+ const queryParameters: any = {};
266
+
267
+ if (requestParameters.project !== undefined) {
268
+ queryParameters['project'] = requestParameters.project;
269
+ }
270
+
271
+ const headerParameters: runtime.HTTPHeaders = {};
272
+
273
+ headerParameters['Content-Type'] = 'text/csv';
274
+
275
+ if (this.configuration && this.configuration.accessToken) {
276
+ // oauth required
277
+ headerParameters["Authorization"] = await this.configuration.accessToken("session-oauth", []);
278
+ }
279
+
280
+ if (this.configuration && this.configuration.apiKey) {
281
+ headerParameters["Authorization"] = this.configuration.apiKey("Authorization"); // api-key authentication
282
+ }
283
+
284
+ const response = await this.request({
285
+ path: `/v1/catalog/products/import`,
286
+ method: 'POST',
287
+ headers: headerParameters,
288
+ query: queryParameters,
289
+ body: requestParameters.body as any,
290
+ }, initOverrides);
291
+
292
+ return new runtime.JSONApiResponse(response, (jsonValue) => ImportProducts200ResponseFromJSON(jsonValue));
293
+ }
294
+
295
+ /**
296
+ * Import products
297
+ * Initiates a product import from a CSV file. The result will be available as a notification within the dashboard.
298
+ */
299
+ async importProducts(
300
+ project: string,
301
+ optionalParameters: runtime.OptionalOnly<ImportProductsRequest> = {},
302
+ initOverrides?: RequestInit | runtime.InitOverrideFunction
303
+ ): Promise<ImportProducts200Response> {
304
+ const response = await this.importProductsRaw(
305
+ {
306
+ project: project,
307
+ ...optionalParameters,
308
+ },
309
+ initOverrides
310
+ );
311
+
312
+ return await response.value();
313
+ }
314
+
248
315
  }
@@ -4,7 +4,7 @@
4
4
  * Product Catalog API
5
5
  * Manage 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.6.4
7
+ * The version of the OpenAPI document: 1.6.5
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * 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 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.6.4
7
+ * The version of the OpenAPI document: 1.6.5
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * 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 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.6.4
7
+ * The version of the OpenAPI document: 1.6.5
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * 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 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.6.4
7
+ * The version of the OpenAPI document: 1.6.5
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * 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 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.6.4
7
+ * The version of the OpenAPI document: 1.6.5
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * 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 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.6.4
7
+ * The version of the OpenAPI document: 1.6.5
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * 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 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.6.4
7
+ * The version of the OpenAPI document: 1.6.5
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * 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 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.6.4
7
+ * The version of the OpenAPI document: 1.6.5
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * 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 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.6.4
7
+ * The version of the OpenAPI document: 1.6.5
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * 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 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.6.4
7
+ * The version of the OpenAPI document: 1.6.5
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * 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 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.6.4
7
+ * The version of the OpenAPI document: 1.6.5
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * 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 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.6.4
7
+ * The version of the OpenAPI document: 1.6.5
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * 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 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.6.4
7
+ * The version of the OpenAPI document: 1.6.5
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * 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 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.6.4
7
+ * The version of the OpenAPI document: 1.6.5
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * 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 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.6.4
7
+ * The version of the OpenAPI document: 1.6.5
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * 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 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.6.4
7
+ * The version of the OpenAPI document: 1.6.5
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * 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 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.6.4
7
+ * The version of the OpenAPI document: 1.6.5
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * 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 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.6.4
7
+ * The version of the OpenAPI document: 1.6.5
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * 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 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.6.4
7
+ * The version of the OpenAPI document: 1.6.5
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * 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 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.6.4
7
+ * The version of the OpenAPI document: 1.6.5
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/src/runtime.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Product Catalog API
5
5
  * Manage 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.6.4
7
+ * The version of the OpenAPI document: 1.6.5
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).