@teemill/product-catalog 1.24.0 → 1.26.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 +113 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +113 -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 +113 -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.26.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.26.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.26.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>}
|
|
@@ -891,6 +916,12 @@ export interface Product {
|
|
|
891
916
|
* @memberof Product
|
|
892
917
|
*/
|
|
893
918
|
'includeInDataFeeds'?: boolean;
|
|
919
|
+
/**
|
|
920
|
+
*
|
|
921
|
+
* @type {ProductWarehouseProduct}
|
|
922
|
+
* @memberof Product
|
|
923
|
+
*/
|
|
924
|
+
'warehouseProduct'?: ProductWarehouseProduct;
|
|
894
925
|
}
|
|
895
926
|
/**
|
|
896
927
|
*
|
|
@@ -936,6 +967,25 @@ export interface ProductApplicationSetsInner {
|
|
|
936
967
|
*/
|
|
937
968
|
'name'?: string;
|
|
938
969
|
}
|
|
970
|
+
/**
|
|
971
|
+
*
|
|
972
|
+
* @export
|
|
973
|
+
* @interface ProductWarehouseProduct
|
|
974
|
+
*/
|
|
975
|
+
export interface ProductWarehouseProduct {
|
|
976
|
+
/**
|
|
977
|
+
* Unique object identifier
|
|
978
|
+
* @type {string}
|
|
979
|
+
* @memberof ProductWarehouseProduct
|
|
980
|
+
*/
|
|
981
|
+
'id'?: string;
|
|
982
|
+
/**
|
|
983
|
+
* Reference to the product in the Global Fulfillment Network (GFN) catalog that will be used as a base for this product. A list of available products for the given project can be obtained from the GFN Catalog API.
|
|
984
|
+
* @type {string}
|
|
985
|
+
* @memberof ProductWarehouseProduct
|
|
986
|
+
*/
|
|
987
|
+
'gfnProductRef'?: string;
|
|
988
|
+
}
|
|
939
989
|
/**
|
|
940
990
|
*
|
|
941
991
|
* @export
|
|
@@ -1140,6 +1190,12 @@ export interface UpdateProductRequest {
|
|
|
1140
1190
|
* @memberof UpdateProductRequest
|
|
1141
1191
|
*/
|
|
1142
1192
|
'images'?: Array<ImageFile>;
|
|
1193
|
+
/**
|
|
1194
|
+
* Videos to attach to the product.
|
|
1195
|
+
* @type {Array<VideoFile>}
|
|
1196
|
+
* @memberof UpdateProductRequest
|
|
1197
|
+
*/
|
|
1198
|
+
'videos'?: Array<VideoFile>;
|
|
1143
1199
|
/**
|
|
1144
1200
|
* Additional files to attach to the product. For example, original design files e.g. PSD, AI, etc.
|
|
1145
1201
|
* @type {Array<AdditionalFile>}
|
|
@@ -1300,6 +1356,62 @@ export interface VariantsResponse {
|
|
|
1300
1356
|
*/
|
|
1301
1357
|
'nextPageToken'?: number;
|
|
1302
1358
|
}
|
|
1359
|
+
/**
|
|
1360
|
+
* Video object
|
|
1361
|
+
* @export
|
|
1362
|
+
* @interface Video
|
|
1363
|
+
*/
|
|
1364
|
+
export interface Video {
|
|
1365
|
+
/**
|
|
1366
|
+
* Unique object identifier
|
|
1367
|
+
* @type {string}
|
|
1368
|
+
* @memberof Video
|
|
1369
|
+
*/
|
|
1370
|
+
'id'?: string;
|
|
1371
|
+
/**
|
|
1372
|
+
*
|
|
1373
|
+
* @type {string}
|
|
1374
|
+
* @memberof Video
|
|
1375
|
+
*/
|
|
1376
|
+
'src'?: string;
|
|
1377
|
+
/**
|
|
1378
|
+
*
|
|
1379
|
+
* @type {string}
|
|
1380
|
+
* @memberof Video
|
|
1381
|
+
*/
|
|
1382
|
+
'alt'?: string;
|
|
1383
|
+
/**
|
|
1384
|
+
*
|
|
1385
|
+
* @type {number}
|
|
1386
|
+
* @memberof Video
|
|
1387
|
+
*/
|
|
1388
|
+
'sortOrder'?: number;
|
|
1389
|
+
/**
|
|
1390
|
+
*
|
|
1391
|
+
* @type {string}
|
|
1392
|
+
* @memberof Video
|
|
1393
|
+
*/
|
|
1394
|
+
'createdAt'?: string;
|
|
1395
|
+
/**
|
|
1396
|
+
*
|
|
1397
|
+
* @type {string}
|
|
1398
|
+
* @memberof Video
|
|
1399
|
+
*/
|
|
1400
|
+
'updatedAt'?: string;
|
|
1401
|
+
}
|
|
1402
|
+
/**
|
|
1403
|
+
*
|
|
1404
|
+
* @export
|
|
1405
|
+
* @interface VideoFile
|
|
1406
|
+
*/
|
|
1407
|
+
export interface VideoFile {
|
|
1408
|
+
/**
|
|
1409
|
+
* Publicly available file URL.
|
|
1410
|
+
* @type {string}
|
|
1411
|
+
* @memberof VideoFile
|
|
1412
|
+
*/
|
|
1413
|
+
'src'?: string;
|
|
1414
|
+
}
|
|
1303
1415
|
|
|
1304
1416
|
/**
|
|
1305
1417
|
* 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.26.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.26.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.26.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.26.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>}
|
|
@@ -862,6 +887,12 @@ export interface Product {
|
|
|
862
887
|
* @memberof Product
|
|
863
888
|
*/
|
|
864
889
|
'includeInDataFeeds'?: boolean;
|
|
890
|
+
/**
|
|
891
|
+
*
|
|
892
|
+
* @type {ProductWarehouseProduct}
|
|
893
|
+
* @memberof Product
|
|
894
|
+
*/
|
|
895
|
+
'warehouseProduct'?: ProductWarehouseProduct;
|
|
865
896
|
}
|
|
866
897
|
/**
|
|
867
898
|
*
|
|
@@ -907,6 +938,25 @@ export interface ProductApplicationSetsInner {
|
|
|
907
938
|
*/
|
|
908
939
|
'name'?: string;
|
|
909
940
|
}
|
|
941
|
+
/**
|
|
942
|
+
*
|
|
943
|
+
* @export
|
|
944
|
+
* @interface ProductWarehouseProduct
|
|
945
|
+
*/
|
|
946
|
+
export interface ProductWarehouseProduct {
|
|
947
|
+
/**
|
|
948
|
+
* Unique object identifier
|
|
949
|
+
* @type {string}
|
|
950
|
+
* @memberof ProductWarehouseProduct
|
|
951
|
+
*/
|
|
952
|
+
'id'?: string;
|
|
953
|
+
/**
|
|
954
|
+
* Reference to the product in the Global Fulfillment Network (GFN) catalog that will be used as a base for this product. A list of available products for the given project can be obtained from the GFN Catalog API.
|
|
955
|
+
* @type {string}
|
|
956
|
+
* @memberof ProductWarehouseProduct
|
|
957
|
+
*/
|
|
958
|
+
'gfnProductRef'?: string;
|
|
959
|
+
}
|
|
910
960
|
/**
|
|
911
961
|
*
|
|
912
962
|
* @export
|
|
@@ -1111,6 +1161,12 @@ export interface UpdateProductRequest {
|
|
|
1111
1161
|
* @memberof UpdateProductRequest
|
|
1112
1162
|
*/
|
|
1113
1163
|
'images'?: Array<ImageFile>;
|
|
1164
|
+
/**
|
|
1165
|
+
* Videos to attach to the product.
|
|
1166
|
+
* @type {Array<VideoFile>}
|
|
1167
|
+
* @memberof UpdateProductRequest
|
|
1168
|
+
*/
|
|
1169
|
+
'videos'?: Array<VideoFile>;
|
|
1114
1170
|
/**
|
|
1115
1171
|
* Additional files to attach to the product. For example, original design files e.g. PSD, AI, etc.
|
|
1116
1172
|
* @type {Array<AdditionalFile>}
|
|
@@ -1271,6 +1327,62 @@ export interface VariantsResponse {
|
|
|
1271
1327
|
*/
|
|
1272
1328
|
'nextPageToken'?: number;
|
|
1273
1329
|
}
|
|
1330
|
+
/**
|
|
1331
|
+
* Video object
|
|
1332
|
+
* @export
|
|
1333
|
+
* @interface Video
|
|
1334
|
+
*/
|
|
1335
|
+
export interface Video {
|
|
1336
|
+
/**
|
|
1337
|
+
* Unique object identifier
|
|
1338
|
+
* @type {string}
|
|
1339
|
+
* @memberof Video
|
|
1340
|
+
*/
|
|
1341
|
+
'id'?: string;
|
|
1342
|
+
/**
|
|
1343
|
+
*
|
|
1344
|
+
* @type {string}
|
|
1345
|
+
* @memberof Video
|
|
1346
|
+
*/
|
|
1347
|
+
'src'?: string;
|
|
1348
|
+
/**
|
|
1349
|
+
*
|
|
1350
|
+
* @type {string}
|
|
1351
|
+
* @memberof Video
|
|
1352
|
+
*/
|
|
1353
|
+
'alt'?: string;
|
|
1354
|
+
/**
|
|
1355
|
+
*
|
|
1356
|
+
* @type {number}
|
|
1357
|
+
* @memberof Video
|
|
1358
|
+
*/
|
|
1359
|
+
'sortOrder'?: number;
|
|
1360
|
+
/**
|
|
1361
|
+
*
|
|
1362
|
+
* @type {string}
|
|
1363
|
+
* @memberof Video
|
|
1364
|
+
*/
|
|
1365
|
+
'createdAt'?: string;
|
|
1366
|
+
/**
|
|
1367
|
+
*
|
|
1368
|
+
* @type {string}
|
|
1369
|
+
* @memberof Video
|
|
1370
|
+
*/
|
|
1371
|
+
'updatedAt'?: string;
|
|
1372
|
+
}
|
|
1373
|
+
/**
|
|
1374
|
+
*
|
|
1375
|
+
* @export
|
|
1376
|
+
* @interface VideoFile
|
|
1377
|
+
*/
|
|
1378
|
+
export interface VideoFile {
|
|
1379
|
+
/**
|
|
1380
|
+
* Publicly available file URL.
|
|
1381
|
+
* @type {string}
|
|
1382
|
+
* @memberof VideoFile
|
|
1383
|
+
*/
|
|
1384
|
+
'src'?: string;
|
|
1385
|
+
}
|
|
1274
1386
|
/**
|
|
1275
1387
|
* ApplicationSetsApi - axios parameter creator
|
|
1276
1388
|
* @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.26.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.26.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.26.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.26.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.26.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.26.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.26.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.26.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>}
|
|
@@ -862,6 +887,12 @@ export interface Product {
|
|
|
862
887
|
* @memberof Product
|
|
863
888
|
*/
|
|
864
889
|
'includeInDataFeeds'?: boolean;
|
|
890
|
+
/**
|
|
891
|
+
*
|
|
892
|
+
* @type {ProductWarehouseProduct}
|
|
893
|
+
* @memberof Product
|
|
894
|
+
*/
|
|
895
|
+
'warehouseProduct'?: ProductWarehouseProduct;
|
|
865
896
|
}
|
|
866
897
|
/**
|
|
867
898
|
*
|
|
@@ -907,6 +938,25 @@ export interface ProductApplicationSetsInner {
|
|
|
907
938
|
*/
|
|
908
939
|
'name'?: string;
|
|
909
940
|
}
|
|
941
|
+
/**
|
|
942
|
+
*
|
|
943
|
+
* @export
|
|
944
|
+
* @interface ProductWarehouseProduct
|
|
945
|
+
*/
|
|
946
|
+
export interface ProductWarehouseProduct {
|
|
947
|
+
/**
|
|
948
|
+
* Unique object identifier
|
|
949
|
+
* @type {string}
|
|
950
|
+
* @memberof ProductWarehouseProduct
|
|
951
|
+
*/
|
|
952
|
+
'id'?: string;
|
|
953
|
+
/**
|
|
954
|
+
* Reference to the product in the Global Fulfillment Network (GFN) catalog that will be used as a base for this product. A list of available products for the given project can be obtained from the GFN Catalog API.
|
|
955
|
+
* @type {string}
|
|
956
|
+
* @memberof ProductWarehouseProduct
|
|
957
|
+
*/
|
|
958
|
+
'gfnProductRef'?: string;
|
|
959
|
+
}
|
|
910
960
|
/**
|
|
911
961
|
*
|
|
912
962
|
* @export
|
|
@@ -1111,6 +1161,12 @@ export interface UpdateProductRequest {
|
|
|
1111
1161
|
* @memberof UpdateProductRequest
|
|
1112
1162
|
*/
|
|
1113
1163
|
'images'?: Array<ImageFile>;
|
|
1164
|
+
/**
|
|
1165
|
+
* Videos to attach to the product.
|
|
1166
|
+
* @type {Array<VideoFile>}
|
|
1167
|
+
* @memberof UpdateProductRequest
|
|
1168
|
+
*/
|
|
1169
|
+
'videos'?: Array<VideoFile>;
|
|
1114
1170
|
/**
|
|
1115
1171
|
* Additional files to attach to the product. For example, original design files e.g. PSD, AI, etc.
|
|
1116
1172
|
* @type {Array<AdditionalFile>}
|
|
@@ -1271,6 +1327,62 @@ export interface VariantsResponse {
|
|
|
1271
1327
|
*/
|
|
1272
1328
|
'nextPageToken'?: number;
|
|
1273
1329
|
}
|
|
1330
|
+
/**
|
|
1331
|
+
* Video object
|
|
1332
|
+
* @export
|
|
1333
|
+
* @interface Video
|
|
1334
|
+
*/
|
|
1335
|
+
export interface Video {
|
|
1336
|
+
/**
|
|
1337
|
+
* Unique object identifier
|
|
1338
|
+
* @type {string}
|
|
1339
|
+
* @memberof Video
|
|
1340
|
+
*/
|
|
1341
|
+
'id'?: string;
|
|
1342
|
+
/**
|
|
1343
|
+
*
|
|
1344
|
+
* @type {string}
|
|
1345
|
+
* @memberof Video
|
|
1346
|
+
*/
|
|
1347
|
+
'src'?: string;
|
|
1348
|
+
/**
|
|
1349
|
+
*
|
|
1350
|
+
* @type {string}
|
|
1351
|
+
* @memberof Video
|
|
1352
|
+
*/
|
|
1353
|
+
'alt'?: string;
|
|
1354
|
+
/**
|
|
1355
|
+
*
|
|
1356
|
+
* @type {number}
|
|
1357
|
+
* @memberof Video
|
|
1358
|
+
*/
|
|
1359
|
+
'sortOrder'?: number;
|
|
1360
|
+
/**
|
|
1361
|
+
*
|
|
1362
|
+
* @type {string}
|
|
1363
|
+
* @memberof Video
|
|
1364
|
+
*/
|
|
1365
|
+
'createdAt'?: string;
|
|
1366
|
+
/**
|
|
1367
|
+
*
|
|
1368
|
+
* @type {string}
|
|
1369
|
+
* @memberof Video
|
|
1370
|
+
*/
|
|
1371
|
+
'updatedAt'?: string;
|
|
1372
|
+
}
|
|
1373
|
+
/**
|
|
1374
|
+
*
|
|
1375
|
+
* @export
|
|
1376
|
+
* @interface VideoFile
|
|
1377
|
+
*/
|
|
1378
|
+
export interface VideoFile {
|
|
1379
|
+
/**
|
|
1380
|
+
* Publicly available file URL.
|
|
1381
|
+
* @type {string}
|
|
1382
|
+
* @memberof VideoFile
|
|
1383
|
+
*/
|
|
1384
|
+
'src'?: string;
|
|
1385
|
+
}
|
|
1274
1386
|
/**
|
|
1275
1387
|
* ApplicationSetsApi - axios parameter creator
|
|
1276
1388
|
* @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.26.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.26.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.26.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.26.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.26.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.26.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.26.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.26.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.26.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.26.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.26.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.26.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|