@teemill/gfn-catalog 3.8.0 → 3.9.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.
@@ -5,6 +5,37 @@ api.ts
5
5
  base.ts
6
6
  common.ts
7
7
  configuration.ts
8
+ docs/ApiError.md
9
+ docs/ApiValidationError.md
10
+ docs/Attribute.md
11
+ docs/AttributeThumbnail.md
12
+ docs/ExportTransactionsRequest.md
13
+ docs/Fulfillment.md
14
+ docs/Image.md
15
+ docs/ListFulfillments200Response.md
16
+ docs/ListStatements200Response.md
17
+ docs/ListTransactions200Response.md
18
+ docs/Location.md
19
+ docs/Product.md
20
+ docs/ProductAttribute.md
21
+ docs/ProductAttributeValuesInner.md
22
+ docs/ProductBrand.md
23
+ docs/ProductImagesInner.md
24
+ docs/ProductVariantsInner.md
25
+ docs/ProductsApi.md
26
+ docs/ProductsResponse.md
27
+ docs/Statement.md
28
+ docs/StatementsApi.md
29
+ docs/Stock.md
30
+ docs/StockResponse.md
31
+ docs/Transaction.md
32
+ docs/TransactionsApi.md
33
+ docs/Variant.md
34
+ docs/VariantManufacturerOrigin.md
35
+ docs/VariantProduct.md
36
+ docs/VariantStock.md
37
+ docs/VariantsApi.md
38
+ docs/VariantsResponse.md
8
39
  git_push.sh
9
40
  index.ts
10
41
  package.json
@@ -1 +1 @@
1
- 7.7.0
1
+ 7.20.0
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/gfn-catalog@3.8.0
1
+ ## @teemill/gfn-catalog@3.9.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.8.0 --save
39
+ npm install @teemill/gfn-catalog@3.9.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
  /**
4
- * GFN Catalog API
4
+ * GFN Catalog
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.8.0
7
+ * The version of the OpenAPI document: 3.9.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,7 +18,7 @@ import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
18
18
  import globalAxios from 'axios';
19
19
  // Some imports not used depending on template conditions
20
20
  // @ts-ignore
21
- import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from './common';
21
+ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction, replaceWithSerializableTypeIfNeeded } from './common';
22
22
  import type { RequestArgs } from './base';
23
23
  // @ts-ignore
24
24
  import { BASE_PATH, COLLECTION_FORMATS, BaseAPI, RequiredError, operationServerMap } from './base';
@@ -307,6 +307,11 @@ export interface VariantStock {
307
307
  * Unique object identifier
308
308
  */
309
309
  'id'?: string;
310
+ /**
311
+ * The product name of the variant stock
312
+ */
313
+ 'name'?: string;
314
+ 'sku'?: string;
310
315
  /**
311
316
  * A reference to the resource location
312
317
  */
@@ -369,8 +374,8 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
369
374
  localVarQueryParameter['fields'] = fields;
370
375
  }
371
376
 
377
+ localVarHeaderParameter['Accept'] = 'application/json';
372
378
 
373
-
374
379
  setSearchParams(localVarUrlObj, localVarQueryParameter);
375
380
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
376
381
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -433,8 +438,8 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
433
438
  localVarQueryParameter['search'] = search;
434
439
  }
435
440
 
441
+ localVarHeaderParameter['Accept'] = 'application/json';
436
442
 
437
-
438
443
  setSearchParams(localVarUrlObj, localVarQueryParameter);
439
444
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
440
445
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -635,8 +640,8 @@ export const StatementsApiAxiosParamCreator = function (configuration?: Configur
635
640
  localVarQueryParameter['project'] = project;
636
641
  }
637
642
 
643
+ localVarHeaderParameter['Accept'] = 'application/json';
638
644
 
639
-
640
645
  setSearchParams(localVarUrlObj, localVarQueryParameter);
641
646
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
642
647
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -694,8 +699,8 @@ export const StatementsApiAxiosParamCreator = function (configuration?: Configur
694
699
  localVarQueryParameter['search'] = search;
695
700
  }
696
701
 
702
+ localVarHeaderParameter['Accept'] = 'application/json';
697
703
 
698
-
699
704
  setSearchParams(localVarUrlObj, localVarQueryParameter);
700
705
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
701
706
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -883,9 +888,8 @@ export const TransactionsApiAxiosParamCreator = function (configuration?: Config
883
888
  localVarQueryParameter['project'] = project;
884
889
  }
885
890
 
886
-
887
-
888
891
  localVarHeaderParameter['Content-Type'] = 'application/json';
