@teemill/gfn-catalog 3.3.1 → 3.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/gfn-catalog@3.3.1
1
+ ## @teemill/gfn-catalog@3.4.0
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). 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/gfn-catalog@3.3.1 --save
39
+ npm install @teemill/gfn-catalog@3.4.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * GFN Catalog API
5
5
  * Use this API to access the Global Fulfillment 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: 3.3.1
7
+ * The version of the OpenAPI document: 3.4.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -181,7 +181,7 @@ export interface Image {
181
181
  * @type {string}
182
182
  * @memberof Image
183
183
  */
184
- 'src'?: string;
184
+ 'src': string;
185
185
  /**
186
186
  *
187
187
  * @type {string}
@@ -270,6 +270,25 @@ export interface ListTransactions200Response {
270
270
  */
271
271
  'nextPageToken'?: number | null;
272
272
  }
273
+ /**
274
+ *
275
+ * @export
276
+ * @interface Location
277
+ */
278
+ export interface Location {
279
+ /**
280
+ * The total number of units available at the location
281
+ * @type {number}
282
+ * @memberof Location
283
+ */
284
+ 'level': number;
285
+ /**
286
+ * ISO alpha-2 country code
287
+ * @type {string}
288
+ * @memberof Location
289
+ */
290
+ 'country': string;
291
+ }
273
292
  /**
274
293
  *
275
294
  * @export
@@ -324,6 +343,12 @@ export interface Product {
324
343
  * @memberof Product
325
344
  */
326
345
  'attributes': Array<ProductAttribute>;
346
+ /**
347
+ * Images attached to the product. For example, photos of models using/wearing the product. This property currently does not include images linked to specific variants.
348
+ * @type {Array<ProductImagesInner>}
349
+ * @memberof Product
350
+ */
351
+ 'images'?: Array<ProductImagesInner>;
327
352
  /**
328
353
  * Variants
329
354
  * @type {Array<ProductVariantsInner>}
@@ -375,6 +400,37 @@ export interface ProductAttributeValuesInner {
375
400
  */
376
401
  'value': string;
377
402
  }
403
+ /**
404
+ *
405
+ * @export
406
+ * @interface ProductImagesInner
407
+ */
408
+ export interface ProductImagesInner {
409
+ /**
410
+ * Unique object identifier
411
+ * @type {string}
412
+ * @memberof ProductImagesInner
413
+ */
414
+ 'id': string;
415
+ /**
416
+ *
417
+ * @type {string}
418
+ * @memberof ProductImagesInner
419
+ */
420
+ 'src': string;
421
+ /**
422
+ *
423
+ * @type {string}
424
+ * @memberof ProductImagesInner
425
+ */
426
+ 'alt'?: string;
427
+ /**
428
+ *
429
+ * @type {number}
430
+ * @memberof ProductImagesInner
431
+ */
432
+ 'sortOrder'?: number;
433
+ }
378
434
  /**
379
435
  *
380
436
  * @export
@@ -480,6 +536,12 @@ export interface Stock {
480
536
  * @memberof Stock
481
537
  */
482
538
  'level'?: number;
539
+ /**
540
+ *
541
+ * @type {Array<Location>}
542
+ * @memberof Stock
543
+ */
544
+ 'locations'?: Array<Location>;
483
545
  }
484
546
  /**
485
547
  *
package/base.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * GFN Catalog API
5
5
  * Use this API to access the Global Fulfillment 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: 3.3.1
7
+ * The version of the OpenAPI document: 3.4.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/common.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * GFN Catalog API
5
5
  * Use this API to access the Global Fulfillment 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: 3.3.1
7
+ * The version of the OpenAPI document: 3.4.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/configuration.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * GFN Catalog API
5
5
  * Use this API to access the Global Fulfillment 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: 3.3.1
7
+ * The version of the OpenAPI document: 3.4.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -92,7 +92,7 @@ export class Configuration {
92
92
  this.baseOptions = {
93
93
  headers: {
94
94
  ...param.baseOptions?.headers,
95
- 'User-Agent': "OpenAPI-Generator/3.3.1/typescript-axios"
95
+ 'User-Agent': "OpenAPI-Generator/3.4.0/typescript-axios"
96
96
  },
97
97
  ...param.baseOptions
98
98
  };
package/dist/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * GFN Catalog API
3
3
  * Use this API to access the Global Fulfillment 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: 3.3.1
5
+ * The version of the OpenAPI document: 3.4.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -170,7 +170,7 @@ export interface Image {
170
170
  * @type {string}
171
171
  * @memberof Image
172
172
  */
173
- 'src'?: string;
173
+ 'src': string;
174
174
  /**
175
175
  *
176
176
  * @type {string}
@@ -259,6 +259,25 @@ export interface ListTransactions200Response {
259
259
  */
260
260
  'nextPageToken'?: number | null;
261
261
  }
