@teemill/gfn-catalog 0.2.1 → 1.0.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.
Files changed (39) hide show
  1. package/.openapi-generator/VERSION +1 -1
  2. package/README.md +5 -4
  3. package/dist/apis/ProductsApi.d.ts +4 -4
  4. package/dist/apis/ProductsApi.js +4 -4
  5. package/dist/apis/VariantsApi.d.ts +6 -6
  6. package/dist/apis/VariantsApi.js +6 -6
  7. package/dist/models/ApiError.d.ts +2 -2
  8. package/dist/models/ApiError.js +2 -2
  9. package/dist/models/Attribute.d.ts +2 -2
  10. package/dist/models/Attribute.js +2 -2
  11. package/dist/models/AttributeThumbnail.d.ts +2 -2
  12. package/dist/models/AttributeThumbnail.js +2 -2
  13. package/dist/models/Image.d.ts +2 -2
  14. package/dist/models/Image.js +2 -2
  15. package/dist/models/Product.d.ts +3 -10
  16. package/dist/models/Product.js +4 -7
  17. package/dist/models/ProductsResponse.d.ts +2 -2
  18. package/dist/models/ProductsResponse.js +2 -2
  19. package/dist/models/Variant.d.ts +2 -2
  20. package/dist/models/Variant.js +2 -2
  21. package/dist/models/VariantProduct.d.ts +2 -2
  22. package/dist/models/VariantProduct.js +2 -2
  23. package/dist/models/VariantsResponse.d.ts +2 -2
  24. package/dist/models/VariantsResponse.js +2 -2
  25. package/dist/runtime.d.ts +2 -2
  26. package/dist/runtime.js +2 -2
  27. package/package.json +1 -1
  28. package/src/apis/ProductsApi.ts +4 -4
  29. package/src/apis/VariantsApi.ts +6 -6
  30. package/src/models/ApiError.ts +2 -2
  31. package/src/models/Attribute.ts +2 -2
  32. package/src/models/AttributeThumbnail.ts +2 -2
  33. package/src/models/Image.ts +2 -2
  34. package/src/models/Product.ts +5 -20
  35. package/src/models/ProductsResponse.ts +2 -2
  36. package/src/models/Variant.ts +2 -2
  37. package/src/models/VariantProduct.ts +2 -2
  38. package/src/models/VariantsResponse.ts +2 -2
  39. package/src/runtime.ts +2 -2
@@ -1 +1 @@
1
- 7.3.0-SNAPSHOT
1
+ 7.3.0
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/gfn-catalog@0.2.1
1
+ ## @teemill/gfn-catalog@1.0.0
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
 
@@ -15,7 +15,7 @@ Module system
15
15
  * CommonJS
16
16
  * ES6 module system
17
17
 