892
+ localVarHeaderParameter['Accept'] = 'text/csv; charset=utf-8,application/json';
889
893
 
890
894
  setSearchParams(localVarUrlObj, localVarQueryParameter);
891
895
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -934,8 +938,8 @@ export const TransactionsApiAxiosParamCreator = function (configuration?: Config
934
938
  localVarQueryParameter['project'] = project;
935
939
  }
936
940
 
941
+ localVarHeaderParameter['Accept'] = 'application/json';
937
942
 
938
-
939
943
  setSearchParams(localVarUrlObj, localVarQueryParameter);
940
944
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
941
945
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -993,8 +997,8 @@ export const TransactionsApiAxiosParamCreator = function (configuration?: Config
993
997
  localVarQueryParameter['statementId'] = statementId;
994
998
  }
995
999
 
1000
+ localVarHeaderParameter['Accept'] = 'application/json';
996
1001
 
997
-
998
1002
  setSearchParams(localVarUrlObj, localVarQueryParameter);
999
1003
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1000
1004
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -1062,8 +1066,8 @@ export const TransactionsApiAxiosParamCreator = function (configuration?: Config
1062
1066
  localVarQueryParameter['search'] = search;
1063
1067
  }
1064
1068
 
1069
+ localVarHeaderParameter['Accept'] = 'application/json';
1065
1070
 
1066
-
1067
1071
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1068
1072
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1069
1073
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -1372,8 +1376,8 @@ export const VariantsApiAxiosParamCreator = function (configuration?: Configurat
1372
1376
  localVarQueryParameter['fulfillmentProjects'] = fulfillmentProjects;
1373
1377
  }
1374
1378
 
1379
+ localVarHeaderParameter['Accept'] = 'application/json';
1375
1380
 
1376
-
1377
1381
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1378
1382
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1379
1383
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -1425,8 +1429,8 @@ export const VariantsApiAxiosParamCreator = function (configuration?: Configurat
1425
1429
  localVarQueryParameter['fields'] = fields;
1426
1430
  }
1427
1431
 
1432
+ localVarHeaderParameter['Accept'] = 'application/json';
1428
1433
 
1429
-
1430
1434
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1431
1435
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1432
1436
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -1489,8 +1493,8 @@ export const VariantsApiAxiosParamCreator = function (configuration?: Configurat
1489
1493
  localVarQueryParameter['search'] = search;
1490
1494
  }
1491
1495
 
1496
+ localVarHeaderParameter['Accept'] = 'application/json';
1492
1497
 
1493
-
1494
1498
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1495
1499
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1496
1500
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -1553,8 +1557,8 @@ export const VariantsApiAxiosParamCreator = function (configuration?: Configurat
1553
1557
  localVarQueryParameter['search'] = search;
1554
1558
  }
1555
1559
 
1560
+ localVarHeaderParameter['Accept'] = 'application/json';
1556
1561
 
1557
-
1558
1562
  setSearchParams(localVarUrlObj, localVarQueryParameter);
1559
1563
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1560
1564
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
package/base.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
  /**
4
- * GFN Catalog API
4
+ * GFN Catalog
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.8.0
7
+ * The version of the OpenAPI document: 3.9.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/common.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
  /**
4
- * GFN Catalog API
4
+ * GFN Catalog
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.8.0
7
+ * The version of the OpenAPI document: 3.9.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/configuration.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  /* tslint:disable */
2
2
  /**
3
- * GFN Catalog API
3
+ * GFN Catalog
4
4
  * 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.
5
5
  *
6
- * The version of the OpenAPI document: 3.8.0
6
+ * The version of the OpenAPI document: 3.9.0
7
7
  *
8
8
  *
9
9
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/api.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  /**
2
- * GFN Catalog API
2
+ * GFN Catalog
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.8.0
5
+ * The version of the OpenAPI document: 3.9.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -293,6 +293,11 @@ export interface VariantStock {
293
293
  * Unique object identifier
294
294
  */
295
295
  'id'?: string;
296
+ /**
297
+ * The product name of the variant stock
298
+ */
299
+ 'name'?: string;
300
+ 'sku'?: string;
296
301
  /**
297
302
  * A reference to the resource location
298
303
  */
