@teemill/product-catalog 1.27.1 → 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 +95 -3
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +91 -3
- 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 +91 -3
- 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
|
*
|
|
@@ -483,6 +532,12 @@ export interface CreateProductRequest {
|
|
|
483
532
|
* @memberof CreateProductRequest
|
|
484
533
|
*/
|
|
485
534
|
'includeInDataFeeds'?: boolean;
|
|
535
|
+
/**
|
|
536
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
537
|
+
* @type {Array<MetaField>}
|
|
538
|
+
* @memberof CreateProductRequest
|
|
539
|
+
*/
|
|
540
|
+
'metafields'?: Array<MetaField>;
|
|
486
541
|
}
|
|
487
542
|
/**
|
|
488
543
|
*
|
|
@@ -776,6 +831,25 @@ export interface ImportProducts200Response {
|
|
|
776
831
|
*/
|
|
777
832
|
'importId'?: string;
|
|
778
833
|
}
|
|
834
|
+
/**
|
|
835
|
+
* Key/value pairs that can be used to store additional information on the product
|
|
836
|
+
* @export
|
|
837
|
+
* @interface MetaField
|
|
838
|
+
*/
|
|
839
|
+
export interface MetaField {
|
|
840
|
+
/**
|
|
841
|
+
* The key of the property
|
|
842
|
+
* @type {string}
|
|
843
|
+
* @memberof MetaField
|
|
844
|
+
*/
|
|
845
|
+
'key': string;
|
|
846
|
+
/**
|
|
847
|
+
* The string value of the property
|
|
848
|
+
* @type {string}
|
|
849
|
+
* @memberof MetaField
|
|
850
|
+
*/
|
|
851
|
+
'value': string;
|
|
852
|
+
}
|
|
779
853
|
/**
|
|
780
854
|
* Standard price definition that defines the amount, tax rate and currency.
|
|
781
855
|
* @export
|
|
@@ -946,6 +1020,12 @@ export interface Product {
|
|
|
946
1020
|
* @memberof Product
|
|
947
1021
|
*/
|
|
948
1022
|
'warehouseProduct'?: ProductWarehouseProduct;
|
|
1023
|
+
/**
|
|
1024
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
1025
|
+
* @type {Array<MetaField>}
|
|
1026
|
+
* @memberof Product
|
|
1027
|
+
*/
|
|
1028
|
+
'metafields'?: Array<MetaField>;
|
|
949
1029
|
}
|
|
950
1030
|
/**
|
|
951
1031
|
*
|
|
@@ -1238,6 +1318,12 @@ export interface UpdateProductRequest {
|
|
|
1238
1318
|
* @memberof UpdateProductRequest
|
|
1239
1319
|
*/
|
|
1240
1320
|
'includeInDataFeeds'?: boolean;
|
|
1321
|
+
/**
|
|
1322
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
1323
|
+
* @type {Array<MetaField>}
|
|
1324
|
+
* @memberof UpdateProductRequest
|
|
1325
|
+
*/
|
|
1326
|
+
'metafields'?: Array<MetaField>;
|
|
1241
1327
|
}
|
|
1242
1328
|
/**
|
|
1243
1329
|
*
|
|
@@ -1341,6 +1427,12 @@ export interface Variant {
|
|
|
1341
1427
|
* @memberof Variant
|
|
1342
1428
|
*/
|
|
1343
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>;
|
|
1344
1436
|
}
|
|
1345
1437
|
/**
|
|
1346
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
|
*
|
|
@@ -466,6 +511,12 @@ export interface CreateProductRequest {
|
|
|
466
511
|
* @memberof CreateProductRequest
|
|
467
512
|
*/
|
|
468
513
|
'includeInDataFeeds'?: boolean;
|
|
514
|
+
/**
|
|
515
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
516
|
+
* @type {Array<MetaField>}
|
|
517
|
+
* @memberof CreateProductRequest
|
|
518
|
+
*/
|
|
519
|
+
'metafields'?: Array<MetaField>;
|
|
469
520
|
}
|
|
470
521
|
/**
|
|
471
522
|
*
|
|
@@ -750,6 +801,25 @@ export interface ImportProducts200Response {
|
|
|
750
801
|
*/
|
|
751
802
|
'importId'?: string;
|
|
752
803
|
}
|
|
804
|
+
/**
|
|
805
|
+
* Key/value pairs that can be used to store additional information on the product
|
|
806
|
+
* @export
|
|
807
|
+
* @interface MetaField
|
|
808
|
+
*/
|
|
809
|
+
export interface MetaField {
|
|
810
|
+
/**
|
|
811
|
+
* The key of the property
|
|
812
|
+
* @type {string}
|
|
813
|
+
* @memberof MetaField
|
|
814
|
+
*/
|
|
815
|
+
'key': string;
|
|
816
|
+
/**
|
|
817
|
+
* The string value of the property
|
|
818
|
+
* @type {string}
|
|
819
|
+
* @memberof MetaField
|
|
820
|
+
*/
|
|
821
|
+
'value': string;
|
|
822
|
+
}
|
|
753
823
|
/**
|
|
754
824
|
* Standard price definition that defines the amount, tax rate and currency.
|
|
755
825
|
* @export
|
|
@@ -917,6 +987,12 @@ export interface Product {
|
|
|
917
987
|
* @memberof Product
|
|
918
988
|
*/
|
|
919
989
|
'warehouseProduct'?: ProductWarehouseProduct;
|
|
990
|
+
/**
|
|
991
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
992
|
+
* @type {Array<MetaField>}
|
|
993
|
+
* @memberof Product
|
|
994
|
+
*/
|
|
995
|
+
'metafields'?: Array<MetaField>;
|
|
920
996
|
}
|
|
921
997
|
/**
|
|
922
998
|
*
|
|
@@ -1209,6 +1285,12 @@ export interface UpdateProductRequest {
|
|
|
1209
1285
|
* @memberof UpdateProductRequest
|
|
1210
1286
|
*/
|
|
1211
1287
|
'includeInDataFeeds'?: boolean;
|
|
1288
|
+
/**
|
|
1289
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
1290
|
+
* @type {Array<MetaField>}
|
|
1291
|
+
* @memberof UpdateProductRequest
|
|
1292
|
+
*/
|
|
1293
|
+
'metafields'?: Array<MetaField>;
|
|
1212
1294
|
}
|
|
1213
1295
|
/**
|
|
1214
1296
|
*
|
|
@@ -1312,6 +1394,12 @@ export interface Variant {
|
|
|
1312
1394
|
* @memberof Variant
|
|
1313
1395
|
*/
|
|
1314
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>;
|
|
1315
1403
|
}
|
|
1316
1404
|
/**
|
|
1317
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
|
*
|
|
@@ -466,6 +511,12 @@ export interface CreateProductRequest {
|
|
|
466
511
|
* @memberof CreateProductRequest
|
|
467
512
|
*/
|
|
468
513
|
'includeInDataFeeds'?: boolean;
|
|
514
|
+
/**
|
|
515
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
516
|
+
* @type {Array<MetaField>}
|
|
517
|
+
* @memberof CreateProductRequest
|
|
518
|
+
*/
|
|
519
|
+
'metafields'?: Array<MetaField>;
|
|
469
520
|
}
|
|
470
521
|
/**
|
|
471
522
|
*
|
|
@@ -750,6 +801,25 @@ export interface ImportProducts200Response {
|
|
|
750
801
|
*/
|
|
751
802
|
'importId'?: string;
|
|
752
803
|
}
|
|
804
|
+
/**
|
|
805
|
+
* Key/value pairs that can be used to store additional information on the product
|
|
806
|
+
* @export
|
|
807
|
+
* @interface MetaField
|
|
808
|
+
*/
|
|
809
|
+
export interface MetaField {
|
|
810
|
+
/**
|
|
811
|
+
* The key of the property
|
|
812
|
+
* @type {string}
|
|
813
|
+
* @memberof MetaField
|
|
814
|
+
*/
|
|
815
|
+
'key': string;
|
|
816
|
+
/**
|
|
817
|
+
* The string value of the property
|
|
818
|
+
* @type {string}
|
|
819
|
+
* @memberof MetaField
|
|
820
|
+
*/
|
|
821
|
+
'value': string;
|
|
822
|
+
}
|
|
753
823
|
/**
|
|
754
824
|
* Standard price definition that defines the amount, tax rate and currency.
|
|
755
825
|
* @export
|
|
@@ -917,6 +987,12 @@ export interface Product {
|
|
|
917
987
|
* @memberof Product
|
|
918
988
|
*/
|
|
919
989
|
'warehouseProduct'?: ProductWarehouseProduct;
|
|
990
|
+
/**
|
|
991
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
992
|
+
* @type {Array<MetaField>}
|
|
993
|
+
* @memberof Product
|
|
994
|
+
*/
|
|
995
|
+
'metafields'?: Array<MetaField>;
|
|
920
996
|
}
|
|
921
997
|
/**
|
|
922
998
|
*
|
|
@@ -1209,6 +1285,12 @@ export interface UpdateProductRequest {
|
|
|
1209
1285
|
* @memberof UpdateProductRequest
|
|
1210
1286
|
*/
|
|
1211
1287
|
'includeInDataFeeds'?: boolean;
|
|
1288
|
+
/**
|
|
1289
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
1290
|
+
* @type {Array<MetaField>}
|
|
1291
|
+
* @memberof UpdateProductRequest
|
|
1292
|
+
*/
|
|
1293
|
+
'metafields'?: Array<MetaField>;
|
|
1212
1294
|
}
|
|
1213
1295
|
/**
|
|
1214
1296
|
*
|
|
@@ -1312,6 +1394,12 @@ export interface Variant {
|
|
|
1312
1394
|
* @memberof Variant
|
|
1313
1395
|
*/
|
|
1314
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>;
|
|
1315
1403
|
}
|
|
1316
1404
|
/**
|
|
1317
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).
|