@teemill/product-catalog 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/apis/ProductsApi.d.ts +3 -3
- package/dist/apis/ProductsApi.js +35 -15
- package/dist/apis/VariantsApi.d.ts +3 -3
- package/dist/apis/VariantsApi.js +35 -15
- package/dist/models/ApiError.d.ts +1 -1
- package/dist/models/ApiError.js +1 -1
- package/dist/models/Attribute.d.ts +1 -1
- package/dist/models/Attribute.js +1 -1
- package/dist/models/AttributeThumbnail.d.ts +1 -1
- package/dist/models/AttributeThumbnail.js +1 -1
- package/dist/models/Image.d.ts +1 -1
- package/dist/models/Image.js +1 -1
- package/dist/models/Price.d.ts +1 -1
- package/dist/models/Price.js +1 -1
- package/dist/models/Product.d.ts +1 -1
- package/dist/models/Product.js +1 -1
- package/dist/models/ProductsResponse.d.ts +1 -1
- package/dist/models/ProductsResponse.js +1 -1
- package/dist/models/Stock.d.ts +1 -1
- package/dist/models/Stock.js +1 -1
- package/dist/models/Variant.d.ts +1 -1
- package/dist/models/Variant.js +1 -1
- package/dist/models/VariantProduct.d.ts +1 -1
- package/dist/models/VariantProduct.js +1 -1
- package/dist/models/VariantsResponse.d.ts +1 -1
- package/dist/models/VariantsResponse.js +1 -1
- package/dist/runtime.d.ts +1 -1
- package/dist/runtime.js +1 -1
- package/package.json +1 -1
- package/src/apis/ProductsApi.ts +15 -5
- package/src/apis/VariantsApi.ts +15 -5
- package/src/models/ApiError.ts +1 -1
- package/src/models/Attribute.ts +1 -1
- package/src/models/AttributeThumbnail.ts +1 -1
- package/src/models/Image.ts +1 -1
- package/src/models/Price.ts +1 -1
- package/src/models/Product.ts +1 -1
- package/src/models/ProductsResponse.ts +1 -1
- package/src/models/Stock.ts +1 -1
- package/src/models/Variant.ts +1 -1
- package/src/models/VariantProduct.ts +1 -1
- package/src/models/VariantsResponse.ts +1 -1
- package/src/runtime.ts +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/product-catalog@1.
|
|
1
|
+
## @teemill/product-catalog@1.2.0
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @teemill/product-catalog@1.
|
|
39
|
+
npm install @teemill/product-catalog@1.2.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.2.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -35,7 +35,7 @@ export declare class ProductsApi extends runtime.BaseAPI {
|
|
|
35
35
|
* Gets a product by the given id
|
|
36
36
|
* Get product
|
|
37
37
|
*/
|
|
38
|
-
getProduct(
|
|
38
|
+
getProduct(project: string, productId: string, fields?: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Product>;
|
|
39
39
|
/**
|
|
40
40
|
* Lists all products
|
|
41
41
|
* List products
|
|
@@ -45,5 +45,5 @@ export declare class ProductsApi extends runtime.BaseAPI {
|
|
|
45
45
|
* Lists all products
|
|
46
46
|
* List products
|
|
47
47
|
*/
|
|
48
|
-
getProducts(
|
|
48
|
+
getProducts(project: string, pageToken?: number, pageSize?: number, fields?: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ProductsResponse>;
|
|
49
49
|
}
|
package/dist/apis/ProductsApi.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.2.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -81,9 +81,9 @@ var ProductsApi = /** @class */ (function (_super) {
|
|
|
81
81
|
*/
|
|
82
82
|
ProductsApi.prototype.getProductRaw = function (requestParameters, initOverrides) {
|
|
83
83
|
return __awaiter(this, void 0, void 0, function () {
|
|
84
|
-
var queryParameters, headerParameters, response;
|
|
85
|
-
return __generator(this, function (
|
|
86
|
-
switch (
|
|
84
|
+
var queryParameters, headerParameters, _a, _b, response;
|
|
85
|
+
return __generator(this, function (_c) {
|
|
86
|
+
switch (_c.label) {
|
|
87
87
|
case 0:
|
|
88
88
|
if (requestParameters.project === null || requestParameters.project === undefined) {
|
|
89
89
|
throw new runtime.RequiredError('project', 'Required parameter requestParameters.project was null or undefined when calling getProduct.');
|
|
@@ -99,6 +99,16 @@ var ProductsApi = /** @class */ (function (_super) {
|
|
|
99
99
|
queryParameters['fields'] = requestParameters.fields;
|
|
100
100
|
}
|
|
101
101
|
headerParameters = {};
|
|
102
|
+
if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 2];
|
|
103
|
+
// oauth required
|
|
104
|
+
_a = headerParameters;
|
|
105
|
+
_b = "Authorization";
|
|
106
|
+
return [4 /*yield*/, this.configuration.accessToken("session-oauth", [])];
|
|
107
|
+
case 1:
|
|
108
|
+
// oauth required
|
|
109
|
+
_a[_b] = _c.sent();
|
|
110
|
+
_c.label = 2;
|
|
111
|
+
case 2:
|
|
102
112
|
if (this.configuration && this.configuration.apiKey) {
|
|
103
113
|
headerParameters["Authorization"] = this.configuration.apiKey("Authorization"); // api-key authentication
|
|
104
114
|
}
|
|
@@ -108,8 +118,8 @@ var ProductsApi = /** @class */ (function (_super) {
|
|
|
108
118
|
headers: headerParameters,
|
|
109
119
|
query: queryParameters,
|
|
110
120
|
}, initOverrides)];
|
|
111
|
-
case
|
|
112
|
-
response =
|
|
121
|
+
case 3:
|
|
122
|
+
response = _c.sent();
|
|
113
123
|
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.ProductFromJSON)(jsonValue); })];
|
|
114
124
|
}
|
|
115
125
|
});
|
|
@@ -119,12 +129,12 @@ var ProductsApi = /** @class */ (function (_super) {
|
|
|
119
129
|
* Gets a product by the given id
|
|
120
130
|
* Get product
|
|
121
131
|
*/
|
|
122
|
-
ProductsApi.prototype.getProduct = function (
|
|
132
|
+
ProductsApi.prototype.getProduct = function (project, productId, fields, initOverrides) {
|
|
123
133
|
return __awaiter(this, void 0, void 0, function () {
|
|
124
134
|
var response;
|
|
125
135
|
return __generator(this, function (_a) {
|
|
126
136
|
switch (_a.label) {
|
|
127
|
-
case 0: return [4 /*yield*/, this.getProductRaw(
|
|
137
|
+
case 0: return [4 /*yield*/, this.getProductRaw({ project: project, productId: productId, fields: fields }, initOverrides)];
|
|
128
138
|
case 1:
|
|
129
139
|
response = _a.sent();
|
|
130
140
|
return [4 /*yield*/, response.value()];
|
|
@@ -139,9 +149,9 @@ var ProductsApi = /** @class */ (function (_super) {
|
|
|
139
149
|
*/
|
|
140
150
|
ProductsApi.prototype.getProductsRaw = function (requestParameters, initOverrides) {
|
|
141
151
|
return __awaiter(this, void 0, void 0, function () {
|
|
142
|
-
var queryParameters, headerParameters, response;
|
|
143
|
-
return __generator(this, function (
|
|
144
|
-
switch (
|
|
152
|
+
var queryParameters, headerParameters, _a, _b, response;
|
|
153
|
+
return __generator(this, function (_c) {
|
|
154
|
+
switch (_c.label) {
|
|
145
155
|
case 0:
|
|
146
156
|
if (requestParameters.project === null || requestParameters.project === undefined) {
|
|
147
157
|
throw new runtime.RequiredError('project', 'Required parameter requestParameters.project was null or undefined when calling getProducts.');
|
|
@@ -160,6 +170,16 @@ var ProductsApi = /** @class */ (function (_super) {
|
|
|
160
170
|
queryParameters['fields'] = requestParameters.fields;
|
|
161
171
|
}
|
|
162
172
|
headerParameters = {};
|
|
173
|
+
if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 2];
|
|
174
|
+
// oauth required
|
|
175
|
+
_a = headerParameters;
|
|
176
|
+
_b = "Authorization";
|
|
177
|
+
return [4 /*yield*/, this.configuration.accessToken("session-oauth", [])];
|
|
178
|
+
case 1:
|
|
179
|
+
// oauth required
|
|
180
|
+
_a[_b] = _c.sent();
|
|
181
|
+
_c.label = 2;
|
|
182
|
+
case 2:
|
|
163
183
|
if (this.configuration && this.configuration.apiKey) {
|
|
164
184
|
headerParameters["Authorization"] = this.configuration.apiKey("Authorization"); // api-key authentication
|
|
165
185
|
}
|
|
@@ -169,8 +189,8 @@ var ProductsApi = /** @class */ (function (_super) {
|
|
|
169
189
|
headers: headerParameters,
|
|
170
190
|
query: queryParameters,
|
|
171
191
|
}, initOverrides)];
|
|
172
|
-
case
|
|
173
|
-
response =
|
|
192
|
+
case 3:
|
|
193
|
+
response = _c.sent();
|
|
174
194
|
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.ProductsResponseFromJSON)(jsonValue); })];
|
|
175
195
|
}
|
|
176
196
|
});
|
|
@@ -180,12 +200,12 @@ var ProductsApi = /** @class */ (function (_super) {
|
|
|
180
200
|
* Lists all products
|
|
181
201
|
* List products
|
|
182
202
|
*/
|
|
183
|
-
ProductsApi.prototype.getProducts = function (
|
|
203
|
+
ProductsApi.prototype.getProducts = function (project, pageToken, pageSize, fields, initOverrides) {
|
|
184
204
|
return __awaiter(this, void 0, void 0, function () {
|
|
185
205
|
var response;
|
|
186
206
|
return __generator(this, function (_a) {
|
|
187
207
|
switch (_a.label) {
|
|
188
|
-
case 0: return [4 /*yield*/, this.getProductsRaw(
|
|
208
|
+
case 0: return [4 /*yield*/, this.getProductsRaw({ project: project, pageToken: pageToken, pageSize: pageSize, fields: fields }, initOverrides)];
|
|
189
209
|
case 1:
|
|
190
210
|
response = _a.sent();
|
|
191
211
|
return [4 /*yield*/, response.value()];
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.2.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -35,7 +35,7 @@ export declare class VariantsApi extends runtime.BaseAPI {
|
|
|
35
35
|
* Gets a variant by the given id
|
|
36
36
|
* Get variant
|
|
37
37
|
*/
|
|
38
|
-
getVariant(
|
|
38
|
+
getVariant(project: string, variantId: string, fields?: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Variant>;
|
|
39
39
|
/**
|
|
40
40
|
* Lists all variants
|
|
41
41
|
* List variants
|
|
@@ -45,5 +45,5 @@ export declare class VariantsApi extends runtime.BaseAPI {
|
|
|
45
45
|
* Lists all variants
|
|
46
46
|
* List variants
|
|
47
47
|
*/
|
|
48
|
-
listVariants(
|
|
48
|
+
listVariants(project: string, pageToken?: number, pageSize?: number, fields?: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VariantsResponse>;
|
|
49
49
|
}
|
package/dist/apis/VariantsApi.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.2.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -81,9 +81,9 @@ var VariantsApi = /** @class */ (function (_super) {
|
|
|
81
81
|
*/
|
|
82
82
|
VariantsApi.prototype.getVariantRaw = function (requestParameters, initOverrides) {
|
|
83
83
|
return __awaiter(this, void 0, void 0, function () {
|
|
84
|
-
var queryParameters, headerParameters, response;
|
|
85
|
-
return __generator(this, function (
|
|
86
|
-
switch (
|
|
84
|
+
var queryParameters, headerParameters, _a, _b, response;
|
|
85
|
+
return __generator(this, function (_c) {
|
|
86
|
+
switch (_c.label) {
|
|
87
87
|
case 0:
|
|
88
88
|
if (requestParameters.project === null || requestParameters.project === undefined) {
|
|
89
89
|
throw new runtime.RequiredError('project', 'Required parameter requestParameters.project was null or undefined when calling getVariant.');
|
|
@@ -99,6 +99,16 @@ var VariantsApi = /** @class */ (function (_super) {
|
|
|
99
99
|
queryParameters['fields'] = requestParameters.fields;
|
|
100
100
|
}
|
|
101
101
|
headerParameters = {};
|
|
102
|
+
if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 2];
|
|
103
|
+
// oauth required
|
|
104
|
+
_a = headerParameters;
|
|
105
|
+
_b = "Authorization";
|
|
106
|
+
return [4 /*yield*/, this.configuration.accessToken("session-oauth", [])];
|
|
107
|
+
case 1:
|
|
108
|
+
// oauth required
|
|
109
|
+
_a[_b] = _c.sent();
|
|
110
|
+
_c.label = 2;
|
|
111
|
+
case 2:
|
|
102
112
|
if (this.configuration && this.configuration.apiKey) {
|
|
103
113
|
headerParameters["Authorization"] = this.configuration.apiKey("Authorization"); // api-key authentication
|
|
104
114
|
}
|
|
@@ -108,8 +118,8 @@ var VariantsApi = /** @class */ (function (_super) {
|
|
|
108
118
|
headers: headerParameters,
|
|
109
119
|
query: queryParameters,
|
|
110
120
|
}, initOverrides)];
|
|
111
|
-
case
|
|
112
|
-
response =
|
|
121
|
+
case 3:
|
|
122
|
+
response = _c.sent();
|
|
113
123
|
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.VariantFromJSON)(jsonValue); })];
|
|
114
124
|
}
|
|
115
125
|
});
|
|
@@ -119,12 +129,12 @@ var VariantsApi = /** @class */ (function (_super) {
|
|
|
119
129
|
* Gets a variant by the given id
|
|
120
130
|
* Get variant
|
|
121
131
|
*/
|
|
122
|
-
VariantsApi.prototype.getVariant = function (
|
|
132
|
+
VariantsApi.prototype.getVariant = function (project, variantId, fields, initOverrides) {
|
|
123
133
|
return __awaiter(this, void 0, void 0, function () {
|
|
124
134
|
var response;
|
|
125
135
|
return __generator(this, function (_a) {
|
|
126
136
|
switch (_a.label) {
|
|
127
|
-
case 0: return [4 /*yield*/, this.getVariantRaw(
|
|
137
|
+
case 0: return [4 /*yield*/, this.getVariantRaw({ project: project, variantId: variantId, fields: fields }, initOverrides)];
|
|
128
138
|
case 1:
|
|
129
139
|
response = _a.sent();
|
|
130
140
|
return [4 /*yield*/, response.value()];
|
|
@@ -139,9 +149,9 @@ var VariantsApi = /** @class */ (function (_super) {
|
|
|
139
149
|
*/
|
|
140
150
|
VariantsApi.prototype.listVariantsRaw = function (requestParameters, initOverrides) {
|
|
141
151
|
return __awaiter(this, void 0, void 0, function () {
|
|
142
|
-
var queryParameters, headerParameters, response;
|
|
143
|
-
return __generator(this, function (
|
|
144
|
-
switch (
|
|
152
|
+
var queryParameters, headerParameters, _a, _b, response;
|
|
153
|
+
return __generator(this, function (_c) {
|
|
154
|
+
switch (_c.label) {
|
|
145
155
|
case 0:
|
|
146
156
|
if (requestParameters.project === null || requestParameters.project === undefined) {
|
|
147
157
|
throw new runtime.RequiredError('project', 'Required parameter requestParameters.project was null or undefined when calling listVariants.');
|
|
@@ -160,6 +170,16 @@ var VariantsApi = /** @class */ (function (_super) {
|
|
|
160
170
|
queryParameters['fields'] = requestParameters.fields;
|
|
161
171
|
}
|
|
162
172
|
headerParameters = {};
|
|
173
|
+
if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 2];
|
|
174
|
+
// oauth required
|
|
175
|
+
_a = headerParameters;
|
|
176
|
+
_b = "Authorization";
|
|
177
|
+
return [4 /*yield*/, this.configuration.accessToken("session-oauth", [])];
|
|
178
|
+
case 1:
|
|
179
|
+
// oauth required
|
|
180
|
+
_a[_b] = _c.sent();
|
|
181
|
+
_c.label = 2;
|
|
182
|
+
case 2:
|
|
163
183
|
if (this.configuration && this.configuration.apiKey) {
|
|
164
184
|
headerParameters["Authorization"] = this.configuration.apiKey("Authorization"); // api-key authentication
|
|
165
185
|
}
|
|
@@ -169,8 +189,8 @@ var VariantsApi = /** @class */ (function (_super) {
|
|
|
169
189
|
headers: headerParameters,
|
|
170
190
|
query: queryParameters,
|
|
171
191
|
}, initOverrides)];
|
|
172
|
-
case
|
|
173
|
-
response =
|
|
192
|
+
case 3:
|
|
193
|
+
response = _c.sent();
|
|
174
194
|
return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.VariantsResponseFromJSON)(jsonValue); })];
|
|
175
195
|
}
|
|
176
196
|
});
|
|
@@ -180,12 +200,12 @@ var VariantsApi = /** @class */ (function (_super) {
|
|
|
180
200
|
* Lists all variants
|
|
181
201
|
* List variants
|
|
182
202
|
*/
|
|
183
|
-
VariantsApi.prototype.listVariants = function (
|
|
203
|
+
VariantsApi.prototype.listVariants = function (project, pageToken, pageSize, fields, initOverrides) {
|
|
184
204
|
return __awaiter(this, void 0, void 0, function () {
|
|
185
205
|
var response;
|
|
186
206
|
return __generator(this, function (_a) {
|
|
187
207
|
switch (_a.label) {
|
|
188
|
-
case 0: return [4 /*yield*/, this.listVariantsRaw(
|
|
208
|
+
case 0: return [4 /*yield*/, this.listVariantsRaw({ project: project, pageToken: pageToken, pageSize: pageSize, fields: fields }, initOverrides)];
|
|
189
209
|
case 1:
|
|
190
210
|
response = _a.sent();
|
|
191
211
|
return [4 /*yield*/, response.value()];
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.2.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/models/ApiError.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.2.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.2.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/models/Attribute.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.2.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.2.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.2.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/models/Image.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.2.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/models/Image.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.2.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/models/Price.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.2.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/models/Price.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.2.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/models/Product.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.2.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/models/Product.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.2.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.2.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.2.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/models/Stock.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.2.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/models/Stock.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.2.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/models/Variant.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.2.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/models/Variant.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.2.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.2.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.2.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.2.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.2.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/runtime.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.2.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/runtime.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.2.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/package.json
CHANGED
package/src/apis/ProductsApi.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.2.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -71,6 +71,11 @@ export class ProductsApi extends runtime.BaseAPI {
|
|
|
71
71
|
|
|
72
72
|
const headerParameters: runtime.HTTPHeaders = {};
|
|
73
73
|
|
|
74
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
75
|
+
// oauth required
|
|
76
|
+
headerParameters["Authorization"] = await this.configuration.accessToken("session-oauth", []);
|
|
77
|
+
}
|
|
78
|
+
|
|
74
79
|
if (this.configuration && this.configuration.apiKey) {
|
|
75
80
|
headerParameters["Authorization"] = this.configuration.apiKey("Authorization"); // api-key authentication
|
|
76
81
|
}
|
|
@@ -89,8 +94,8 @@ export class ProductsApi extends runtime.BaseAPI {
|
|
|
89
94
|
* Gets a product by the given id
|
|
90
95
|
* Get product
|
|
91
96
|
*/
|
|
92
|
-
async getProduct(
|
|
93
|
-
const response = await this.getProductRaw(
|
|
97
|
+
async getProduct(project: string, productId: string, fields?: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Product> {
|
|
98
|
+
const response = await this.getProductRaw({ project: project, productId: productId, fields: fields }, initOverrides);
|
|
94
99
|
return await response.value();
|
|
95
100
|
}
|
|
96
101
|
|
|
@@ -123,6 +128,11 @@ export class ProductsApi extends runtime.BaseAPI {
|
|
|
123
128
|
|
|
124
129
|
const headerParameters: runtime.HTTPHeaders = {};
|
|
125
130
|
|
|
131
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
132
|
+
// oauth required
|
|
133
|
+
headerParameters["Authorization"] = await this.configuration.accessToken("session-oauth", []);
|
|
134
|
+
}
|
|
135
|
+
|
|
126
136
|
if (this.configuration && this.configuration.apiKey) {
|
|
127
137
|
headerParameters["Authorization"] = this.configuration.apiKey("Authorization"); // api-key authentication
|
|
128
138
|
}
|
|
@@ -141,8 +151,8 @@ export class ProductsApi extends runtime.BaseAPI {
|
|
|
141
151
|
* Lists all products
|
|
142
152
|
* List products
|
|
143
153
|
*/
|
|
144
|
-
async getProducts(
|
|
145
|
-
const response = await this.getProductsRaw(
|
|
154
|
+
async getProducts(project: string, pageToken?: number, pageSize?: number, fields?: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ProductsResponse> {
|
|
155
|
+
const response = await this.getProductsRaw({ project: project, pageToken: pageToken, pageSize: pageSize, fields: fields }, initOverrides);
|
|
146
156
|
return await response.value();
|
|
147
157
|
}
|
|
148
158
|
|
package/src/apis/VariantsApi.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.2.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -71,6 +71,11 @@ export class VariantsApi extends runtime.BaseAPI {
|
|
|
71
71
|
|
|
72
72
|
const headerParameters: runtime.HTTPHeaders = {};
|
|
73
73
|
|
|
74
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
75
|
+
// oauth required
|
|
76
|
+
headerParameters["Authorization"] = await this.configuration.accessToken("session-oauth", []);
|
|
77
|
+
}
|
|
78
|
+
|
|
74
79
|
if (this.configuration && this.configuration.apiKey) {
|
|
75
80
|
headerParameters["Authorization"] = this.configuration.apiKey("Authorization"); // api-key authentication
|
|
76
81
|
}
|
|
@@ -89,8 +94,8 @@ export class VariantsApi extends runtime.BaseAPI {
|
|
|
89
94
|
* Gets a variant by the given id
|
|
90
95
|
* Get variant
|
|
91
96
|
*/
|
|
92
|
-
async getVariant(
|
|
93
|
-
const response = await this.getVariantRaw(
|
|
97
|
+
async getVariant(project: string, variantId: string, fields?: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Variant> {
|
|
98
|
+
const response = await this.getVariantRaw({ project: project, variantId: variantId, fields: fields }, initOverrides);
|
|
94
99
|
return await response.value();
|
|
95
100
|
}
|
|
96
101
|
|
|
@@ -123,6 +128,11 @@ export class VariantsApi extends runtime.BaseAPI {
|
|
|
123
128
|
|
|
124
129
|
const headerParameters: runtime.HTTPHeaders = {};
|
|
125
130
|
|
|
131
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
132
|
+
// oauth required
|
|
133
|
+
headerParameters["Authorization"] = await this.configuration.accessToken("session-oauth", []);
|
|
134
|
+
}
|
|
135
|
+
|
|
126
136
|
if (this.configuration && this.configuration.apiKey) {
|
|
127
137
|
headerParameters["Authorization"] = this.configuration.apiKey("Authorization"); // api-key authentication
|
|
128
138
|
}
|
|
@@ -141,8 +151,8 @@ export class VariantsApi extends runtime.BaseAPI {
|
|
|
141
151
|
* Lists all variants
|
|
142
152
|
* List variants
|
|
143
153
|
*/
|
|
144
|
-
async listVariants(
|
|
145
|
-
const response = await this.listVariantsRaw(
|
|
154
|
+
async listVariants(project: string, pageToken?: number, pageSize?: number, fields?: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<VariantsResponse> {
|
|
155
|
+
const response = await this.listVariantsRaw({ project: project, pageToken: pageToken, pageSize: pageSize, fields: fields }, initOverrides);
|
|
146
156
|
return await response.value();
|
|
147
157
|
}
|
|
148
158
|
|
package/src/models/ApiError.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.2.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/src/models/Attribute.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.2.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.2.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/src/models/Image.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.2.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/src/models/Price.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.2.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/src/models/Product.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.2.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.2.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/src/models/Stock.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.2.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/src/models/Variant.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.2.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.2.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.2.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/src/runtime.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage Teemill Product Catalog For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
7
|
+
* The version of the OpenAPI document: 1.2.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|