package/dist/api.js CHANGED
@@ -2,10 +2,10 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
  /**
5
- * GFN Catalog API
5
+ * GFN Catalog
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.8.0
8
+ * The version of the OpenAPI document: 3.9.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -80,6 +80,7 @@ const ProductsApiAxiosParamCreator = function (configuration) {
80
80
  if (fields !== undefined) {
81
81
  localVarQueryParameter['fields'] = fields;
82
82
  }
83
+ localVarHeaderParameter['Accept'] = 'application/json';
83
84
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
84
85
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
85
86
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -132,6 +133,7 @@ const ProductsApiAxiosParamCreator = function (configuration) {
132
133
  if (search !== undefined) {
133
134
  localVarQueryParameter['search'] = search;
134
135
  }
136
+ localVarHeaderParameter['Accept'] = 'application/json';
135
137
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
136
138
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
137
139
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -282,6 +284,7 @@ const StatementsApiAxiosParamCreator = function (configuration) {
282
284
  if (project !== undefined) {
283
285
  localVarQueryParameter['project'] = project;
284
286
  }
287
+ localVarHeaderParameter['Accept'] = 'application/json';
285
288
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
286
289
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
287
290
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -330,6 +333,7 @@ const StatementsApiAxiosParamCreator = function (configuration) {
330
333
  if (search !== undefined) {
331
334
  localVarQueryParameter['search'] = search;
332
335
  }
336
+ localVarHeaderParameter['Accept'] = 'application/json';
333
337
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
334
338
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
335
339
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -478,6 +482,7 @@ const TransactionsApiAxiosParamCreator = function (configuration) {
478
482
  localVarQueryParameter['project'] = project;
479
483
  }
480
484
  localVarHeaderParameter['Content-Type'] = 'application/json';
485
+ localVarHeaderParameter['Accept'] = 'text/csv; charset=utf-8,application/json';
481
486
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
482
487
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
483
488
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -519,6 +524,7 @@ const TransactionsApiAxiosParamCreator = function (configuration) {
519
524
  if (project !== undefined) {
520
525
  localVarQueryParameter['project'] = project;
521
526
  }
527
+ localVarHeaderParameter['Accept'] = 'application/json';
522
528
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
523
529
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
524
530
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -567,6 +573,7 @@ const TransactionsApiAxiosParamCreator = function (configuration) {
567
573
  if (statementId !== undefined) {
568
574
  localVarQueryParameter['statementId'] = statementId;
569
575
  }
576
+ localVarHeaderParameter['Accept'] = 'application/json';
570
577
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
571
578
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
572
579
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -623,6 +630,7 @@ const TransactionsApiAxiosParamCreator = function (configuration) {
623
630
  if (search !== undefined) {
624
631
  localVarQueryParameter['search'] = search;
625
632
  }
633
+ localVarHeaderParameter['Accept'] = 'application/json';
626
634
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
627
635
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
628
636
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -853,6 +861,7 @@ const VariantsApiAxiosParamCreator = function (configuration) {
853
861
  if (fulfillmentProjects !== undefined) {
854
862
  localVarQueryParameter['fulfillmentProjects'] = fulfillmentProjects;
855
863
  }
864
+ localVarHeaderParameter['Accept'] = 'application/json';
856
865
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
857
866
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
858
867
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -897,6 +906,7 @@ const VariantsApiAxiosParamCreator = function (configuration) {
897
906
  if (fields !== undefined) {
898
907
  localVarQueryParameter['fields'] = fields;
899
908
  }
909
+ localVarHeaderParameter['Accept'] = 'application/json';
900
910
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
901
911
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
902
912
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -949,6 +959,7 @@ const VariantsApiAxiosParamCreator = function (configuration) {
949
959
  if (search !== undefined) {
950
960
  localVarQueryParameter['search'] = search;
951
961
  }
962
+ localVarHeaderParameter['Accept'] = 'application/json';
952
963
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
953
964
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
954
965
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -1001,6 +1012,7 @@ const VariantsApiAxiosParamCreator = function (configuration) {
1001
1012
  if (search !== undefined) {
1002
1013
  localVarQueryParameter['search'] = search;
1003
1014
  }
1015
+ localVarHeaderParameter['Accept'] = 'application/json';
1004
1016
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
1005
1017
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
1006
1018
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
package/dist/base.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  /**
2
- * GFN Catalog API
2
+ * GFN Catalog
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.8.0
5
+ * The version of the OpenAPI document: 3.9.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
@@ -2,10 +2,10 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
  /**
5
- * GFN Catalog API
5
+ * GFN Catalog
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.8.0
8
+ * The version of the OpenAPI document: 3.9.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
@@ -1,8 +1,8 @@
1
1
  /**
2
- * GFN Catalog API
2
+ * GFN Catalog
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.8.0
5
+ * The version of the OpenAPI document: 3.9.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
@@ -2,10 +2,10 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
  /**
5
- * GFN Catalog API
5
+ * GFN Catalog
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.8.0
8
+ * The version of the OpenAPI document: 3.9.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
- * GFN Catalog API
2
+ * GFN Catalog
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.8.0
5
+ * The version of the OpenAPI document: 3.9.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,10 +1,10 @@
1
1
  "use strict";
2
2
  /* tslint:disable */
