@teemill/product-catalog 1.28.0 → 1.30.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 +78 -11
- package/base.ts +4 -4
- package/common.ts +3 -3
- package/configuration.ts +3 -3
- package/dist/api.d.ts +74 -11
- package/dist/api.js +22 -4
- package/dist/base.d.ts +3 -3
- package/dist/base.js +4 -4
- package/dist/common.d.ts +3 -3
- package/dist/common.js +3 -3
- package/dist/configuration.d.ts +3 -3
- package/dist/configuration.js +3 -3
- package/dist/esm/api.d.ts +74 -11
- package/dist/esm/api.js +21 -3
- package/dist/esm/base.d.ts +3 -3
- package/dist/esm/base.js +4 -4
- package/dist/esm/common.d.ts +3 -3
- package/dist/esm/common.js +3 -3
- package/dist/esm/configuration.d.ts +3 -3
- package/dist/esm/configuration.js +3 -3
- package/dist/esm/index.d.ts +3 -3
- package/dist/esm/index.js +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -3
- package/index.ts +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/product-catalog@1.
|
|
1
|
+
## @teemill/product-catalog@1.30.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.30.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Product Catalog API
|
|
5
|
-
* Manage Product Catalog
|
|
5
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
-
*
|
|
7
|
+
* The version of the OpenAPI document: 1.30.0
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* 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.
|
|
@@ -959,6 +1008,18 @@ export interface Product {
|
|
|
959
1008
|
* @memberof Product
|
|
960
1009
|
*/
|
|
961
1010
|
'sales'?: number;
|
|
1011
|
+
/**
|
|
1012
|
+
*
|
|
1013
|
+
* @type {string}
|
|
1014
|
+
* @memberof Product
|
|
1015
|
+
*/
|
|
1016
|
+
'salesStart'?: string;
|
|
1017
|
+
/**
|
|
1018
|
+
*
|
|
1019
|
+
* @type {string}
|
|
1020
|
+
* @memberof Product
|
|
1021
|
+
*/
|
|
1022
|
+
'salesEnd'?: string;
|
|
962
1023
|
/**
|
|
963
1024
|
*
|
|
964
1025
|
* @type {boolean}
|
|
@@ -972,7 +1033,7 @@ export interface Product {
|
|
|
972
1033
|
*/
|
|
973
1034
|
'warehouseProduct'?: ProductWarehouseProduct;
|
|
974
1035
|
/**
|
|
975
|
-
*
|
|
1036
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
976
1037
|
* @type {Array<MetaField>}
|
|
977
1038
|
* @memberof Product
|
|
978
1039
|
*/
|
|
@@ -1270,7 +1331,7 @@ export interface UpdateProductRequest {
|
|
|
1270
1331
|
*/
|
|
1271
1332
|
'includeInDataFeeds'?: boolean;
|
|
1272
1333
|
/**
|
|
1273
|
-
*
|
|
1334
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
1274
1335
|
* @type {Array<MetaField>}
|
|
1275
1336
|
* @memberof UpdateProductRequest
|
|
1276
1337
|
*/
|
|
@@ -1378,6 +1439,12 @@ export interface Variant {
|
|
|
1378
1439
|
* @memberof Variant
|
|
1379
1440
|
*/
|
|
1380
1441
|
'gtin'?: string | null;
|
|
1442
|
+
/**
|
|
1443
|
+
* Key/value pairs that can be used to store additional information about the variant
|
|
1444
|
+
* @type {Array<MetaField>}
|
|
1445
|
+
* @memberof Variant
|
|
1446
|
+
*/
|
|
1447
|
+
'metafields'?: Array<MetaField>;
|
|
1381
1448
|
}
|
|
1382
1449
|
/**
|
|
1383
1450
|
*
|
package/base.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Product Catalog API
|
|
5
|
-
* Manage Product Catalog
|
|
5
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
-
*
|
|
7
|
+
* The version of the OpenAPI document: 1.30.0
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
@@ -19,7 +19,7 @@ import type { Configuration } from './configuration';
|
|
|
19
19
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
20
20
|
import globalAxios from 'axios';
|
|
21
21
|
|
|
22
|
-
export const BASE_PATH = "https://api.
|
|
22
|
+
export const BASE_PATH = "https://api.podos.io".replace(/\/+$/, "");
|
|
23
23
|
|
|
24
24
|
/**
|
|
25
25
|
*
|
package/common.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Product Catalog API
|
|
5
|
-
* Manage Product Catalog
|
|
5
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
-
*
|
|
7
|
+
* The version of the OpenAPI document: 1.30.0
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/configuration.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Product Catalog API
|
|
5
|
-
* Manage Product Catalog
|
|
5
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
-
*
|
|
7
|
+
* The version of the OpenAPI document: 1.30.0
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/dist/api.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Product Catalog API
|
|
3
|
-
* Manage Product Catalog
|
|
3
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.30.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.28.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* 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.
|
|
@@ -930,6 +975,18 @@ export interface Product {
|
|
|
930
975
|
* @memberof Product
|
|
931
976
|
*/
|
|
932
977
|
'sales'?: number;
|
|
978
|
+
/**
|
|
979
|
+
*
|
|
980
|
+
* @type {string}
|
|
981
|
+
* @memberof Product
|
|
982
|
+
*/
|
|
983
|
+
'salesStart'?: string;
|
|
984
|
+
/**
|
|
985
|
+
*
|
|
986
|
+
* @type {string}
|
|
987
|
+
* @memberof Product
|
|
988
|
+
*/
|
|
989
|
+
'salesEnd'?: string;
|
|
933
990
|
/**
|
|
934
991
|
*
|
|
935
992
|
* @type {boolean}
|
|
@@ -943,7 +1000,7 @@ export interface Product {
|
|
|
943
1000
|
*/
|
|
944
1001
|
'warehouseProduct'?: ProductWarehouseProduct;
|
|
945
1002
|
/**
|
|
946
|
-
*
|
|
1003
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
947
1004
|
* @type {Array<MetaField>}
|
|
948
1005
|
* @memberof Product
|
|
949
1006
|
*/
|
|
@@ -1241,7 +1298,7 @@ export interface UpdateProductRequest {
|
|
|
1241
1298
|
*/
|
|
1242
1299
|
'includeInDataFeeds'?: boolean;
|
|
1243
1300
|
/**
|
|
1244
|
-
*
|
|
1301
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
1245
1302
|
* @type {Array<MetaField>}
|
|
1246
1303
|
* @memberof UpdateProductRequest
|
|
1247
1304
|
*/
|
|
@@ -1349,6 +1406,12 @@ export interface Variant {
|
|
|
1349
1406
|
* @memberof Variant
|
|
1350
1407
|
*/
|
|
1351
1408
|
'gtin'?: string | null;
|
|
1409
|
+
/**
|
|
1410
|
+
* Key/value pairs that can be used to store additional information about the variant
|
|
1411
|
+
* @type {Array<MetaField>}
|
|
1412
|
+
* @memberof Variant
|
|
1413
|
+
*/
|
|
1414
|
+
'metafields'?: Array<MetaField>;
|
|
1352
1415
|
}
|
|
1353
1416
|
/**
|
|
1354
1417
|
*
|
package/dist/api.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Product Catalog API
|
|
6
|
-
* Manage Product Catalog
|
|
6
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.30.0
|
|
7
9
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.28.0
|
|
9
|
-
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* 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
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Product Catalog API
|
|
3
|
-
* Manage Product Catalog
|
|
3
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.30.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.28.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/base.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Product Catalog API
|
|
6
|
-
* Manage Product Catalog
|
|
6
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.30.0
|
|
7
9
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.28.0
|
|
9
|
-
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.operationServerMap = exports.RequiredError = exports.BaseAPI = exports.COLLECTION_FORMATS = exports.BASE_PATH = void 0;
|
|
17
17
|
const axios_1 = require("axios");
|
|
18
|
-
exports.BASE_PATH = "https://api.
|
|
18
|
+
exports.BASE_PATH = "https://api.podos.io".replace(/\/+$/, "");
|
|
19
19
|
/**
|
|
20
20
|
*
|
|
21
21
|
* @export
|
package/dist/common.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Product Catalog API
|
|
3
|
-
* Manage Product Catalog
|
|
3
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.30.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.28.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/common.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Product Catalog API
|
|
6
|
-
* Manage Product Catalog
|
|
6
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.30.0
|
|
7
9
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.28.0
|
|
9
|
-
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/dist/configuration.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Product Catalog API
|
|
3
|
-
* Manage Product Catalog
|
|
3
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.30.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.28.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/configuration.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Product Catalog API
|
|
6
|
-
* Manage Product Catalog
|
|
6
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.30.0
|
|
7
9
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.28.0
|
|
9
|
-
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Product Catalog API
|
|
3
|
-
* Manage Product Catalog
|
|
3
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.30.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.28.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* 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.
|
|
@@ -930,6 +975,18 @@ export interface Product {
|
|
|
930
975
|
* @memberof Product
|
|
931
976
|
*/
|
|
932
977
|
'sales'?: number;
|
|
978
|
+
/**
|
|
979
|
+
*
|
|
980
|
+
* @type {string}
|
|
981
|
+
* @memberof Product
|
|
982
|
+
*/
|
|
983
|
+
'salesStart'?: string;
|
|
984
|
+
/**
|
|
985
|
+
*
|
|
986
|
+
* @type {string}
|
|
987
|
+
* @memberof Product
|
|
988
|
+
*/
|
|
989
|
+
'salesEnd'?: string;
|
|
933
990
|
/**
|
|
934
991
|
*
|
|
935
992
|
* @type {boolean}
|
|
@@ -943,7 +1000,7 @@ export interface Product {
|
|
|
943
1000
|
*/
|
|
944
1001
|
'warehouseProduct'?: ProductWarehouseProduct;
|
|
945
1002
|
/**
|
|
946
|
-
*
|
|
1003
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
947
1004
|
* @type {Array<MetaField>}
|
|
948
1005
|
* @memberof Product
|
|
949
1006
|
*/
|
|
@@ -1241,7 +1298,7 @@ export interface UpdateProductRequest {
|
|
|
1241
1298
|
*/
|
|
1242
1299
|
'includeInDataFeeds'?: boolean;
|
|
1243
1300
|
/**
|
|
1244
|
-
*
|
|
1301
|
+
* Key/value pairs that can be used to store additional information about the product
|
|
1245
1302
|
* @type {Array<MetaField>}
|
|
1246
1303
|
* @memberof UpdateProductRequest
|
|
1247
1304
|
*/
|
|
@@ -1349,6 +1406,12 @@ export interface Variant {
|
|
|
1349
1406
|
* @memberof Variant
|
|
1350
1407
|
*/
|
|
1351
1408
|
'gtin'?: string | null;
|
|
1409
|
+
/**
|
|
1410
|
+
* Key/value pairs that can be used to store additional information about the variant
|
|
1411
|
+
* @type {Array<MetaField>}
|
|
1412
|
+
* @memberof Variant
|
|
1413
|
+
*/
|
|
1414
|
+
'metafields'?: Array<MetaField>;
|
|
1352
1415
|
}
|
|
1353
1416
|
/**
|
|
1354
1417
|
*
|
package/dist/esm/api.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Product Catalog API
|
|
5
|
-
* Manage Product Catalog
|
|
5
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.30.0
|
|
6
8
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.28.0
|
|
8
|
-
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* 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
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Product Catalog API
|
|
3
|
-
* Manage Product Catalog
|
|
3
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.30.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.28.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/esm/base.js
CHANGED
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Product Catalog API
|
|
5
|
-
* Manage Product Catalog
|
|
5
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.30.0
|
|
6
8
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.28.0
|
|
8
|
-
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
14
|
import globalAxios from 'axios';
|
|
15
|
-
export const BASE_PATH = "https://api.
|
|
15
|
+
export const BASE_PATH = "https://api.podos.io".replace(/\/+$/, "");
|
|
16
16
|
/**
|
|
17
17
|
*
|
|
18
18
|
* @export
|
package/dist/esm/common.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Product Catalog API
|
|
3
|
-
* Manage Product Catalog
|
|
3
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.30.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.28.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/esm/common.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Product Catalog API
|
|
5
|
-
* Manage Product Catalog
|
|
5
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.30.0
|
|
6
8
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.28.0
|
|
8
|
-
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Product Catalog API
|
|
3
|
-
* Manage Product Catalog
|
|
3
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.30.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.28.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Product Catalog API
|
|
5
|
-
* Manage Product Catalog
|
|
5
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.30.0
|
|
6
8
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.28.0
|
|
8
|
-
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Product Catalog API
|
|
3
|
-
* Manage Product Catalog
|
|
3
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.30.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.28.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/esm/index.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Product Catalog API
|
|
5
|
-
* Manage Product Catalog
|
|
5
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.30.0
|
|
6
8
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.28.0
|
|
8
|
-
* Contact: hello@teemill.com
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Product Catalog API
|
|
3
|
-
* Manage Product Catalog
|
|
3
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.30.0
|
|
4
6
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.28.0
|
|
6
|
-
* Contact: hello@teemill.com
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
9
|
* https://openapi-generator.tech
|
package/dist/index.js
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
/**
|
|
5
5
|
* Product Catalog API
|
|
6
|
-
* Manage Product Catalog
|
|
6
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.30.0
|
|
7
9
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.28.0
|
|
9
|
-
* Contact: hello@teemill.com
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
12
|
* https://openapi-generator.tech
|
package/index.ts
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* Product Catalog API
|
|
5
|
-
* Manage Product Catalog
|
|
5
|
+
* Manage your Product Catalog. A catalog product is an object that represents a product listing that can be purchased from the given project. It contains a combination of design applications and a warehouse product, plus listing information such as title, description and tags.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
-
*
|
|
7
|
+
* The version of the OpenAPI document: 1.30.0
|
|
8
|
+
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
11
|
* https://openapi-generator.tech
|