262
+ /**
263
+ *
264
+ * @export
265
+ * @interface Location
266
+ */
267
+ export interface Location {
268
+ /**
269
+ * The total number of units available at the location
270
+ * @type {number}
271
+ * @memberof Location
272
+ */
273
+ 'level': number;
274
+ /**
275
+ * ISO alpha-2 country code
276
+ * @type {string}
277
+ * @memberof Location
278
+ */
279
+ 'country': string;
280
+ }
262
281
  /**
263
282
  *
264
283
  * @export
@@ -313,6 +332,12 @@ export interface Product {
313
332
  * @memberof Product
314
333
  */
315
334
  'attributes': Array<ProductAttribute>;
335
+ /**
336
+ * Images attached to the product. For example, photos of models using/wearing the product. This property currently does not include images linked to specific variants.
337
+ * @type {Array<ProductImagesInner>}
338
+ * @memberof Product
339
+ */
340
+ 'images'?: Array<ProductImagesInner>;
316
341
  /**
317
342
  * Variants
318
343
  * @type {Array<ProductVariantsInner>}
@@ -364,6 +389,37 @@ export interface ProductAttributeValuesInner {
364
389
  */
365
390
  'value': string;
366
391
  }
392
+ /**
393
+ *
394
+ * @export
395
+ * @interface ProductImagesInner
396
+ */
397
+ export interface ProductImagesInner {
398
+ /**
399
+ * Unique object identifier
400
+ * @type {string}
401
+ * @memberof ProductImagesInner
402
+ */
403
+ 'id': string;
404
+ /**
405
+ *
406
+ * @type {string}
407
+ * @memberof ProductImagesInner
408
+ */
409
+ 'src': string;
410
+ /**
411
+ *
412
+ * @type {string}
413
+ * @memberof ProductImagesInner
414
+ */
415
+ 'alt'?: string;
416
+ /**
417
+ *
418
+ * @type {number}
419
+ * @memberof ProductImagesInner
420
+ */
421
+ 'sortOrder'?: number;
422
+ }
367
423
  /**
368
424
  *
369
425
  * @export
@@ -469,6 +525,12 @@ export interface Stock {
469
525
  * @memberof Stock
470
526
  */
471
527
  'level'?: number;
528
+ /**
529
+ *
530
+ * @type {Array<Location>}
531
+ * @memberof Stock
532
+ */
533
+ 'locations'?: Array<Location>;
472
534
  }
473
535
  /**
474
536
  *
package/dist/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * GFN Catalog API
6
6
  * Use this API to access the Global Fulfillment 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: 3.3.1
8
+ * The version of the OpenAPI document: 3.4.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * GFN Catalog API
3
3
  * Use this API to access the Global Fulfillment 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: 3.3.1
5
+ * The version of the OpenAPI document: 3.4.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * GFN Catalog API
6
6
  * Use this API to access the Global Fulfillment 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: 3.3.1
8
+ * The version of the OpenAPI document: 3.4.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * GFN Catalog API
3
3
  * Use this API to access the Global Fulfillment 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: 3.3.1
5
+ * The version of the OpenAPI document: 3.4.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * GFN Catalog API
6
6
  * Use this API to access the Global Fulfillment 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: 3.3.1
8
+ * The version of the OpenAPI document: 3.4.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * GFN Catalog API
3
3
  * Use this API to access the Global Fulfillment 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: 3.3.1
5
+ * The version of the OpenAPI document: 3.4.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * GFN Catalog API
6
6
  * Use this API to access the Global Fulfillment 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: 3.3.1
8
+ * The version of the OpenAPI document: 3.4.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -23,7 +23,7 @@ class Configuration {
23
23
  this.accessToken = param.accessToken;
24
24
  this.basePath = param.basePath;
25
25
  this.serverIndex = param.serverIndex;
26
- this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/3.3.1/typescript-axios" }) }, param.baseOptions);
26
+ this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/3.4.0/typescript-axios" }) }, param.baseOptions);
27
27
  this.formDataCtor = param.formDataCtor;
28
28
  }
29
29
  /**
package/dist/esm/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * GFN Catalog API
3
3
  * Use this API to access the Global Fulfillment 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: 3.3.1
5
+ * The version of the OpenAPI document: 3.4.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -170,7 +170,7 @@ export interface Image {
170
170
  * @type {string}
171
171
  * @memberof Image
172
172
  */
173
- 'src'?: string;
173
+ 'src': string;
174
174
  /**
175
175
  *
176
176
  * @type {string}
@@ -259,6 +259,25 @@ export interface ListTransactions200Response {
259
259
  */
260
260
  'nextPageToken'?: number | null;
261
261
  }
262
+ /**
263
+ *
264
+ * @export
265
+ * @interface Location
266
+ */
267
+ export interface Location {
268
+ /**
269
+ * The total number of units available at the location
270
+ * @type {number}
271
+ * @memberof Location
272
+ */
273
+ 'level': number;
274
+ /**
275
+ * ISO alpha-2 country code
276
+ * @type {string}
277
+ * @memberof Location
278
+ */
279
+ 'country': string;
280
+ }
262
281
  /**
263
282
  *
264
283
  * @export
@@ -313,6 +332,12 @@ export interface Product {
313
332
  * @memberof Product
314
333
  */
