@teemill/product-catalog 1.45.0 → 1.45.3
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 +30 -5
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +30 -5
- package/dist/api.js +1 -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 +30 -5
- package/dist/esm/api.js +1 -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 +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/product-catalog@1.45.
|
|
1
|
+
## @teemill/product-catalog@1.45.3
|
|
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/product-catalog@1.45.
|
|
39
|
+
npm install @teemill/product-catalog@1.45.3 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.45.
|
|
7
|
+
* The version of the OpenAPI document: 1.45.3
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -214,6 +214,12 @@ export interface ApplicationSet1 {
|
|
|
214
214
|
* @memberof ApplicationSet1
|
|
215
215
|
*/
|
|
216
216
|
'id'?: string;
|
|
217
|
+
/**
|
|
218
|
+
* A reference to the resource location
|
|
219
|
+
* @type {string}
|
|
220
|
+
* @memberof ApplicationSet1
|
|
221
|
+
*/
|
|
222
|
+
'ref'?: string;
|
|
217
223
|
}
|
|
218
224
|
/**
|
|
219
225
|
*
|
|
@@ -234,11 +240,11 @@ export interface ApplicationSetRecord {
|
|
|
234
240
|
*/
|
|
235
241
|
'set'?: ApplicationSet1;
|
|
236
242
|
/**
|
|
237
|
-
* Attributes associated to a variant such as Colour and Size.
|
|
238
|
-
* @type {Array<
|
|
243
|
+
* Attributes associated to a variant such as Colour and Size.
|
|
244
|
+
* @type {Array<Attributes1Inner>}
|
|
239
245
|
* @memberof ApplicationSetRecord
|
|
240
246
|
*/
|
|
241
|
-
'attributes'?: Array<
|
|
247
|
+
'attributes'?: Array<Attributes1Inner>;
|
|
242
248
|
/**
|
|
243
249
|
* List of applications for this record
|
|
244
250
|
* @type {Array<Application>}
|
|
@@ -324,6 +330,25 @@ export const AttributeThumbnailTypeEnum = {
|
|
|
324
330
|
|
|
325
331
|
export type AttributeThumbnailTypeEnum = typeof AttributeThumbnailTypeEnum[keyof typeof AttributeThumbnailTypeEnum];
|
|
326
332
|
|
|
333
|
+
/**
|
|
334
|
+
*
|
|
335
|
+
* @export
|
|
336
|
+
* @interface Attributes1Inner
|
|
337
|
+
*/
|
|
338
|
+
export interface Attributes1Inner {
|
|
339
|
+
/**
|
|
340
|
+
*
|
|
341
|
+
* @type {string}
|
|
342
|
+
* @memberof Attributes1Inner
|
|
343
|
+
*/
|
|
344
|
+
'name'?: string;
|
|
345
|
+
/**
|
|
346
|
+
*
|
|
347
|
+
* @type {string}
|
|
348
|
+
* @memberof Attributes1Inner
|
|
349
|
+
*/
|
|
350
|
+
'value'?: string;
|
|
351
|
+
}
|
|
327
352
|
/**
|
|
328
353
|
*
|
|
329
354
|
* @export
|
|
@@ -1454,7 +1479,7 @@ export interface UpdateApplicationSetRequestRecordsInnerAttributesInner {
|
|
|
1454
1479
|
* @type {string}
|
|
1455
1480
|
* @memberof UpdateApplicationSetRequestRecordsInnerAttributesInner
|
|
1456
1481
|
*/
|
|
1457
|
-
'
|
|
1482
|
+
'name'?: string;
|
|
1458
1483
|
/**
|
|
1459
1484
|
* The value of the option this record applies to
|
|
1460
1485
|
* @type {string}
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.45.
|
|
7
|
+
* The version of the OpenAPI document: 1.45.3
|
|
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
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.45.
|
|
7
|
+
* The version of the OpenAPI document: 1.45.3
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.45.
|
|
7
|
+
* The version of the OpenAPI document: 1.45.3
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* 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
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.45.
|
|
5
|
+
* The version of the OpenAPI document: 1.45.3
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -200,6 +200,12 @@ export interface ApplicationSet1 {
|
|
|
200
200
|
* @memberof ApplicationSet1
|
|
201
201
|
*/
|
|
202
202
|
'id'?: string;
|
|
203
|
+
/**
|
|
204
|
+
* A reference to the resource location
|
|
205
|
+
* @type {string}
|
|
206
|
+
* @memberof ApplicationSet1
|
|
207
|
+
*/
|
|
208
|
+
'ref'?: string;
|
|
203
209
|
}
|
|
204
210
|
/**
|
|
205
211
|
*
|
|
@@ -220,11 +226,11 @@ export interface ApplicationSetRecord {
|
|
|
220
226
|
*/
|
|
221
227
|
'set'?: ApplicationSet1;
|
|
222
228
|
/**
|
|
223
|
-
* Attributes associated to a variant such as Colour and Size.
|
|
224
|
-
* @type {Array<
|
|
229
|
+
* Attributes associated to a variant such as Colour and Size.
|
|
230
|
+
* @type {Array<Attributes1Inner>}
|
|
225
231
|
* @memberof ApplicationSetRecord
|
|
226
232
|
*/
|
|
227
|
-
'attributes'?: Array<
|
|
233
|
+
'attributes'?: Array<Attributes1Inner>;
|
|
228
234
|
/**
|
|
229
235
|
* List of applications for this record
|
|
230
236
|
* @type {Array<Application>}
|
|
@@ -307,6 +313,25 @@ export declare const AttributeThumbnailTypeEnum: {
|
|
|
307
313
|
readonly Image: "image";
|
|
308
314
|
};
|
|
309
315
|
export type AttributeThumbnailTypeEnum = typeof AttributeThumbnailTypeEnum[keyof typeof AttributeThumbnailTypeEnum];
|
|
316
|
+
/**
|
|
317
|
+
*
|
|
318
|
+
* @export
|
|
319
|
+
* @interface Attributes1Inner
|
|
320
|
+
*/
|
|
321
|
+
export interface Attributes1Inner {
|
|
322
|
+
/**
|
|
323
|
+
*
|
|
324
|
+
* @type {string}
|
|
325
|
+
* @memberof Attributes1Inner
|
|
326
|
+
*/
|
|
327
|
+
'name'?: string;
|
|
328
|
+
/**
|
|
329
|
+
*
|
|
330
|
+
* @type {string}
|
|
331
|
+
* @memberof Attributes1Inner
|
|
332
|
+
*/
|
|
333
|
+
'value'?: string;
|
|
334
|
+
}
|
|
310
335
|
/**
|
|
311
336
|
*
|
|
312
337
|
* @export
|
|
@@ -1429,7 +1454,7 @@ export interface UpdateApplicationSetRequestRecordsInnerAttributesInner {
|
|
|
1429
1454
|
* @type {string}
|
|
1430
1455
|
* @memberof UpdateApplicationSetRequestRecordsInnerAttributesInner
|
|
1431
1456
|
*/
|
|
1432
|
-
'
|
|
1457
|
+
'name'?: string;
|
|
1433
1458
|
/**
|
|
1434
1459
|
* The value of the option this record applies to
|
|
1435
1460
|
* @type {string}
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.45.
|
|
8
|
+
* The version of the OpenAPI document: 1.45.3
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.45.
|
|
5
|
+
* The version of the OpenAPI document: 1.45.3
|
|
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
|
* Product Catalog API
|
|
6
6
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.45.
|
|
8
|
+
* The version of the OpenAPI document: 1.45.3
|
|
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
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.45.
|
|
5
|
+
* The version of the OpenAPI document: 1.45.3
|
|
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
|
* Product Catalog API
|
|
6
6
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.45.
|
|
8
|
+
* The version of the OpenAPI document: 1.45.3
|
|
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
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.45.
|
|
5
|
+
* The version of the OpenAPI document: 1.45.3
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.45.
|
|
8
|
+
* The version of the OpenAPI document: 1.45.3
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* 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
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.45.
|
|
5
|
+
* The version of the OpenAPI document: 1.45.3
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -200,6 +200,12 @@ export interface ApplicationSet1 {
|
|
|
200
200
|
* @memberof ApplicationSet1
|
|
201
201
|
*/
|
|
202
202
|
'id'?: string;
|
|
203
|
+
/**
|
|
204
|
+
* A reference to the resource location
|
|
205
|
+
* @type {string}
|
|
206
|
+
* @memberof ApplicationSet1
|
|
207
|
+
*/
|
|
208
|
+
'ref'?: string;
|
|
203
209
|
}
|
|
204
210
|
/**
|
|
205
211
|
*
|
|
@@ -220,11 +226,11 @@ export interface ApplicationSetRecord {
|
|
|
220
226
|
*/
|
|
221
227
|
'set'?: ApplicationSet1;
|
|
222
228
|
/**
|
|
223
|
-
* Attributes associated to a variant such as Colour and Size.
|
|
224
|
-
* @type {Array<
|
|
229
|
+
* Attributes associated to a variant such as Colour and Size.
|
|
230
|
+
* @type {Array<Attributes1Inner>}
|
|
225
231
|
* @memberof ApplicationSetRecord
|
|
226
232
|
*/
|
|
227
|
-
'attributes'?: Array<
|
|
233
|
+
'attributes'?: Array<Attributes1Inner>;
|
|
228
234
|
/**
|
|
229
235
|
* List of applications for this record
|
|
230
236
|
* @type {Array<Application>}
|
|
@@ -307,6 +313,25 @@ export declare const AttributeThumbnailTypeEnum: {
|
|
|
307
313
|
readonly Image: "image";
|
|
308
314
|
};
|
|
309
315
|
export type AttributeThumbnailTypeEnum = typeof AttributeThumbnailTypeEnum[keyof typeof AttributeThumbnailTypeEnum];
|
|
316
|
+
/**
|
|
317
|
+
*
|
|
318
|
+
* @export
|
|
319
|
+
* @interface Attributes1Inner
|
|
320
|
+
*/
|
|
321
|
+
export interface Attributes1Inner {
|
|
322
|
+
/**
|
|
323
|
+
*
|
|
324
|
+
* @type {string}
|
|
325
|
+
* @memberof Attributes1Inner
|
|
326
|
+
*/
|
|
327
|
+
'name'?: string;
|
|
328
|
+
/**
|
|
329
|
+
*
|
|
330
|
+
* @type {string}
|
|
331
|
+
* @memberof Attributes1Inner
|
|
332
|
+
*/
|
|
333
|
+
'value'?: string;
|
|
334
|
+
}
|
|
310
335
|
/**
|
|
311
336
|
*
|
|
312
337
|
* @export
|
|
@@ -1429,7 +1454,7 @@ export interface UpdateApplicationSetRequestRecordsInnerAttributesInner {
|
|
|
1429
1454
|
* @type {string}
|
|
1430
1455
|
* @memberof UpdateApplicationSetRequestRecordsInnerAttributesInner
|
|
1431
1456
|
*/
|
|
1432
|
-
'
|
|
1457
|
+
'name'?: string;
|
|
1433
1458
|
/**
|
|
1434
1459
|
* The value of the option this record applies to
|
|
1435
1460
|
* @type {string}
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.45.
|
|
7
|
+
* The version of the OpenAPI document: 1.45.3
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.45.
|
|
5
|
+
* The version of the OpenAPI document: 1.45.3
|
|
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
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.45.
|
|
7
|
+
* The version of the OpenAPI document: 1.45.3
|
|
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
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.45.
|
|
5
|
+
* The version of the OpenAPI document: 1.45.3
|
|
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
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.45.
|
|
7
|
+
* The version of the OpenAPI document: 1.45.3
|
|
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
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.45.
|
|
5
|
+
* The version of the OpenAPI document: 1.45.3
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.45.
|
|
7
|
+
* The version of the OpenAPI document: 1.45.3
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* 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
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.45.
|
|
5
|
+
* The version of the OpenAPI document: 1.45.3
|
|
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
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.45.
|
|
7
|
+
* The version of the OpenAPI document: 1.45.3
|
|
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
|
* Product Catalog API
|
|
3
3
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.45.
|
|
5
|
+
* The version of the OpenAPI document: 1.45.3
|
|
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
|
* Product Catalog API
|
|
6
6
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.45.
|
|
8
|
+
* The version of the OpenAPI document: 1.45.3
|
|
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
|
* Product Catalog API
|
|
5
5
|
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.45.
|
|
7
|
+
* The version of the OpenAPI document: 1.45.3
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|