18
- It can be used in both TypeScript and JavaScript. In TypeScript, the definition should be automatically resolved via `package.json`. ([Reference](http://www.typescriptlang.org/docs/handbook/typings-for-npm-packages.html))
18
+ It can be used in both TypeScript and JavaScript. In TypeScript, the definition will be automatically resolved via `package.json`. ([Reference](https://www.typescriptlang.org/docs/handbook/declaration-files/consumption.html))
19
19
 
20
20
  ### Building
21
21
 
@@ -27,7 +27,7 @@ npm run build
27
27
 
28
28
  ### Publishing
29
29
 
30
- First build the package then run ```npm publish```
30
+ First build the package then run `npm publish`
31
31
 
32
32
  ### Consuming
33
33
 
@@ -36,10 +36,11 @@ 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/gfn-catalog@0.2.1 --save
39
+ npm install @teemill/gfn-catalog@1.0.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
43
43
 
44
44
  ```
45
45
  npm install PATH_TO_GENERATED_PACKAGE --save
46
+ ```
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * GFN Catalog API
3
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.1
5
+ * The version of the OpenAPI document: 1.0.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -23,12 +23,12 @@ export interface ListProductsRequest {
23
23
  */
24
24
  export declare class ProductsApi extends runtime.BaseAPI {
25
25
  /**
26
- * Lists all GFN products available to the project. Can be filtered by SKU using the search parameter.
26
+ * Lists all GFN products available to the project. Can be filtered by style codes using the search parameter.
27
27
  * List GFN products
28
28
  */
29
29
  listProductsRaw(requestParameters: ListProductsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ProductsResponse>>;
30
30
  /**
31
- * Lists all GFN products available to the project. Can be filtered by SKU using the search parameter.
31
+ * Lists all GFN products available to the project. Can be filtered by style codes using the search parameter.
32
32
  * List GFN products
33
33
  */
34
34
  listProducts(project: string, optionalParameters?: runtime.OptionalOnly<ListProductsRequest>, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ProductsResponse>;
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * GFN Catalog API
6
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.1
8
+ * The version of the OpenAPI document: 1.0.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -87,7 +87,7 @@ var ProductsApi = /** @class */ (function (_super) {
87
87
  return _super !== null && _super.apply(this, arguments) || this;
88
88
  }
89
89
  /**
90
- * Lists all GFN products available to the project. Can be filtered by SKU using the search parameter.
90
+ * Lists all GFN products available to the project. Can be filtered by style codes using the search parameter.
91
91
  * List GFN products
92
92
  */
93
93
  ProductsApi.prototype.listProductsRaw = function (requestParameters, initOverrides) {
@@ -143,7 +143,7 @@ var ProductsApi = /** @class */ (function (_super) {
143
143
  });
144
144
  };
145
145
  /**
146
- * Lists all GFN products available to the project. Can be filtered by SKU using the search parameter.
146
+ * Lists all GFN products available to the project. Can be filtered by style codes using the search parameter.
147
147
  * List GFN products
148
148
  */
149
149
  ProductsApi.prototype.listProducts = function (project, optionalParameters, initOverrides) {
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * GFN Catalog API
3
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.1
5
+ * The version of the OpenAPI document: 1.0.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,22 +28,22 @@ export interface ListVariantsRequest {
28
28
  */
29
29
  export declare class VariantsApi extends runtime.BaseAPI {
30
30
  /**
31
- * Gets a GFN variant by the given id
31
+ * Gets a GFN variant by the given ID.
32
32
  * Get a GFN variant
33
33
  */
34
34
  getVariantRaw(requestParameters: GetVariantRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Variant>>;
35
35
  /**
36
- * Gets a GFN variant by the given id
36
+ * Gets a GFN variant by the given ID.
37
37
  * Get a GFN variant
38
38
  */
39
39
  getVariant(project: string, variantId: string, optionalParameters?: runtime.OptionalOnly<GetVariantRequest>, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Variant>;
40
40
  /**
41
- * Lists all GFN variants available to the project. Can be filtered by product id, SKU, and attribute values using the search parameter.
41
+ * Lists all GFN variants available to the project. Can be filtered by product ID, SKU, and attribute values using the search parameter.
42
42
  * List GFN variants
43
43
  */
44
44
  listVariantsRaw(requestParameters: ListVariantsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VariantsResponse>>;
45
45
  /**
46
- * Lists all GFN variants available to the project. Can be filtered by product id, SKU, and attribute values using the search parameter.
46
+ * Lists all GFN variants available to the project. Can be filtered by product ID, SKU, and attribute values using the search parameter.
47
47
  * List GFN variants
48
48
  */
49
49
  listVariants(project: string, optionalParameters?: runtime.OptionalOnly<ListVariantsRequest>, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VariantsResponse>;
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * GFN Catalog API
6
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.1
8
+ * The version of the OpenAPI document: 1.0.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -87,7 +87,7 @@ var VariantsApi = /** @class */ (function (_super) {
87
87
  return _super !== null && _super.apply(this, arguments) || this;
88
88
  }
89
89
  /**
90
- * Gets a GFN variant by the given id
90
+ * Gets a GFN variant by the given ID.
91
91
  * Get a GFN variant
92
92
  */
93
93
  VariantsApi.prototype.getVariantRaw = function (requestParameters, initOverrides) {
@@ -137,7 +137,7 @@ var VariantsApi = /** @class */ (function (_super) {
137
137
  });
138
138
  };
139
139
  /**
140
- * Gets a GFN variant by the given id
140
+ * Gets a GFN variant by the given ID.
141
141
  * Get a GFN variant
142
142
  */
143
143
  VariantsApi.prototype.getVariant = function (project, variantId, optionalParameters, initOverrides) {
@@ -156,7 +156,7 @@ var VariantsApi = /** @class */ (function (_super) {
156
156
  });
157
157
  };
158
158
  /**
159
- * Lists all GFN variants available to the project. Can be filtered by product id, SKU, and attribute values using the search parameter.
159
+ * Lists all GFN variants available to the project. Can be filtered by product ID, SKU, and attribute values using the search parameter.
160
160
  * List GFN variants
161
161
  */
162
162
  VariantsApi.prototype.listVariantsRaw = function (requestParameters, initOverrides) {
@@ -212,7 +212,7 @@ var VariantsApi = /** @class */ (function (_super) {
212
212
  });
213
213
  };
214
214
  /**
215
- * Lists all GFN variants available to the project. Can be filtered by product id, SKU, and attribute values using the search parameter.
215
+ * Lists all GFN variants available to the project. Can be filtered by product ID, SKU, and attribute values using the search parameter.
216
216
  * List GFN variants
217
217
  */
218
218
  VariantsApi.prototype.listVariants = function (project, optionalParameters, initOverrides) {
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * GFN Catalog API
3
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.1
5
+ * The version of the OpenAPI document: 1.0.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * GFN Catalog API
6
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.1
8
+ * The version of the OpenAPI document: 1.0.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * GFN Catalog API
3
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.1
5
+ * The version of the OpenAPI document: 1.0.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * GFN Catalog API
6
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.1
8
+ * The version of the OpenAPI document: 1.0.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * GFN Catalog API
3
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.1
5
+ * The version of the OpenAPI document: 1.0.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * GFN Catalog API
6
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.1
8
+ * The version of the OpenAPI document: 1.0.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * GFN Catalog API
3
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.1
5
+ * The version of the OpenAPI document: 1.0.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * GFN Catalog API
6
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.1
8
+ * The version of the OpenAPI document: 1.0.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,15 +1,14 @@
1
1
  /**
2
2
  * GFN Catalog API
3
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.1
5
+ * The version of the OpenAPI document: 1.0.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import type { Image } from './Image';
13
12
  /**
14
13
  *
15
14
  * @export
@@ -39,13 +38,7 @@ export interface Product {
39
38
  * @type {string}
40
39
  * @memberof Product
41
40
  */
42
- sku?: string;
43
- /**
44
- * Images
45
- * @type {Array<Image>}
46
- * @memberof Product
47
- */
48
- images?: Array<Image>;
41
+ styleCode?: string;
49
42
  }
50
43
  /**
51
44
  * Check if a given object implements the Product interface.
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * GFN Catalog API
6
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.1
8
+ * The version of the OpenAPI document: 1.0.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -15,7 +15,6 @@
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
16
  exports.ProductToJSON = exports.ProductFromJSONTyped = exports.ProductFromJSON = exports.instanceOfProduct = void 0;
17
17
  var runtime_1 = require("../runtime");
18
- var Image_1 = require("./Image");
19
18
  /**
20
19
  * Check if a given object implements the Product interface.
21
20
  */
@@ -37,8 +36,7 @@ function ProductFromJSONTyped(json, ignoreDiscriminator) {
37
36
  'id': !(0, runtime_1.exists)(json, 'id') ? undefined : json['id'],
38
37
  'ref': !(0, runtime_1.exists)(json, 'ref') ? undefined : json['ref'],
39
38
  'title': json['title'],
40
- 'sku': !(0, runtime_1.exists)(json, 'sku') ? undefined : json['sku'],
41
- 'images': !(0, runtime_1.exists)(json, 'images') ? undefined : (json['images'].map(Image_1.ImageFromJSON)),
39
+ 'styleCode': !(0, runtime_1.exists)(json, 'styleCode') ? undefined : json['styleCode'],
42
40
  };
43
41
  }
44
42
  exports.ProductFromJSONTyped = ProductFromJSONTyped;
@@ -53,8 +51,7 @@ function ProductToJSON(value) {
53
51
  'id': value.id,
54
52
  'ref': value.ref,
55
53
  'title': value.title,
56
- 'sku': value.sku,
57
- 'images': value.images === undefined ? undefined : (value.images.map(Image_1.ImageToJSON)),
54
+ 'styleCode': value.styleCode,
58
55
  };
59
56
  }
60
57
  exports.ProductToJSON = ProductToJSON;
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * GFN Catalog API
3
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.1
5
+ * The version of the OpenAPI document: 1.0.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * GFN Catalog API
6
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.1
8
+ * The version of the OpenAPI document: 1.0.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * GFN Catalog API
3
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.1
5
+ * The version of the OpenAPI document: 1.0.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * GFN Catalog API
6
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.1
8
+ * The version of the OpenAPI document: 1.0.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * GFN Catalog API
3
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.1
5
+ * The version of the OpenAPI document: 1.0.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * GFN Catalog API
6
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.1
8
+ * The version of the OpenAPI document: 1.0.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * GFN Catalog API
3
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.1
5
+ * The version of the OpenAPI document: 1.0.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * GFN Catalog API
6
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.1
8
+ * The version of the OpenAPI document: 1.0.0
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
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * GFN Catalog API
3
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
3
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
4
4
  *
5
- * The version of the OpenAPI document: 0.2.1
5
+ * The version of the OpenAPI document: 1.0.0
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
@@ -3,9 +3,9 @@
3
3
  /* eslint-disable */
4
4
  /**
5
5
  * GFN Catalog API
6
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
7
7
  *
8
- * The version of the OpenAPI document: 0.2.1
8
+ * The version of the OpenAPI document: 1.0.0
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/gfn-catalog",
3
- "version": "0.2.1",
3
+ "version": "1.0.0",
4
4
  "description": "OpenAPI client for @teemill/gfn-catalog",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * GFN Catalog API
5
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
5
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
6
6
  *
7
- * The version of the OpenAPI document: 0.2.1
7
+ * The version of the OpenAPI document: 1.0.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -39,7 +39,7 @@ export interface ListProductsRequest {
39
39
  export class ProductsApi extends runtime.BaseAPI {
40
40
 
41
41
  /**
42
- * Lists all GFN products available to the project. Can be filtered by SKU using the search parameter.
42
+ * Lists all GFN products available to the project. Can be filtered by style codes using the search parameter.
43
43
  * List GFN products
44
44
  */
45
45
  async listProductsRaw(requestParameters: ListProductsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ProductsResponse>> {
@@ -91,7 +91,7 @@ export class ProductsApi extends runtime.BaseAPI {
91
91
  }
92
92
 
93
93
  /**
94
- * Lists all GFN products available to the project. Can be filtered by SKU using the search parameter.
94
+ * Lists all GFN products available to the project. Can be filtered by style codes using the search parameter.
95
95
  * List GFN products
96
96
  */
97
97
  async listProducts(
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * GFN Catalog API
5
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
5
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
6
6
  *
7
- * The version of the OpenAPI document: 0.2.1
7
+ * The version of the OpenAPI document: 1.0.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -48,7 +48,7 @@ export interface ListVariantsRequest {
48
48
  export class VariantsApi extends runtime.BaseAPI {
49
49
 
50
50
  /**
51
- * Gets a GFN variant by the given id
51
+ * Gets a GFN variant by the given ID.
52
52
  * Get a GFN variant
53
53
  */
54
54
  async getVariantRaw(requestParameters: GetVariantRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Variant>> {
@@ -92,7 +92,7 @@ export class VariantsApi extends runtime.BaseAPI {
92
92
  }
93
93
 
94
94
  /**
95
- * Gets a GFN variant by the given id
95
+ * Gets a GFN variant by the given ID.
96
96
  * Get a GFN variant
97
97
  */
98
98
  async getVariant(
@@ -112,7 +112,7 @@ export class VariantsApi extends runtime.BaseAPI {
112
112
  }
113
113
 
114
114
  /**
115
- * Lists all GFN variants available to the project. Can be filtered by product id, SKU, and attribute values using the search parameter.
115
+ * Lists all GFN variants available to the project. Can be filtered by product ID, SKU, and attribute values using the search parameter.
116
116
  * List GFN variants
117
117
  */
118
118
  async listVariantsRaw(requestParameters: ListVariantsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<VariantsResponse>> {
@@ -164,7 +164,7 @@ export class VariantsApi extends runtime.BaseAPI {
164
164
  }
165
165
 
166
166
  /**
167
- * Lists all GFN variants available to the project. Can be filtered by product id, SKU, and attribute values using the search parameter.
167
+ * Lists all GFN variants available to the project. Can be filtered by product ID, SKU, and attribute values using the search parameter.
168
168
  * List GFN variants
169
169
  */
170
170
  async listVariants(
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * GFN Catalog API
5
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
5
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
6
6
  *
7
- * The version of the OpenAPI document: 0.2.1
7
+ * The version of the OpenAPI document: 1.0.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * GFN Catalog API
5
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
5
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
6
6
  *
7
- * The version of the OpenAPI document: 0.2.1
7
+ * The version of the OpenAPI document: 1.0.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * GFN Catalog API
5
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
5
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
6
6
  *
7
- * The version of the OpenAPI document: 0.2.1
7
+ * The version of the OpenAPI document: 1.0.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * GFN Catalog API
5
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
5
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
6
6
  *
7
- * The version of the OpenAPI document: 0.2.1
7
+ * The version of the OpenAPI document: 1.0.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * GFN Catalog API
5
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
5
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
6
6
  *
7
- * The version of the OpenAPI document: 0.2.1
7
+ * The version of the OpenAPI document: 1.0.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,13 +13,6 @@
13
13
  */
14
14
 
15
15
  import { exists, mapValues } from '../runtime';
16
- import type { Image } from './Image';
17
- import {
18
- ImageFromJSON,
19
- ImageFromJSONTyped,
20
- ImageToJSON,
21
- } from './Image';
22
-
23
16
  /**
24
17
  *
25
18
  * @export
@@ -49,13 +42,7 @@ export interface Product {
49
42
  * @type {string}
50
43
  * @memberof Product
51
44
  */
52
- sku?: string;
53
- /**
54
- * Images
55
- * @type {Array<Image>}
56
- * @memberof Product
57
- */
58
- images?: Array<Image>;
45
+ styleCode?: string;
59
46
  }
60
47
 
61
48
  /**
@@ -81,8 +68,7 @@ export function ProductFromJSONTyped(json: any, ignoreDiscriminator: boolean): P
81
68
  'id': !exists(json, 'id') ? undefined : json['id'],
82
69
  'ref': !exists(json, 'ref') ? undefined : json['ref'],
83
70
  'title': json['title'],
84
- 'sku': !exists(json, 'sku') ? undefined : json['sku'],
85
- 'images': !exists(json, 'images') ? undefined : ((json['images'] as Array<any>).map(ImageFromJSON)),
71
+ 'styleCode': !exists(json, 'styleCode') ? undefined : json['styleCode'],
86
72
  };
87
73
  }
88
74
 
@@ -98,8 +84,7 @@ export function ProductToJSON(value?: Product | null): any {
98
84
  'id': value.id,
99
85
  'ref': value.ref,
100
86
  'title': value.title,
101
- 'sku': value.sku,
102
- 'images': value.images === undefined ? undefined : ((value.images as Array<any>).map(ImageToJSON)),
87
+ 'styleCode': value.styleCode,
103
88
  };
104
89
  }
105
90
 
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * GFN Catalog API
5
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
5
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
6
6
  *
7
- * The version of the OpenAPI document: 0.2.1
7
+ * The version of the OpenAPI document: 1.0.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * GFN Catalog API
5
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
5
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
6
6
  *
7
- * The version of the OpenAPI document: 0.2.1
7
+ * The version of the OpenAPI document: 1.0.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * GFN Catalog API
5
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
5
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
6
6
  *
7
- * The version of the OpenAPI document: 0.2.1
7
+ * The version of the OpenAPI document: 1.0.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * GFN Catalog API
5
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
5
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
6
6
  *
7
- * The version of the OpenAPI document: 0.2.1
7
+ * The version of the OpenAPI document: 1.0.0
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
@@ -2,9 +2,9 @@
2
2
  /* eslint-disable */
3
3
  /**
4
4
  * GFN Catalog API
5
- * Manage GFN Products For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
5
+ * Use this API to access the Global Fulfilment Network, which contains all the warehouse products and variants available to a given project. Warehouse products represent the base products that can be printed on. Products are the top level items, and variants are the different options available for each product. For example, a product might be a T-shirt, and each variant represents a different size and colour combination of that T-shirt. Use references to these warehouse products to create new product listings on your project via the Product Catalog API. Use the variant information to decide which options you would like to offer on each product listing.
6
6
  *
7
- * The version of the OpenAPI document: 0.2.1
7
+ * The version of the OpenAPI document: 1.0.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).