@teemill/product-catalog 1.24.0 → 1.25.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/api.ts +88 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +88 -1
- 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 +88 -1
- 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.
|
|
1
|
+
## @teemill/product-catalog@1.25.0
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @teemill/product-catalog@1.
|
|
39
|
+
npm install @teemill/product-catalog@1.25.0 --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 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.
|
|
7
|
+
* The version of the OpenAPI document: 1.25.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -453,6 +453,12 @@ export interface CreateProductRequest {
|
|
|
453
453
|
* @memberof CreateProductRequest
|
|
454
454
|
*/
|
|
455
455
|
'images'?: Array<CreateProductRequestImagesInner>;
|
|
456
|
+
/**
|
|
457
|
+
* Videos to attach to the product.
|
|
458
|
+
* @type {Array<CreateProductRequestVideosInner>}
|
|
459
|
+
* @memberof CreateProductRequest
|
|
460
|
+
*/
|
|
461
|
+
'videos'?: Array<CreateProductRequestVideosInner>;
|
|
456
462
|
/**
|
|
457
463
|
* Additional files to attach to the product. For example, original design files e.g. PSD, AI, etc.
|
|
458
464
|
* @type {Array<CreateProductRequestAdditionalFilesInner>}
|
|
@@ -517,6 +523,19 @@ export interface CreateProductRequestSeoMetadata {
|
|
|
517
523
|
*/
|
|
518
524
|
'description'?: string | null;
|
|
519
525
|
}
|
|
526
|
+
/**
|
|
527
|
+
*
|
|
528
|
+
* @export
|
|
529
|
+
* @interface CreateProductRequestVideosInner
|
|
530
|
+
*/
|
|
531
|
+
export interface CreateProductRequestVideosInner {
|
|
532
|
+
/**
|
|
533
|
+
* Publicly available file URL.
|
|
534
|
+
* @type {string}
|
|
535
|
+
* @memberof CreateProductRequestVideosInner
|
|
536
|
+
*/
|
|
537
|
+
'src'?: string;
|
|
538
|
+
}
|
|
520
539
|
/**
|
|
521
540
|
*
|
|
522
541
|
* @export
|
|
@@ -843,6 +862,12 @@ export interface Product {
|
|
|
843
862
|
* @memberof Product
|
|
844
863
|
*/
|
|
845
864
|
'images'?: Array<Image>;
|
|
865
|
+
/**
|
|
866
|
+
* Videos
|
|
867
|
+
* @type {Array<Video>}
|
|
868
|
+
* @memberof Product
|
|
869
|
+
*/
|
|
870
|
+
'videos'?: Array<Video>;
|
|
846
871
|
/**
|
|
847
872
|
* Variants
|
|
848
873
|
* @type {Array<Variant>}
|
|
@@ -1140,6 +1165,12 @@ export interface UpdateProductRequest {
|
|
|
1140
1165
|
* @memberof UpdateProductRequest
|
|
1141
1166
|
*/
|
|
1142
1167
|
'images'?: Array<ImageFile>;
|
|
1168
|
+
/**
|
|
1169
|
+
* Videos to attach to the product.
|
|
1170
|
+
* @type {Array<VideoFile>}
|
|
1171
|
+
* @memberof UpdateProductRequest
|
|
1172
|
+
*/
|
|
1173
|
+
'videos'?: Array<VideoFile>;
|
|
1143
1174
|
/**
|
|
1144
1175
|
* Additional files to attach to the product. For example, original design files e.g. PSD, AI, etc.
|
|
1145
1176
|
* @type {Array<AdditionalFile>}
|
|
@@ -1300,6 +1331,62 @@ export interface VariantsResponse {
|
|
|
1300
1331
|
*/
|
|
1301
1332
|
'nextPageToken'?: number;
|
|
1302
1333
|
}
|
|
1334
|
+
/**
|
|
1335
|
+
* Video object
|
|
1336
|
+
* @export
|
|
1337
|
+
* @interface Video
|
|
1338
|
+
*/
|
|
1339
|
+
export interface Video {
|
|
1340
|
+
/**
|
|
1341
|
+
* Unique object identifier
|
|
1342
|
+
* @type {string}
|
|
1343
|
+
* @memberof Video
|
|
1344
|
+
*/
|
|
1345
|
+
'id'?: string;
|
|
1346
|
+
/**
|
|
1347
|
+
*
|
|
1348
|
+
* @type {string}
|
|
1349
|
+
* @memberof Video
|
|
1350
|
+
*/
|
|
1351
|
+
'src'?: string;
|
|
1352
|
+
/**
|
|
1353
|
+
*
|
|
1354
|
+
* @type {string}
|
|
1355
|
+
* @memberof Video
|
|
1356
|
+
*/
|
|
1357
|
+
'alt'?: string;
|
|
1358
|
+
/**
|
|
1359
|
+
*
|
|
1360
|
+
* @type {number}
|
|
1361
|
+
* @memberof Video
|
|
1362
|
+
*/
|
|
1363
|
+
'sortOrder'?: number;
|
|
1364
|
+
/**
|
|
1365
|
+
*
|
|
1366
|
+
* @type {string}
|
|
1367
|
+
* @memberof Video
|
|
1368
|
+
*/
|
|
1369
|
+
'createdAt'?: string;
|
|
1370
|
+
/**
|
|
1371
|
+
*
|
|
1372
|
+
* @type {string}
|
|
1373
|
+
* @memberof Video
|
|
1374
|
+
*/
|
|
1375
|
+
'updatedAt'?: string;
|
|
1376
|
+
}
|
|
1377
|
+
/**
|
|
1378
|
+
*
|
|
1379
|
+
* @export
|
|
1380
|
+
* @interface VideoFile
|
|
1381
|
+
*/
|
|
1382
|
+
export interface VideoFile {
|
|
1383
|
+
/**
|
|
1384
|
+
* Publicly available file URL.
|
|
1385
|
+
* @type {string}
|
|
1386
|
+
* @memberof VideoFile
|
|
1387
|
+
*/
|
|
1388
|
+
'src'?: string;
|
|
1389
|
+
}
|
|
1303
1390
|
|
|
1304
1391
|
/**
|
|
1305
1392
|
* ApplicationSetsApi - axios parameter creator
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage 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.
|
|
7
|
+
* The version of the OpenAPI document: 1.25.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/common.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage 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.
|
|
7
|
+
* The version of the OpenAPI document: 1.25.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/configuration.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage 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.
|
|
7
|
+
* The version of the OpenAPI document: 1.25.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/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage 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.
|
|
5
|
+
* The version of the OpenAPI document: 1.25.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -436,6 +436,12 @@ export interface CreateProductRequest {
|
|
|
436
436
|
* @memberof CreateProductRequest
|
|
437
437
|
*/
|
|
438
438
|
'images'?: Array<CreateProductRequestImagesInner>;
|
|
439
|
+
/**
|
|
440
|
+
* Videos to attach to the product.
|
|
441
|
+
* @type {Array<CreateProductRequestVideosInner>}
|
|
442
|
+
* @memberof CreateProductRequest
|
|
443
|
+
*/
|
|
444
|
+
'videos'?: Array<CreateProductRequestVideosInner>;
|
|
439
445
|
/**
|
|
440
446
|
* Additional files to attach to the product. For example, original design files e.g. PSD, AI, etc.
|
|
441
447
|
* @type {Array<CreateProductRequestAdditionalFilesInner>}
|
|
@@ -500,6 +506,19 @@ export interface CreateProductRequestSeoMetadata {
|
|
|
500
506
|
*/
|
|
501
507
|
'description'?: string | null;
|
|
502
508
|
}
|
|
509
|
+
/**
|
|
510
|
+
*
|
|
511
|
+
* @export
|
|
512
|
+
* @interface CreateProductRequestVideosInner
|
|
513
|
+
*/
|
|
514
|
+
export interface CreateProductRequestVideosInner {
|
|
515
|
+
/**
|
|
516
|
+
* Publicly available file URL.
|
|
517
|
+
* @type {string}
|
|
518
|
+
* @memberof CreateProductRequestVideosInner
|
|
519
|
+
*/
|
|
520
|
+
'src'?: string;
|
|
521
|
+
}
|
|
503
522
|
/**
|
|
504
523
|
*
|
|
505
524
|
* @export
|
|
@@ -814,6 +833,12 @@ export interface Product {
|
|
|
814
833
|
* @memberof Product
|
|
815
834
|
*/
|
|
816
835
|
'images'?: Array<Image>;
|
|
836
|
+
/**
|
|
837
|
+
* Videos
|
|
838
|
+
* @type {Array<Video>}
|
|
839
|
+
* @memberof Product
|
|
840
|
+
*/
|
|
841
|
+
'videos'?: Array<Video>;
|
|
817
842
|
/**
|
|
818
843
|
* Variants
|
|
819
844
|
* @type {Array<Variant>}
|
|
@@ -1111,6 +1136,12 @@ export interface UpdateProductRequest {
|
|
|
1111
1136
|
* @memberof UpdateProductRequest
|
|
1112
1137
|
*/
|
|
1113
1138
|
'images'?: Array<ImageFile>;
|
|
1139
|
+
/**
|
|
1140
|
+
* Videos to attach to the product.
|
|
1141
|
+
* @type {Array<VideoFile>}
|
|
1142
|
+
* @memberof UpdateProductRequest
|
|
1143
|
+
*/
|
|
1144
|
+
'videos'?: Array<VideoFile>;
|
|
1114
1145
|
/**
|
|
1115
1146
|
* Additional files to attach to the product. For example, original design files e.g. PSD, AI, etc.
|
|
1116
1147
|
* @type {Array<AdditionalFile>}
|
|
@@ -1271,6 +1302,62 @@ export interface VariantsResponse {
|
|
|
1271
1302
|
*/
|
|
1272
1303
|
'nextPageToken'?: number;
|
|
1273
1304
|
}
|
|
1305
|
+
/**
|
|
1306
|
+
* Video object
|
|
1307
|
+
* @export
|
|
1308
|
+
* @interface Video
|
|
1309
|
+
*/
|
|
1310
|
+
export interface Video {
|
|
1311
|
+
/**
|
|
1312
|
+
* Unique object identifier
|
|
1313
|
+
* @type {string}
|
|
1314
|
+
* @memberof Video
|
|
1315
|
+
*/
|
|
1316
|
+
'id'?: string;
|
|
1317
|
+
/**
|
|
1318
|
+
*
|
|
1319
|
+
* @type {string}
|
|
1320
|
+
* @memberof Video
|
|
1321
|
+
*/
|
|
1322
|
+
'src'?: string;
|
|
1323
|
+
/**
|
|
1324
|
+
*
|
|
1325
|
+
* @type {string}
|
|
1326
|
+
* @memberof Video
|
|
1327
|
+
*/
|
|
1328
|
+
'alt'?: string;
|
|
1329
|
+
/**
|
|
1330
|
+
*
|
|
1331
|
+
* @type {number}
|
|
1332
|
+
* @memberof Video
|
|
1333
|
+
*/
|
|
1334
|
+
'sortOrder'?: number;
|
|
1335
|
+
/**
|
|
1336
|
+
*
|
|
1337
|
+
* @type {string}
|
|
1338
|
+
* @memberof Video
|
|
1339
|
+
*/
|
|
1340
|
+
'createdAt'?: string;
|
|
1341
|
+
/**
|
|
1342
|
+
*
|
|
1343
|
+
* @type {string}
|
|
1344
|
+
* @memberof Video
|
|
1345
|
+
*/
|
|
1346
|
+
'updatedAt'?: string;
|
|
1347
|
+
}
|
|
1348
|
+
/**
|
|
1349
|
+
*
|
|
1350
|
+
* @export
|
|
1351
|
+
* @interface VideoFile
|
|
1352
|
+
*/
|
|
1353
|
+
export interface VideoFile {
|
|
1354
|
+
/**
|
|
1355
|
+
* Publicly available file URL.
|
|
1356
|
+
* @type {string}
|
|
1357
|
+
* @memberof VideoFile
|
|
1358
|
+
*/
|
|
1359
|
+
'src'?: string;
|
|
1360
|
+
}
|
|
1274
1361
|
/**
|
|
1275
1362
|
* ApplicationSetsApi - axios parameter creator
|
|
1276
1363
|
* @export
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage 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.
|
|
8
|
+
* The version of the OpenAPI document: 1.25.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/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage 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.
|
|
5
|
+
* The version of the OpenAPI document: 1.25.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/base.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage 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.
|
|
8
|
+
* The version of the OpenAPI document: 1.25.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/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage 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.
|
|
5
|
+
* The version of the OpenAPI document: 1.25.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/common.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage 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.
|
|
8
|
+
* The version of the OpenAPI document: 1.25.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/configuration.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage 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.
|
|
5
|
+
* The version of the OpenAPI document: 1.25.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/configuration.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage 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.
|
|
8
|
+
* The version of the OpenAPI document: 1.25.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/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage 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.
|
|
5
|
+
* The version of the OpenAPI document: 1.25.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -436,6 +436,12 @@ export interface CreateProductRequest {
|
|
|
436
436
|
* @memberof CreateProductRequest
|
|
437
437
|
*/
|
|
438
438
|
'images'?: Array<CreateProductRequestImagesInner>;
|
|
439
|
+
/**
|
|
440
|
+
* Videos to attach to the product.
|
|
441
|
+
* @type {Array<CreateProductRequestVideosInner>}
|
|
442
|
+
* @memberof CreateProductRequest
|
|
443
|
+
*/
|
|
444
|
+
'videos'?: Array<CreateProductRequestVideosInner>;
|
|
439
445
|
/**
|
|
440
446
|
* Additional files to attach to the product. For example, original design files e.g. PSD, AI, etc.
|
|
441
447
|
* @type {Array<CreateProductRequestAdditionalFilesInner>}
|
|
@@ -500,6 +506,19 @@ export interface CreateProductRequestSeoMetadata {
|
|
|
500
506
|
*/
|
|
501
507
|
'description'?: string | null;
|
|
502
508
|
}
|
|
509
|
+
/**
|
|
510
|
+
*
|
|
511
|
+
* @export
|
|
512
|
+
* @interface CreateProductRequestVideosInner
|
|
513
|
+
*/
|
|
514
|
+
export interface CreateProductRequestVideosInner {
|
|
515
|
+
/**
|
|
516
|
+
* Publicly available file URL.
|
|
517
|
+
* @type {string}
|
|
518
|
+
* @memberof CreateProductRequestVideosInner
|
|
519
|
+
*/
|
|
520
|
+
'src'?: string;
|
|
521
|
+
}
|
|
503
522
|
/**
|
|
504
523
|
*
|
|
505
524
|
* @export
|
|
@@ -814,6 +833,12 @@ export interface Product {
|
|
|
814
833
|
* @memberof Product
|
|
815
834
|
*/
|
|
816
835
|
'images'?: Array<Image>;
|
|
836
|
+
/**
|
|
837
|
+
* Videos
|
|
838
|
+
* @type {Array<Video>}
|
|
839
|
+
* @memberof Product
|
|
840
|
+
*/
|
|
841
|
+
'videos'?: Array<Video>;
|
|
817
842
|
/**
|
|
818
843
|
* Variants
|
|
819
844
|
* @type {Array<Variant>}
|
|
@@ -1111,6 +1136,12 @@ export interface UpdateProductRequest {
|
|
|
1111
1136
|
* @memberof UpdateProductRequest
|
|
1112
1137
|
*/
|
|
1113
1138
|
'images'?: Array<ImageFile>;
|
|
1139
|
+
/**
|
|
1140
|
+
* Videos to attach to the product.
|
|
1141
|
+
* @type {Array<VideoFile>}
|
|
1142
|
+
* @memberof UpdateProductRequest
|
|
1143
|
+
*/
|
|
1144
|
+
'videos'?: Array<VideoFile>;
|
|
1114
1145
|
/**
|
|
1115
1146
|
* Additional files to attach to the product. For example, original design files e.g. PSD, AI, etc.
|
|
1116
1147
|
* @type {Array<AdditionalFile>}
|
|
@@ -1271,6 +1302,62 @@ export interface VariantsResponse {
|
|
|
1271
1302
|
*/
|
|
1272
1303
|
'nextPageToken'?: number;
|
|
1273
1304
|
}
|
|
1305
|
+
/**
|
|
1306
|
+
* Video object
|
|
1307
|
+
* @export
|
|
1308
|
+
* @interface Video
|
|
1309
|
+
*/
|
|
1310
|
+
export interface Video {
|
|
1311
|
+
/**
|
|
1312
|
+
* Unique object identifier
|
|
1313
|
+
* @type {string}
|
|
1314
|
+
* @memberof Video
|
|
1315
|
+
*/
|
|
1316
|
+
'id'?: string;
|
|
1317
|
+
/**
|
|
1318
|
+
*
|
|
1319
|
+
* @type {string}
|
|
1320
|
+
* @memberof Video
|
|
1321
|
+
*/
|
|
1322
|
+
'src'?: string;
|
|
1323
|
+
/**
|
|
1324
|
+
*
|
|
1325
|
+
* @type {string}
|
|
1326
|
+
* @memberof Video
|
|
1327
|
+
*/
|
|
1328
|
+
'alt'?: string;
|
|
1329
|
+
/**
|
|
1330
|
+
*
|
|
1331
|
+
* @type {number}
|
|
1332
|
+
* @memberof Video
|
|
1333
|
+
*/
|
|
1334
|
+
'sortOrder'?: number;
|
|
1335
|
+
/**
|
|
1336
|
+
*
|
|
1337
|
+
* @type {string}
|
|
1338
|
+
* @memberof Video
|
|
1339
|
+
*/
|
|
1340
|
+
'createdAt'?: string;
|
|
1341
|
+
/**
|
|
1342
|
+
*
|
|
1343
|
+
* @type {string}
|
|
1344
|
+
* @memberof Video
|
|
1345
|
+
*/
|
|
1346
|
+
'updatedAt'?: string;
|
|
1347
|
+
}
|
|
1348
|
+
/**
|
|
1349
|
+
*
|
|
1350
|
+
* @export
|
|
1351
|
+
* @interface VideoFile
|
|
1352
|
+
*/
|
|
1353
|
+
export interface VideoFile {
|
|
1354
|
+
/**
|
|
1355
|
+
* Publicly available file URL.
|
|
1356
|
+
* @type {string}
|
|
1357
|
+
* @memberof VideoFile
|
|
1358
|
+
*/
|
|
1359
|
+
'src'?: string;
|
|
1360
|
+
}
|
|
1274
1361
|
/**
|
|
1275
1362
|
* ApplicationSetsApi - axios parameter creator
|
|
1276
1363
|
* @export
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage 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.
|
|
7
|
+
* The version of the OpenAPI document: 1.25.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/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage 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.
|
|
5
|
+
* The version of the OpenAPI document: 1.25.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/esm/base.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage 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.
|
|
7
|
+
* The version of the OpenAPI document: 1.25.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/dist/esm/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage 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.
|
|
5
|
+
* The version of the OpenAPI document: 1.25.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/esm/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage 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.
|
|
7
|
+
* The version of the OpenAPI document: 1.25.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
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 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.
|
|
5
|
+
* The version of the OpenAPI document: 1.25.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
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 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.
|
|
7
|
+
* The version of the OpenAPI document: 1.25.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/dist/esm/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage 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.
|
|
5
|
+
* The version of the OpenAPI document: 1.25.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/esm/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage 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.
|
|
7
|
+
* The version of the OpenAPI document: 1.25.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/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
3
|
* Manage 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.
|
|
5
|
+
* The version of the OpenAPI document: 1.25.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/index.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
6
|
* Manage 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.
|
|
8
|
+
* The version of the OpenAPI document: 1.25.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/index.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
5
|
* Manage 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.
|
|
7
|
+
* The version of the OpenAPI document: 1.25.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|