3
3
  /**
4
- * GFN Catalog API
4
+ * GFN Catalog
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.8.0
7
+ * The version of the OpenAPI document: 3.9.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/api.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  /**
2
- * GFN Catalog API
2
+ * GFN Catalog
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.8.0
5
+ * The version of the OpenAPI document: 3.9.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -293,6 +293,11 @@ export interface VariantStock {
293
293
  * Unique object identifier
294
294
  */
295
295
  'id'?: string;
296
+ /**
297
+ * The product name of the variant stock
298
+ */
299
+ 'name'?: string;
300
+ 'sku'?: string;
296
301
  /**
297
302
  * A reference to the resource location
298
303
  */
package/dist/esm/api.js CHANGED
@@ -1,10 +1,10 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
  /**
4
- * GFN Catalog API
4
+ * GFN Catalog
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.8.0
7
+ * The version of the OpenAPI document: 3.9.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -77,6 +77,7 @@ export const ProductsApiAxiosParamCreator = function (configuration) {
77
77
  if (fields !== undefined) {
78
78
  localVarQueryParameter['fields'] = fields;
79
79
  }
80
+ localVarHeaderParameter['Accept'] = 'application/json';
80
81
  setSearchParams(localVarUrlObj, localVarQueryParameter);
81
82
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
82
83
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -129,6 +130,7 @@ export const ProductsApiAxiosParamCreator = function (configuration) {
129
130
  if (search !== undefined) {
130
131
  localVarQueryParameter['search'] = search;
131
132
  }
133
+ localVarHeaderParameter['Accept'] = 'application/json';
132
134
  setSearchParams(localVarUrlObj, localVarQueryParameter);
133
135
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
134
136
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -275,6 +277,7 @@ export const StatementsApiAxiosParamCreator = function (configuration) {
275
277
  if (project !== undefined) {
276
278
  localVarQueryParameter['project'] = project;
277
279
  }
280
+ localVarHeaderParameter['Accept'] = 'application/json';
278
281
  setSearchParams(localVarUrlObj, localVarQueryParameter);
279
282
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
280
283
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -323,6 +326,7 @@ export const StatementsApiAxiosParamCreator = function (configuration) {
323
326
  if (search !== undefined) {
324
327
  localVarQueryParameter['search'] = search;
325
328
  }
329
+ localVarHeaderParameter['Accept'] = 'application/json';
326
330
  setSearchParams(localVarUrlObj, localVarQueryParameter);
327
331
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
328
332
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -467,6 +471,7 @@ export const TransactionsApiAxiosParamCreator = function (configuration) {
467
471
  localVarQueryParameter['project'] = project;
468
472
  }
469
473
  localVarHeaderParameter['Content-Type'] = 'application/json';
474
+ localVarHeaderParameter['Accept'] = 'text/csv; charset=utf-8,application/json';
470
475
  setSearchParams(localVarUrlObj, localVarQueryParameter);
471
476
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
472
477
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -508,6 +513,7 @@ export const TransactionsApiAxiosParamCreator = function (configuration) {
508
513
  if (project !== undefined) {
509
514
  localVarQueryParameter['project'] = project;
510
515
  }
516
+ localVarHeaderParameter['Accept'] = 'application/json';
511
517
  setSearchParams(localVarUrlObj, localVarQueryParameter);
512
518
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
513
519
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -556,6 +562,7 @@ export const TransactionsApiAxiosParamCreator = function (configuration) {
556
562
  if (statementId !== undefined) {
557
563
  localVarQueryParameter['statementId'] = statementId;
558
564
  }
565
+ localVarHeaderParameter['Accept'] = 'application/json';
559
566
  setSearchParams(localVarUrlObj, localVarQueryParameter);
560
567
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
561
568
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -612,6 +619,7 @@ export const TransactionsApiAxiosParamCreator = function (configuration) {
612
619
  if (search !== undefined) {
613
620
  localVarQueryParameter['search'] = search;
614
621
  }
622
+ localVarHeaderParameter['Accept'] = 'application/json';
615
623
  setSearchParams(localVarUrlObj, localVarQueryParameter);
616
624
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
617
625
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -838,6 +846,7 @@ export const VariantsApiAxiosParamCreator = function (configuration) {
838
846
  if (fulfillmentProjects !== undefined) {
839
847
  localVarQueryParameter['fulfillmentProjects'] = fulfillmentProjects;
840
848
  }
849
+ localVarHeaderParameter['Accept'] = 'application/json';
841
850
  setSearchParams(localVarUrlObj, localVarQueryParameter);
842
851
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
843
852
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -882,6 +891,7 @@ export const VariantsApiAxiosParamCreator = function (configuration) {
882
891
  if (fields !== undefined) {
883
892
  localVarQueryParameter['fields'] = fields;
884
893
  }
894
+ localVarHeaderParameter['Accept'] = 'application/json';
885
895
  setSearchParams(localVarUrlObj, localVarQueryParameter);
886
896
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
887
897
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -934,6 +944,7 @@ export const VariantsApiAxiosParamCreator = function (configuration) {
934
944
  if (search !== undefined) {
935
945
  localVarQueryParameter['search'] = search;
936
946
  }
947
+ localVarHeaderParameter['Accept'] = 'application/json';
937
948
  setSearchParams(localVarUrlObj, localVarQueryParameter);
938
949
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
939
950
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -986,6 +997,7 @@ export const VariantsApiAxiosParamCreator = function (configuration) {
986
997
  if (search !== undefined) {
987
998
  localVarQueryParameter['search'] = search;
988
999
  }
1000
+ localVarHeaderParameter['Accept'] = 'application/json';
989
1001
  setSearchParams(localVarUrlObj, localVarQueryParameter);
990
1002
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
991
1003
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -1,8 +1,8 @@
1
1
  /**
2
- * GFN Catalog API
2
+ * GFN Catalog
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.8.0
5
+ * The version of the OpenAPI document: 3.9.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
@@ -1,10 +1,10 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
  /**
4
- * GFN Catalog API
4
+ * GFN Catalog
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.8.0
7
+ * The version of the OpenAPI document: 3.9.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
- * GFN Catalog API
2
+ * GFN Catalog
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.8.0
5
+ * The version of the OpenAPI document: 3.9.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,10 +1,10 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
  /**
4
- * GFN Catalog API
4
+ * GFN Catalog
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.8.0
7
+ * The version of the OpenAPI document: 3.9.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
- * GFN Catalog API
2
+ * GFN Catalog
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.8.0
5
+ * The version of the OpenAPI document: 3.9.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,9 +1,9 @@
1
1
  /* tslint:disable */
