@teemill/product-catalog 1.28.0 → 1.29.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 +64 -9
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +60 -9
- package/dist/api.js +20 -2
- 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 +60 -9
- package/dist/esm/api.js +19 -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.29.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.29.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.29.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -278,6 +278,55 @@ export interface Attribute {
|
|
|
278
278
|
*/
|
|
279
279
|
'tags'?: Array<string>;
|
|
280
280
|
}
|
|
281
|
+
/**
|
|
282
|
+
*
|
|
283
|
+
* @export
|
|
284
|
+
* @interface CreateApplication
|
|
285
|
+
*/
|
|
286
|
+
export interface CreateApplication {
|
|
287
|
+
/**
|
|
288
|
+
* Technology to use for the application.
|
|
289
|
+
* @type {string}
|
|
290
|
+
* @memberof CreateApplication
|
|
291
|
+
*/
|
|
292
|
+
'technology': CreateApplicationTechnologyEnum;
|
|
293
|
+
/**
|
|
294
|
+
* Placement of the application. Available placements depend on the chosen product and technology.
|
|
295
|
+
* @type {string}
|
|
296
|
+
* @memberof CreateApplication
|
|
297
|
+
*/
|
|
298
|
+
'placement': CreateApplicationPlacementEnum;
|
|
299
|
+
/**
|
|
300
|
+
* Publicly available design file URL. This will fill the design area of the warehouse product. It will be centered horizontally and aligned to the top of the design area. Accepts PNG and JPEG files.
|
|
301
|
+
* @type {string}
|
|
302
|
+
* @memberof CreateApplication
|
|
303
|
+
*/
|
|
304
|
+
'src': string;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
export const CreateApplicationTechnologyEnum = {
|
|
308
|
+
Dtg: 'dtg',
|
|
309
|
+
Embroidery: 'embroidery',
|
|
310
|
+
Dtf: 'dtf',
|
|
311
|
+
Pretreat: 'pretreat',
|
|
312
|
+
MugSublimation: 'mug_sublimation',
|
|
313
|
+
ManualPrint: 'manual_print',
|
|
314
|
+
AdditionalApplication: 'additional_application',
|
|
315
|
+
NotebookSublimation: 'notebook_sublimation',
|
|
316
|
+
DuplexPrint: 'duplex_print'
|
|
317
|
+
} as const;
|
|
318
|
+
|
|
319
|
+
export type CreateApplicationTechnologyEnum = typeof CreateApplicationTechnologyEnum[keyof typeof CreateApplicationTechnologyEnum];
|
|
320
|
+
export const CreateApplicationPlacementEnum = {
|
|
321
|
+
Front: 'front',
|
|
322
|
+
Back: 'back',
|
|
323
|
+
Left: 'left',
|
|
324
|
+
Right: 'right',
|
|
325
|
+
Neck: 'neck'
|
|
326
|
+
} as const;
|
|
327
|
+
|
|
328
|
+
export type CreateApplicationPlacementEnum = typeof CreateApplicationPlacementEnum[keyof typeof CreateApplicationPlacementEnum];
|
|
329
|
+
|
|
281
330
|
/**
|
|
282
331
|
*
|
|
283
332
|
* @export
|
|
@@ -335,10 +384,10 @@ export interface CreateApplicationSetRequestRecordsInner {
|
|
|
335
384
|
'attributes'?: Array<CreateApplicationSetRequestRecordsInnerAttributesInner>;
|
|
336
385
|
/**
|
|
337
386
|
* List of applications for this record
|
|
338
|
-
* @type {Array<
|
|
387
|
+
* @type {Array<CreateApplication>}
|
|
339
388
|
* @memberof CreateApplicationSetRequestRecordsInner
|
|
340
389
|
*/
|
|
341
|
-
'applications'?: Array<
|
|
390
|
+
'applications'?: Array<CreateApplication>;
|
|
342
391
|
}
|
|
343
392
|
/**
|
|
344
393
|
*
|
|
@@ -484,7 +533,7 @@ export interface CreateProductRequest {
|
|
|
484
533
|
*/
|
|
485
534
|
'includeInDataFeeds'?: boolean;
|
|
486
535
|
/**
|
|
487
|
-
*
|
|
536
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
488
537
|
* @type {Array<MetaField>}
|
|
489
538
|
* @memberof CreateProductRequest
|
|
490
539
|
*/
|
|
@@ -789,17 +838,17 @@ export interface ImportProducts200Response {
|
|
|
789
838
|
*/
|
|
790
839
|
export interface MetaField {
|
|
791
840
|
/**
|
|
792
|
-
* The
|
|
841
|
+
* The key of the property
|
|
793
842
|
* @type {string}
|
|
794
843
|
* @memberof MetaField
|
|
795
844
|
*/
|
|
796
|
-
'
|
|
845
|
+
'key': string;
|
|
797
846
|
/**
|
|
798
847
|
* The string value of the property
|
|
799
848
|
* @type {string}
|
|
800
849
|
* @memberof MetaField
|
|
801
850
|
*/
|
|
802
|
-
'value'
|
|
851
|
+
'value': string;
|
|
803
852
|
}
|
|
804
853
|
/**
|
|
805
854
|
* Standard price definition that defines the amount, tax rate and currency.
|
|
@@ -972,7 +1021,7 @@ export interface Product {
|
|
|
972
1021
|
*/
|
|
973
1022
|
'warehouseProduct'?: ProductWarehouseProduct;
|
|
974
1023
|
/**
|
|
975
|
-
*
|
|
1024
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
976
1025
|
* @type {Array<MetaField>}
|
|
977
1026
|
* @memberof Product
|
|
978
1027
|
*/
|
|
@@ -1270,7 +1319,7 @@ export interface UpdateProductRequest {
|
|
|
1270
1319
|
*/
|
|
1271
1320
|
'includeInDataFeeds'?: boolean;
|
|
1272
1321
|
/**
|
|
1273
|
-
*
|
|
1322
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
1274
1323
|
* @type {Array<MetaField>}
|
|
1275
1324
|
* @memberof UpdateProductRequest
|
|
1276
1325
|
*/
|
|
@@ -1378,6 +1427,12 @@ export interface Variant {
|
|
|
1378
1427
|
* @memberof Variant
|
|
1379
1428
|
*/
|
|
1380
1429
|
'gtin'?: string | null;
|
|
1430
|
+
/**
|
|
1431
|
+
* Key/value pairs that can be used to store additional information about the variant
|
|
1432
|
+
* @type {Array<MetaField>}
|
|
1433
|
+
* @memberof Variant
|
|
1434
|
+
*/
|
|
1435
|
+
'metafields'?: Array<MetaField>;
|
|
1381
1436
|
}
|
|
1382
1437
|
/**
|
|
1383
1438
|
*
|
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.29.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.29.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.29.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.29.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -264,6 +264,51 @@ export interface Attribute {
|
|
|
264
264
|
*/
|
|
265
265
|
'tags'?: Array<string>;
|
|
266
266
|
}
|
|
267
|
+
/**
|
|
268
|
+
*
|
|
269
|
+
* @export
|
|
270
|
+
* @interface CreateApplication
|
|
271
|
+
*/
|
|
272
|
+
export interface CreateApplication {
|
|
273
|
+
/**
|
|
274
|
+
* Technology to use for the application.
|
|
275
|
+
* @type {string}
|
|
276
|
+
* @memberof CreateApplication
|
|
277
|
+
*/
|
|
278
|
+
'technology': CreateApplicationTechnologyEnum;
|
|
279
|
+
/**
|
|
280
|
+
* Placement of the application. Available placements depend on the chosen product and technology.
|
|
281
|
+
* @type {string}
|
|
282
|
+
* @memberof CreateApplication
|
|
283
|
+
*/
|
|
284
|
+
'placement': CreateApplicationPlacementEnum;
|
|
285
|
+
/**
|
|
286
|
+
* Publicly available design file URL. This will fill the design area of the warehouse product. It will be centered horizontally and aligned to the top of the design area. Accepts PNG and JPEG files.
|
|
287
|
+
* @type {string}
|
|
288
|
+
* @memberof CreateApplication
|
|
289
|
+
*/
|
|
290
|
+
'src': string;
|
|
291
|
+
}
|
|
292
|
+
export declare const CreateApplicationTechnologyEnum: {
|
|
293
|
+
readonly Dtg: "dtg";
|
|
294
|
+
readonly Embroidery: "embroidery";
|
|
295
|
+
readonly Dtf: "dtf";
|
|
296
|
+
readonly Pretreat: "pretreat";
|
|
297
|
+
readonly MugSublimation: "mug_sublimation";
|
|
298
|
+
readonly ManualPrint: "manual_print";
|
|
299
|
+
readonly AdditionalApplication: "additional_application";
|
|
300
|
+
readonly NotebookSublimation: "notebook_sublimation";
|
|
301
|
+
readonly DuplexPrint: "duplex_print";
|
|
302
|
+
};
|
|
303
|
+
export type CreateApplicationTechnologyEnum = typeof CreateApplicationTechnologyEnum[keyof typeof CreateApplicationTechnologyEnum];
|
|
304
|
+
export declare const CreateApplicationPlacementEnum: {
|
|
305
|
+
readonly Front: "front";
|
|
306
|
+
readonly Back: "back";
|
|
307
|
+
readonly Left: "left";
|
|
308
|
+
readonly Right: "right";
|
|
309
|
+
readonly Neck: "neck";
|
|
310
|
+
};
|
|
311
|
+
export type CreateApplicationPlacementEnum = typeof CreateApplicationPlacementEnum[keyof typeof CreateApplicationPlacementEnum];
|
|
267
312
|
/**
|
|
268
313
|
*
|
|
269
314
|
* @export
|
|
@@ -321,10 +366,10 @@ export interface CreateApplicationSetRequestRecordsInner {
|
|
|
321
366
|
'attributes'?: Array<CreateApplicationSetRequestRecordsInnerAttributesInner>;
|
|
322
367
|
/**
|
|
323
368
|
* List of applications for this record
|
|
324
|
-
* @type {Array<
|
|
369
|
+
* @type {Array<CreateApplication>}
|
|
325
370
|
* @memberof CreateApplicationSetRequestRecordsInner
|
|
326
371
|
*/
|
|
327
|
-
'applications'?: Array<
|
|
372
|
+
'applications'?: Array<CreateApplication>;
|
|
328
373
|
}
|
|
329
374
|
/**
|
|
330
375
|
*
|
|
@@ -467,7 +512,7 @@ export interface CreateProductRequest {
|
|
|
467
512
|
*/
|
|
468
513
|
'includeInDataFeeds'?: boolean;
|
|
469
514
|
/**
|
|
470
|
-
*
|
|
515
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
471
516
|
* @type {Array<MetaField>}
|
|
472
517
|
* @memberof CreateProductRequest
|
|
473
518
|
*/
|
|
@@ -763,17 +808,17 @@ export interface ImportProducts200Response {
|
|
|
763
808
|
*/
|
|
764
809
|
export interface MetaField {
|
|
765
810
|
/**
|
|
766
|
-
* The
|
|
811
|
+
* The key of the property
|
|
767
812
|
* @type {string}
|
|
768
813
|
* @memberof MetaField
|
|
769
814
|
*/
|
|
770
|
-
'
|
|
815
|
+
'key': string;
|
|
771
816
|
/**
|
|
772
817
|
* The string value of the property
|
|
773
818
|
* @type {string}
|
|
774
819
|
* @memberof MetaField
|
|
775
820
|
*/
|
|
776
|
-
'value'
|
|
821
|
+
'value': string;
|
|
777
822
|
}
|
|
778
823
|
/**
|
|
779
824
|
* Standard price definition that defines the amount, tax rate and currency.
|
|
@@ -943,7 +988,7 @@ export interface Product {
|
|
|
943
988
|
*/
|
|
944
989
|
'warehouseProduct'?: ProductWarehouseProduct;
|
|
945
990
|
/**
|
|
946
|
-
*
|
|
991
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
947
992
|
* @type {Array<MetaField>}
|
|
948
993
|
* @memberof Product
|
|
949
994
|
*/
|
|
@@ -1241,7 +1286,7 @@ export interface UpdateProductRequest {
|
|
|
1241
1286
|
*/
|
|
1242
1287
|
'includeInDataFeeds'?: boolean;
|
|
1243
1288
|
/**
|
|
1244
|
-
*
|
|
1289
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
1245
1290
|
* @type {Array<MetaField>}
|
|
1246
1291
|
* @memberof UpdateProductRequest
|
|
1247
1292
|
*/
|
|
@@ -1349,6 +1394,12 @@ export interface Variant {
|
|
|
1349
1394
|
* @memberof Variant
|
|
1350
1395
|
*/
|
|
1351
1396
|
'gtin'?: string | null;
|
|
1397
|
+
/**
|
|
1398
|
+
* Key/value pairs that can be used to store additional information about the variant
|
|
1399
|
+
* @type {Array<MetaField>}
|
|
1400
|
+
* @memberof Variant
|
|
1401
|
+
*/
|
|
1402
|
+
'metafields'?: Array<MetaField>;
|
|
1352
1403
|
}
|
|
1353
1404
|
/**
|
|
1354
1405
|
*
|
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.29.0
|
|
9
9
|
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -22,7 +22,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.VariantsApi = exports.VariantsApiFactory = exports.VariantsApiFp = exports.VariantsApiAxiosParamCreator = exports.ProductsApi = exports.ProductsApiFactory = exports.ProductsApiFp = exports.ProductsApiAxiosParamCreator = exports.ApplicationSetsApi = exports.ApplicationSetsApiFactory = exports.ApplicationSetsApiFp = exports.ApplicationSetsApiAxiosParamCreator = exports.PriceCurrencyCodeEnum = exports.CreateProductVariantSalePriceCurrencyCodeEnum = exports.CreateProductVariantRetailPriceCurrencyCodeEnum = exports.CreateProductVariantAttributesInnerNameEnum = exports.CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum = exports.ApplicationPlacementEnum = exports.ApplicationTechnologyEnum = void 0;
|
|
25
|
+
exports.VariantsApi = exports.VariantsApiFactory = exports.VariantsApiFp = exports.VariantsApiAxiosParamCreator = exports.ProductsApi = exports.ProductsApiFactory = exports.ProductsApiFp = exports.ProductsApiAxiosParamCreator = exports.ApplicationSetsApi = exports.ApplicationSetsApiFactory = exports.ApplicationSetsApiFp = exports.ApplicationSetsApiAxiosParamCreator = exports.PriceCurrencyCodeEnum = exports.CreateProductVariantSalePriceCurrencyCodeEnum = exports.CreateProductVariantRetailPriceCurrencyCodeEnum = exports.CreateProductVariantAttributesInnerNameEnum = exports.CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum = exports.CreateApplicationPlacementEnum = exports.CreateApplicationTechnologyEnum = exports.ApplicationPlacementEnum = exports.ApplicationTechnologyEnum = void 0;
|
|
26
26
|
const axios_1 = require("axios");
|
|
27
27
|
// Some imports not used depending on template conditions
|
|
28
28
|
// @ts-ignore
|
|
@@ -47,6 +47,24 @@ exports.ApplicationPlacementEnum = {
|
|
|
47
47
|
Right: 'right',
|
|
48
48
|
Neck: 'neck'
|
|
49
49
|
};
|
|
50
|
+
exports.CreateApplicationTechnologyEnum = {
|
|
51
|
+
Dtg: 'dtg',
|
|
52
|
+
Embroidery: 'embroidery',
|
|
53
|
+
Dtf: 'dtf',
|
|
54
|
+
Pretreat: 'pretreat',
|
|
55
|
+
MugSublimation: 'mug_sublimation',
|
|
56
|
+
ManualPrint: 'manual_print',
|
|
57
|
+
AdditionalApplication: 'additional_application',
|
|
58
|
+
NotebookSublimation: 'notebook_sublimation',
|
|
59
|
+
DuplexPrint: 'duplex_print'
|
|
60
|
+
};
|
|
61
|
+
exports.CreateApplicationPlacementEnum = {
|
|
62
|
+
Front: 'front',
|
|
63
|
+
Back: 'back',
|
|
64
|
+
Left: 'left',
|
|
65
|
+
Right: 'right',
|
|
66
|
+
Neck: 'neck'
|
|
67
|
+
};
|
|
50
68
|
exports.CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum = {
|
|
51
69
|
Text: 'text',
|
|
52
70
|
Color: 'color',
|
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.29.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.29.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.29.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.29.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.29.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.29.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.29.0
|
|
6
6
|
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -264,6 +264,51 @@ export interface Attribute {
|
|
|
264
264
|
*/
|
|
265
265
|
'tags'?: Array<string>;
|
|
266
266
|
}
|
|
267
|
+
/**
|
|
268
|
+
*
|
|
269
|
+
* @export
|
|
270
|
+
* @interface CreateApplication
|
|
271
|
+
*/
|
|
272
|
+
export interface CreateApplication {
|
|
273
|
+
/**
|
|
274
|
+
* Technology to use for the application.
|
|
275
|
+
* @type {string}
|
|
276
|
+
* @memberof CreateApplication
|
|
277
|
+
*/
|
|
278
|
+
'technology': CreateApplicationTechnologyEnum;
|
|
279
|
+
/**
|
|
280
|
+
* Placement of the application. Available placements depend on the chosen product and technology.
|
|
281
|
+
* @type {string}
|
|
282
|
+
* @memberof CreateApplication
|
|
283
|
+
*/
|
|
284
|
+
'placement': CreateApplicationPlacementEnum;
|
|
285
|
+
/**
|
|
286
|
+
* Publicly available design file URL. This will fill the design area of the warehouse product. It will be centered horizontally and aligned to the top of the design area. Accepts PNG and JPEG files.
|
|
287
|
+
* @type {string}
|
|
288
|
+
* @memberof CreateApplication
|
|
289
|
+
*/
|
|
290
|
+
'src': string;
|
|
291
|
+
}
|
|
292
|
+
export declare const CreateApplicationTechnologyEnum: {
|
|
293
|
+
readonly Dtg: "dtg";
|
|
294
|
+
readonly Embroidery: "embroidery";
|
|
295
|
+
readonly Dtf: "dtf";
|
|
296
|
+
readonly Pretreat: "pretreat";
|
|
297
|
+
readonly MugSublimation: "mug_sublimation";
|
|
298
|
+
readonly ManualPrint: "manual_print";
|
|
299
|
+
readonly AdditionalApplication: "additional_application";
|
|
300
|
+
readonly NotebookSublimation: "notebook_sublimation";
|
|
301
|
+
readonly DuplexPrint: "duplex_print";
|
|
302
|
+
};
|
|
303
|
+
export type CreateApplicationTechnologyEnum = typeof CreateApplicationTechnologyEnum[keyof typeof CreateApplicationTechnologyEnum];
|
|
304
|
+
export declare const CreateApplicationPlacementEnum: {
|
|
305
|
+
readonly Front: "front";
|
|
306
|
+
readonly Back: "back";
|
|
307
|
+
readonly Left: "left";
|
|
308
|
+
readonly Right: "right";
|
|
309
|
+
readonly Neck: "neck";
|
|
310
|
+
};
|
|
311
|
+
export type CreateApplicationPlacementEnum = typeof CreateApplicationPlacementEnum[keyof typeof CreateApplicationPlacementEnum];
|
|
267
312
|
/**
|
|
268
313
|
*
|
|
269
314
|
* @export
|
|
@@ -321,10 +366,10 @@ export interface CreateApplicationSetRequestRecordsInner {
|
|
|
321
366
|
'attributes'?: Array<CreateApplicationSetRequestRecordsInnerAttributesInner>;
|
|
322
367
|
/**
|
|
323
368
|
* List of applications for this record
|
|
324
|
-
* @type {Array<
|
|
369
|
+
* @type {Array<CreateApplication>}
|
|
325
370
|
* @memberof CreateApplicationSetRequestRecordsInner
|
|
326
371
|
*/
|
|
327
|
-
'applications'?: Array<
|
|
372
|
+
'applications'?: Array<CreateApplication>;
|
|
328
373
|
}
|
|
329
374
|
/**
|
|
330
375
|
*
|
|
@@ -467,7 +512,7 @@ export interface CreateProductRequest {
|
|
|
467
512
|
*/
|
|
468
513
|
'includeInDataFeeds'?: boolean;
|
|
469
514
|
/**
|
|
470
|
-
*
|
|
515
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
471
516
|
* @type {Array<MetaField>}
|
|
472
517
|
* @memberof CreateProductRequest
|
|
473
518
|
*/
|
|
@@ -763,17 +808,17 @@ export interface ImportProducts200Response {
|
|
|
763
808
|
*/
|
|
764
809
|
export interface MetaField {
|
|
765
810
|
/**
|
|
766
|
-
* The
|
|
811
|
+
* The key of the property
|
|
767
812
|
* @type {string}
|
|
768
813
|
* @memberof MetaField
|
|
769
814
|
*/
|
|
770
|
-
'
|
|
815
|
+
'key': string;
|
|
771
816
|
/**
|
|
772
817
|
* The string value of the property
|
|
773
818
|
* @type {string}
|
|
774
819
|
* @memberof MetaField
|
|
775
820
|
*/
|
|
776
|
-
'value'
|
|
821
|
+
'value': string;
|
|
777
822
|
}
|
|
778
823
|
/**
|
|
779
824
|
* Standard price definition that defines the amount, tax rate and currency.
|
|
@@ -943,7 +988,7 @@ export interface Product {
|
|
|
943
988
|
*/
|
|
944
989
|
'warehouseProduct'?: ProductWarehouseProduct;
|
|
945
990
|
/**
|
|
946
|
-
*
|
|
991
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
947
992
|
* @type {Array<MetaField>}
|
|
948
993
|
* @memberof Product
|
|
949
994
|
*/
|
|
@@ -1241,7 +1286,7 @@ export interface UpdateProductRequest {
|
|
|
1241
1286
|
*/
|
|
1242
1287
|
'includeInDataFeeds'?: boolean;
|
|
1243
1288
|
/**
|
|
1244
|
-
*
|
|
1289
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
1245
1290
|
* @type {Array<MetaField>}
|
|
1246
1291
|
* @memberof UpdateProductRequest
|
|
1247
1292
|
*/
|
|
@@ -1349,6 +1394,12 @@ export interface Variant {
|
|
|
1349
1394
|
* @memberof Variant
|
|
1350
1395
|
*/
|
|
1351
1396
|
'gtin'?: string | null;
|
|
1397
|
+
/**
|
|
1398
|
+
* Key/value pairs that can be used to store additional information about the variant
|
|
1399
|
+
* @type {Array<MetaField>}
|
|
1400
|
+
* @memberof Variant
|
|
1401
|
+
*/
|
|
1402
|
+
'metafields'?: Array<MetaField>;
|
|
1352
1403
|
}
|
|
1353
1404
|
/**
|
|
1354
1405
|
*
|
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.29.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -44,6 +44,24 @@ export const ApplicationPlacementEnum = {
|
|
|
44
44
|
Right: 'right',
|
|
45
45
|
Neck: 'neck'
|
|
46
46
|
};
|
|
47
|
+
export const CreateApplicationTechnologyEnum = {
|
|
48
|
+
Dtg: 'dtg',
|
|
49
|
+
Embroidery: 'embroidery',
|
|
50
|
+
Dtf: 'dtf',
|
|
51
|
+
Pretreat: 'pretreat',
|
|
52
|
+
MugSublimation: 'mug_sublimation',
|
|
53
|
+
ManualPrint: 'manual_print',
|
|
54
|
+
AdditionalApplication: 'additional_application',
|
|
55
|
+
NotebookSublimation: 'notebook_sublimation',
|
|
56
|
+
DuplexPrint: 'duplex_print'
|
|
57
|
+
};
|
|
58
|
+
export const CreateApplicationPlacementEnum = {
|
|
59
|
+
Front: 'front',
|
|
60
|
+
Back: 'back',
|
|
61
|
+
Left: 'left',
|
|
62
|
+
Right: 'right',
|
|
63
|
+
Neck: 'neck'
|
|
64
|
+
};
|
|
47
65
|
export const CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum = {
|
|
48
66
|
Text: 'text',
|
|
49
67
|
Color: 'color',
|
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.29.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.29.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.29.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.29.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.29.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.29.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.29.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.29.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.29.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.29.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.29.0
|
|
8
8
|
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|