@teemill/gfn-catalog 3.8.0 → 3.8.1
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 +2 -2
- package/api.ts +14 -15
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +1 -1
- package/dist/api.js +13 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +1 -1
- package/dist/esm/api.js +13 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/gfn-catalog@3.8.
|
|
1
|
+
## @teemill/gfn-catalog@3.8.1
|
|
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.
|
|
39
|
+
npm install @teemill/gfn-catalog@3.8.1 --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.8.
|
|
7
|
+
* The version of the OpenAPI document: 3.8.1
|
|
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';
|
|
@@ -369,8 +369,8 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
369
369
|
localVarQueryParameter['fields'] = fields;
|
|
370
370
|
}
|
|
371
371
|
|
|
372
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
372
373
|
|
|
373
|
-
|
|
374
374
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
375
375
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
376
376
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -433,8 +433,8 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
433
433
|
localVarQueryParameter['search'] = search;
|
|
434
434
|
}
|
|
435
435
|
|
|
436
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
436
437
|
|
|
437
|
-
|
|
438
438
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
439
439
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
440
440
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -635,8 +635,8 @@ export const StatementsApiAxiosParamCreator = function (configuration?: Configur
|
|
|
635
635
|
localVarQueryParameter['project'] = project;
|
|
636
636
|
}
|
|
637
637
|
|
|
638
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
638
639
|
|
|
639
|
-
|
|
640
640
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
641
641
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
642
642
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -694,8 +694,8 @@ export const StatementsApiAxiosParamCreator = function (configuration?: Configur
|
|
|
694
694
|
localVarQueryParameter['search'] = search;
|
|
695
695
|
}
|
|
696
696
|
|
|
697
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
697
698
|
|
|
698
|
-
|
|
699
699
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
700
700
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
701
701
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -883,9 +883,8 @@ export const TransactionsApiAxiosParamCreator = function (configuration?: Config
|
|
|
883
883
|
localVarQueryParameter['project'] = project;
|
|
884
884
|
}
|
|
885
885
|
|
|
886
|
-
|
|
887
|
-
|
|
888
886
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
887
|
+
localVarHeaderParameter['Accept'] = 'text/csv; charset=utf-8,application/json';
|
|
889
888
|
|
|
890
889
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
891
890
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -934,8 +933,8 @@ export const TransactionsApiAxiosParamCreator = function (configuration?: Config
|
|
|
934
933
|
localVarQueryParameter['project'] = project;
|
|
935
934
|
}
|
|
936
935
|
|
|
936
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
937
937
|
|
|
938
|
-
|
|
939
938
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
940
939
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
941
940
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -993,8 +992,8 @@ export const TransactionsApiAxiosParamCreator = function (configuration?: Config
|
|
|
993
992
|
localVarQueryParameter['statementId'] = statementId;
|
|
994
993
|
}
|
|
995
994
|
|
|
995
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
996
996
|
|
|
997
|
-
|
|
998
997
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
999
998
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1000
999
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -1062,8 +1061,8 @@ export const TransactionsApiAxiosParamCreator = function (configuration?: Config
|
|
|
1062
1061
|
localVarQueryParameter['search'] = search;
|
|
1063
1062
|
}
|
|
1064
1063
|
|
|
1064
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
1065
1065
|
|
|
1066
|
-
|
|
1067
1066
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1068
1067
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1069
1068
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -1372,8 +1371,8 @@ export const VariantsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
1372
1371
|
localVarQueryParameter['fulfillmentProjects'] = fulfillmentProjects;
|
|
1373
1372
|
}
|
|
1374
1373
|
|
|
1374
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
1375
1375
|
|
|
1376
|
-
|
|
1377
1376
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1378
1377
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1379
1378
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -1425,8 +1424,8 @@ export const VariantsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
1425
1424
|
localVarQueryParameter['fields'] = fields;
|
|
1426
1425
|
}
|
|
1427
1426
|
|
|
1427
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
1428
1428
|
|
|
1429
|
-
|
|
1430
1429
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1431
1430
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1432
1431
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -1489,8 +1488,8 @@ export const VariantsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
1489
1488
|
localVarQueryParameter['search'] = search;
|
|
1490
1489
|
}
|
|
1491
1490
|
|
|
1491
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
1492
1492
|
|
|
1493
|
-
|
|
1494
1493
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1495
1494
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1496
1495
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -1553,8 +1552,8 @@ export const VariantsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
1553
1552
|
localVarQueryParameter['search'] = search;
|
|
1554
1553
|
}
|
|
1555
1554
|
|
|
1555
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
1556
1556
|
|
|
1557
|
-
|
|
1558
1557
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1559
1558
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1560
1559
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
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.8.
|
|
7
|
+
* The version of the OpenAPI document: 3.8.1
|
|
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.8.
|
|
7
|
+
* The version of the OpenAPI document: 3.8.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* GFN Catalog API
|
|
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.
|
|
6
|
+
* The version of the OpenAPI document: 3.8.1
|
|
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
|
@@ -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.8.
|
|
5
|
+
* The version of the OpenAPI document: 3.8.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
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.8.
|
|
8
|
+
* The version of the OpenAPI document: 3.8.1
|
|
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
|
@@ -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.8.
|
|
5
|
+
* The version of the OpenAPI document: 3.8.1
|
|
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.8.
|
|
8
|
+
* The version of the OpenAPI document: 3.8.1
|
|
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.8.
|
|
5
|
+
* The version of the OpenAPI document: 3.8.1
|
|
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.8.
|
|
8
|
+
* The version of the OpenAPI document: 3.8.1
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.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.8.
|
|
5
|
+
* The version of the OpenAPI document: 3.8.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.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.8.
|
|
7
|
+
* The version of the OpenAPI document: 3.8.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* 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.8.
|
|
5
|
+
* The version of the OpenAPI document: 3.8.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
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.8.
|
|
7
|
+
* The version of the OpenAPI document: 3.8.1
|
|
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);
|
package/dist/esm/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.8.
|
|
5
|
+
* The version of the OpenAPI document: 3.8.1
|
|
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.8.
|
|
7
|
+
* The version of the OpenAPI document: 3.8.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/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.8.
|
|
5
|
+
* The version of the OpenAPI document: 3.8.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.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.8.
|
|
7
|
+
* The version of the OpenAPI document: 3.8.1
|
|
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.8.
|
|
5
|
+
* The version of the OpenAPI document: 3.8.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* GFN Catalog API
|
|
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.
|
|
6
|
+
* The version of the OpenAPI document: 3.8.1
|
|
7
7
|
*
|
|
8
8
|
*
|
|
9
9
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/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.8.
|
|
5
|
+
* The version of the OpenAPI document: 3.8.1
|
|
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.8.
|
|
7
|
+
* The version of the OpenAPI document: 3.8.1
|
|
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.8.
|
|
5
|
+
* The version of the OpenAPI document: 3.8.1
|
|
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.8.
|
|
8
|
+
* The version of the OpenAPI document: 3.8.1
|
|
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.8.
|
|
7
|
+
* The version of the OpenAPI document: 3.8.1
|
|
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.
|
|
3
|
+
"version": "3.8.1",
|
|
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.
|
|
27
|
+
"axios": "1.13.5"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/node": "12.11.5 - 12.20.42",
|