2
2
  /**
3
- * GFN Catalog API
3
+ * GFN Catalog
4
4
  * 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.
5
5
  *
6
- * The version of the OpenAPI document: 3.8.0
6
+ * The version of the OpenAPI document: 3.9.0
7
7
  *
8
8
  *
9
9
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
- * GFN Catalog API
2
+ * GFN Catalog
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.8.0
5
+ * The version of the OpenAPI document: 3.9.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
@@ -1,10 +1,10 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
  /**
4
- * GFN Catalog API
4
+ * GFN Catalog
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.8.0
7
+ * The version of the OpenAPI document: 3.9.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
@@ -1,8 +1,8 @@
1
1
  /**
2
- * GFN Catalog API
2
+ * GFN Catalog
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.8.0
5
+ * The version of the OpenAPI document: 3.9.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
@@ -2,10 +2,10 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
  /**
5
- * GFN Catalog API
5
+ * GFN Catalog
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.8.0
8
+ * The version of the OpenAPI document: 3.9.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -6,6 +6,8 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **id** | **string** | Unique object identifier | [optional] [default to undefined]
9
+ **name** | **string** | The product name of the variant stock | [optional] [default to undefined]
10
+ **sku** | **string** | | [optional] [default to undefined]
9
11
  **ref** | **string** | A reference to the resource location | [optional] [default to undefined]
10
12
  **productRef** | **string** | A reference to the resource location | [optional] [default to undefined]
11
13
  **stock** | [**Stock**](Stock.md) | | [optional] [default to undefined]
@@ -17,6 +19,8 @@ import { VariantStock } from '@teemill/gfn-catalog';
17
19
 
18
20
  const instance: VariantStock = {
19
21
  id,
22
+ name,
23
+ sku,
20
24
  ref,
21
25
  productRef,
22
26
  stock,
package/index.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
  /**
4
- * GFN Catalog API
4
+ * GFN Catalog
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.8.0
7
+ * The version of the OpenAPI document: 3.9.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.8.0",
3
+ "version": "3.9.0",
4
4
  "description": "OpenAPI client for @teemill/gfn-catalog",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -24,7 +24,7 @@
24
24
  "prepare": "npm run build"
25
25
  },
26
26
  "dependencies": {
27
- "axios": "1.12.2"
27
+ "axios": "1.13.5"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/node": "12.11.5 - 12.20.42",