315
334
  'attributes': Array<ProductAttribute>;
335
+ /**
336
+ * Images attached to the product. For example, photos of models using/wearing the product. This property currently does not include images linked to specific variants.
337
+ * @type {Array<ProductImagesInner>}
338
+ * @memberof Product
339
+ */
340
+ 'images'?: Array<ProductImagesInner>;
316
341
  /**
317
342
  * Variants
318
343
  * @type {Array<ProductVariantsInner>}
@@ -364,6 +389,37 @@ export interface ProductAttributeValuesInner {
364
389
  */
365
390
  'value': string;
366
391
  }
392
+ /**
393
+ *
394
+ * @export
395
+ * @interface ProductImagesInner
396
+ */
397
+ export interface ProductImagesInner {
398
+ /**
399
+ * Unique object identifier
400
+ * @type {string}
401
+ * @memberof ProductImagesInner
402
+ */
403
+ 'id': string;
404
+ /**
405
+ *
406
+ * @type {string}
407
+ * @memberof ProductImagesInner
408
+ */
409
+ 'src': string;
410
+ /**
411
+ *
412
+ * @type {string}
413
+ * @memberof ProductImagesInner
414
+ */
415
+ 'alt'?: string;
416
+ /**
417
+ *
418
+ * @type {number}
419
+ * @memberof ProductImagesInner
420
+ */
421
+ 'sortOrder'?: number;
422
+ }
367
423
  /**
368
424
  *
369
425
  * @export
@@ -469,6 +525,12 @@ export interface Stock {
469
525
  * @memberof Stock
470
526
  */
471
527
  'level'?: number;
528
+ /**
529
+ *
530
+ * @type {Array<Location>}
531
+ * @memberof Stock
532
+ */
533
+ 'locations'?: Array<Location>;
472
534
  }
473
535
  /**
474
536
  *
package/dist/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * GFN Catalog API
5
5
  * Use this API to access the Global Fulfillment 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: 3.3.1
7
+ * The version of the OpenAPI document: 3.4.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * GFN Catalog API
3
3
  * Use this API to access the Global Fulfillment 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: 3.3.1
5
+ * The version of the OpenAPI document: 3.4.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/base.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * GFN Catalog API
5
5
  * Use this API to access the Global Fulfillment 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: 3.3.1
7
+ * The version of the OpenAPI document: 3.4.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * GFN Catalog API
3
3
  * Use this API to access the Global Fulfillment 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: 3.3.1
5
+ * The version of the OpenAPI document: 3.4.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * GFN Catalog API
5
5
  * Use this API to access the Global Fulfillment 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: 3.3.1
7
+ * The version of the OpenAPI document: 3.4.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * GFN Catalog API
3
3
  * Use this API to access the Global Fulfillment 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: 3.3.1
5
+ * The version of the OpenAPI document: 3.4.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * GFN Catalog API
5
5
  * Use this API to access the Global Fulfillment 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: 3.3.1
7
+ * The version of the OpenAPI document: 3.4.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -20,7 +20,7 @@ export class Configuration {
20
20
  this.accessToken = param.accessToken;
21
21
  this.basePath = param.basePath;
22
22
  this.serverIndex = param.serverIndex;
23
- this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/3.3.1/typescript-axios" }) }, param.baseOptions);
23
+ this.baseOptions = Object.assign({ headers: Object.assign(Object.assign({}, (_a = param.baseOptions) === null || _a === void 0 ? void 0 : _a.headers), { 'User-Agent': "OpenAPI-Generator/3.4.0/typescript-axios" }) }, param.baseOptions);
24
24
  this.formDataCtor = param.formDataCtor;
25
25
  }
26
26
  /**
@@ -2,7 +2,7 @@
2
2
  * GFN Catalog API
3
3
  * Use this API to access the Global Fulfillment 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: 3.3.1
5
+ * The version of the OpenAPI document: 3.4.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * GFN Catalog API
5
5
  * Use this API to access the Global Fulfillment 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: 3.3.1
7
+ * The version of the OpenAPI document: 3.4.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * GFN Catalog API
3
3
  * Use this API to access the Global Fulfillment 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: 3.3.1
5
+ * The version of the OpenAPI document: 3.4.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * GFN Catalog API
6
6
  * Use this API to access the Global Fulfillment 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: 3.3.1
8
+ * The version of the OpenAPI document: 3.4.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * GFN Catalog API
5
5
  * Use this API to access the Global Fulfillment 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: 3.3.1
7
+ * The version of the OpenAPI document: 3.4.0
8
8
  *
9
9
  *
10
10
  * 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": "3.3.1",
3
+ "version": "3.4.0",
4
4
  "description": "OpenAPI client for @teemill/gfn-catalog",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {