@teemill/product-catalog 1.44.0 → 1.45.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 +60 -60
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +57 -57
- package/dist/api.js +7 -7
- 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 +57 -57
- package/dist/esm/api.js +6 -6
- 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.45.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.45.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 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.
|
|
7
|
+
* The version of the OpenAPI document: 1.45.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -146,7 +146,13 @@ export interface ApplicationSet {
|
|
|
146
146
|
* @type {string}
|
|
147
147
|
* @memberof ApplicationSet
|
|
148
148
|
*/
|
|
149
|
-
'id'
|
|
149
|
+
'id': string;
|
|
150
|
+
/**
|
|
151
|
+
* A reference to the resource location
|
|
152
|
+
* @type {string}
|
|
153
|
+
* @memberof ApplicationSet
|
|
154
|
+
*/
|
|
155
|
+
'ref': string;
|
|
150
156
|
/**
|
|
151
157
|
* Name of the application set
|
|
152
158
|
* @type {string}
|
|
@@ -182,7 +188,19 @@ export interface ApplicationSet {
|
|
|
182
188
|
* @type {Array<ApplicationSetRecord>}
|
|
183
189
|
* @memberof ApplicationSet
|
|
184
190
|
*/
|
|
185
|
-
'records'
|
|
191
|
+
'records': Array<ApplicationSetRecord>;
|
|
192
|
+
/**
|
|
193
|
+
*
|
|
194
|
+
* @type {string}
|
|
195
|
+
* @memberof ApplicationSet
|
|
196
|
+
*/
|
|
197
|
+
'createdAt': string;
|
|
198
|
+
/**
|
|
199
|
+
*
|
|
200
|
+
* @type {string}
|
|
201
|
+
* @memberof ApplicationSet
|
|
202
|
+
*/
|
|
203
|
+
'updatedAt': string;
|
|
186
204
|
}
|
|
187
205
|
/**
|
|
188
206
|
*
|
|
@@ -267,10 +285,10 @@ export interface Attribute {
|
|
|
267
285
|
'value': string;
|
|
268
286
|
/**
|
|
269
287
|
*
|
|
270
|
-
* @type {
|
|
288
|
+
* @type {AttributeThumbnail}
|
|
271
289
|
* @memberof Attribute
|
|
272
290
|
*/
|
|
273
|
-
'thumbnail'?:
|
|
291
|
+
'thumbnail'?: AttributeThumbnail;
|
|
274
292
|
/**
|
|
275
293
|
* Attribute tags
|
|
276
294
|
* @type {Array<string>}
|
|
@@ -278,6 +296,34 @@ export interface Attribute {
|
|
|
278
296
|
*/
|
|
279
297
|
'tags'?: Array<string>;
|
|
280
298
|
}
|
|
299
|
+
/**
|
|
300
|
+
* Attribute thumbnail, intended for interfaces like storefront colour selector.
|
|
301
|
+
* @export
|
|
302
|
+
* @interface AttributeThumbnail
|
|
303
|
+
*/
|
|
304
|
+
export interface AttributeThumbnail {
|
|
305
|
+
/**
|
|
306
|
+
*
|
|
307
|
+
* @type {string}
|
|
308
|
+
* @memberof AttributeThumbnail
|
|
309
|
+
*/
|
|
310
|
+
'type'?: AttributeThumbnailTypeEnum;
|
|
311
|
+
/**
|
|
312
|
+
*
|
|
313
|
+
* @type {string}
|
|
314
|
+
* @memberof AttributeThumbnail
|
|
315
|
+
*/
|
|
316
|
+
'value'?: string;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
export const AttributeThumbnailTypeEnum = {
|
|
320
|
+
Text: 'text',
|
|
321
|
+
Color: 'color',
|
|
322
|
+
Image: 'image'
|
|
323
|
+
} as const;
|
|
324
|
+
|
|
325
|
+
export type AttributeThumbnailTypeEnum = typeof AttributeThumbnailTypeEnum[keyof typeof AttributeThumbnailTypeEnum];
|
|
326
|
+
|
|
281
327
|
/**
|
|
282
328
|
*
|
|
283
329
|
* @export
|
|
@@ -338,7 +384,7 @@ export interface CreateApplicationSetRequest {
|
|
|
338
384
|
* @type {string}
|
|
339
385
|
* @memberof CreateApplicationSetRequest
|
|
340
386
|
*/
|
|
341
|
-
'name'
|
|
387
|
+
'name': string;
|
|
342
388
|
/**
|
|
343
389
|
* Description of the application set
|
|
344
390
|
* @type {string}
|
|
@@ -350,25 +396,25 @@ export interface CreateApplicationSetRequest {
|
|
|
350
396
|
* @type {number}
|
|
351
397
|
* @memberof CreateApplicationSetRequest
|
|
352
398
|
*/
|
|
353
|
-
'width'
|
|
399
|
+
'width': number;
|
|
354
400
|
/**
|
|
355
401
|
* The height, in pixels of the images in the set
|
|
356
402
|
* @type {number}
|
|
357
403
|
* @memberof CreateApplicationSetRequest
|
|
358
404
|
*/
|
|
359
|
-
'height'
|
|
405
|
+
'height': number;
|
|
360
406
|
/**
|
|
361
407
|
* The DPI used when printing the images in the set
|
|
362
408
|
* @type {number}
|
|
363
409
|
* @memberof CreateApplicationSetRequest
|
|
364
410
|
*/
|
|
365
|
-
'dpi'
|
|
411
|
+
'dpi': number;
|
|
366
412
|
/**
|
|
367
413
|
* List of application set records
|
|
368
414
|
* @type {Array<CreateApplicationSetRequestRecordsInner>}
|
|
369
415
|
* @memberof CreateApplicationSetRequest
|
|
370
416
|
*/
|
|
371
|
-
'records'
|
|
417
|
+
'records': Array<CreateApplicationSetRequestRecordsInner>;
|
|
372
418
|
}
|
|
373
419
|
/**
|
|
374
420
|
*
|
|
@@ -377,7 +423,7 @@ export interface CreateApplicationSetRequest {
|
|
|
377
423
|
*/
|
|
378
424
|
export interface CreateApplicationSetRequestRecordsInner {
|
|
379
425
|
/**
|
|
380
|
-
* List of attributes this record applies to
|
|
426
|
+
* List of attributes this record applies to. Providing an empty array will apply the application set to all variants.
|
|
381
427
|
* @type {Array<CreateApplicationSetRequestRecordsInnerAttributesInner>}
|
|
382
428
|
* @memberof CreateApplicationSetRequestRecordsInner
|
|
383
429
|
*/
|
|
@@ -400,48 +446,14 @@ export interface CreateApplicationSetRequestRecordsInnerAttributesInner {
|
|
|
400
446
|
* @type {string}
|
|
401
447
|
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInner
|
|
402
448
|
*/
|
|
403
|
-
'name'
|
|
449
|
+
'name': string;
|
|
404
450
|
/**
|
|
405
451
|
* The value of the option this record applies to
|
|
406
452
|
* @type {string}
|
|
407
453
|
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInner
|
|
408
454
|
*/
|
|
409
|
-
'value'
|
|
410
|
-
/**
|
|
411
|
-
*
|
|
412
|
-
* @type {CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail}
|
|
413
|
-
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInner
|
|
414
|
-
*/
|
|
415
|
-
'thumbnail'?: CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail;
|
|
416
|
-
}
|
|
417
|
-
/**
|
|
418
|
-
* Attribute thumbnail, intended for interfaces like storefront colour selector.
|
|
419
|
-
* @export
|
|
420
|
-
* @interface CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail
|
|
421
|
-
*/
|
|
422
|
-
export interface CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail {
|
|
423
|
-
/**
|
|
424
|
-
*
|
|
425
|
-
* @type {string}
|
|
426
|
-
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail
|
|
427
|
-
*/
|
|
428
|
-
'type'?: CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum;
|
|
429
|
-
/**
|
|
430
|
-
*
|
|
431
|
-
* @type {string}
|
|
432
|
-
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail
|
|
433
|
-
*/
|
|
434
|
-
'value'?: string;
|
|
455
|
+
'value': string;
|
|
435
456
|
}
|
|
436
|
-
|
|
437
|
-
export const CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum = {
|
|
438
|
-
Text: 'text',
|
|
439
|
-
Color: 'color',
|
|
440
|
-
Image: 'image'
|
|
441
|
-
} as const;
|
|
442
|
-
|
|
443
|
-
export type CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum = typeof CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum[keyof typeof CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum];
|
|
444
|
-
|
|
445
457
|
/**
|
|
446
458
|
*
|
|
447
459
|
* @export
|
|
@@ -758,12 +770,6 @@ export interface CreateProductVariant {
|
|
|
758
770
|
* @memberof CreateProductVariant
|
|
759
771
|
*/
|
|
760
772
|
'images'?: Array<CreateProductVariantImagesInner>;
|
|
761
|
-
/**
|
|
762
|
-
* List of application set UUIDs to associate with this variant
|
|
763
|
-
* @type {Array<string>}
|
|
764
|
-
* @memberof CreateProductVariant
|
|
765
|
-
*/
|
|
766
|
-
'applicationSets'?: Array<string>;
|
|
767
773
|
/**
|
|
768
774
|
* The GTIN (Global Trade Item Number) or EAN (European Article Number) of the variant. Please note that a barcode can only be attached after the Barcodes module has been installed.
|
|
769
775
|
* @type {string}
|
|
@@ -1381,12 +1387,6 @@ export interface TargetSearchPhraseData {
|
|
|
1381
1387
|
* @interface UpdateApplicationSetRequest
|
|
1382
1388
|
*/
|
|
1383
1389
|
export interface UpdateApplicationSetRequest {
|
|
1384
|
-
/**
|
|
1385
|
-
*
|
|
1386
|
-
* @type {string}
|
|
1387
|
-
* @memberof UpdateApplicationSetRequest
|
|
1388
|
-
*/
|
|
1389
|
-
'id'?: string;
|
|
1390
1390
|
/**
|
|
1391
1391
|
* Name of the application set
|
|
1392
1392
|
* @type {string}
|
|
@@ -1431,7 +1431,7 @@ export interface UpdateApplicationSetRequest {
|
|
|
1431
1431
|
*/
|
|
1432
1432
|
export interface UpdateApplicationSetRequestRecordsInner {
|
|
1433
1433
|
/**
|
|
1434
|
-
* List of attributes this record applies to
|
|
1434
|
+
* List of attributes this record applies to. Providing an empty array will apply the application set to all variants.
|
|
1435
1435
|
* @type {Array<UpdateApplicationSetRequestRecordsInnerAttributesInner>}
|
|
1436
1436
|
* @memberof UpdateApplicationSetRequestRecordsInner
|
|
1437
1437
|
*/
|
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.45.0
|
|
8
8
|
*
|
|
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 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.
|
|
7
|
+
* The version of the OpenAPI document: 1.45.0
|
|
8
8
|
*
|
|
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 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.
|
|
7
|
+
* The version of the OpenAPI document: 1.45.0
|
|
8
8
|
*
|
|
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 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
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.45.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -132,7 +132,13 @@ export interface ApplicationSet {
|
|
|
132
132
|
* @type {string}
|
|
133
133
|
* @memberof ApplicationSet
|
|
134
134
|
*/
|
|
135
|
-
'id'
|
|
135
|
+
'id': string;
|
|
136
|
+
/**
|
|
137
|
+
* A reference to the resource location
|
|
138
|
+
* @type {string}
|
|
139
|
+
* @memberof ApplicationSet
|
|
140
|
+
*/
|
|
141
|
+
'ref': string;
|
|
136
142
|
/**
|
|
137
143
|
* Name of the application set
|
|
138
144
|
* @type {string}
|
|
@@ -168,7 +174,19 @@ export interface ApplicationSet {
|
|
|
168
174
|
* @type {Array<ApplicationSetRecord>}
|
|
169
175
|
* @memberof ApplicationSet
|
|
170
176
|
*/
|
|
171
|
-
'records'
|
|
177
|
+
'records': Array<ApplicationSetRecord>;
|
|
178
|
+
/**
|
|
179
|
+
*
|
|
180
|
+
* @type {string}
|
|
181
|
+
* @memberof ApplicationSet
|
|
182
|
+
*/
|
|
183
|
+
'createdAt': string;
|
|
184
|
+
/**
|
|
185
|
+
*
|
|
186
|
+
* @type {string}
|
|
187
|
+
* @memberof ApplicationSet
|
|
188
|
+
*/
|
|
189
|
+
'updatedAt': string;
|
|
172
190
|
}
|
|
173
191
|
/**
|
|
174
192
|
*
|
|
@@ -253,10 +271,10 @@ export interface Attribute {
|
|
|
253
271
|
'value': string;
|
|
254
272
|
/**
|
|
255
273
|
*
|
|
256
|
-
* @type {
|
|
274
|
+
* @type {AttributeThumbnail}
|
|
257
275
|
* @memberof Attribute
|
|
258
276
|
*/
|
|
259
|
-
'thumbnail'?:
|
|
277
|
+
'thumbnail'?: AttributeThumbnail;
|
|
260
278
|
/**
|
|
261
279
|
* Attribute tags
|
|
262
280
|
* @type {Array<string>}
|
|
@@ -264,6 +282,31 @@ export interface Attribute {
|
|
|
264
282
|
*/
|
|
265
283
|
'tags'?: Array<string>;
|
|
266
284
|
}
|
|
285
|
+
/**
|
|
286
|
+
* Attribute thumbnail, intended for interfaces like storefront colour selector.
|
|
287
|
+
* @export
|
|
288
|
+
* @interface AttributeThumbnail
|
|
289
|
+
*/
|
|
290
|
+
export interface AttributeThumbnail {
|
|
291
|
+
/**
|
|
292
|
+
*
|
|
293
|
+
* @type {string}
|
|
294
|
+
* @memberof AttributeThumbnail
|
|
295
|
+
*/
|
|
296
|
+
'type'?: AttributeThumbnailTypeEnum;
|
|
297
|
+
/**
|
|
298
|
+
*
|
|
299
|
+
* @type {string}
|
|
300
|
+
* @memberof AttributeThumbnail
|
|
301
|
+
*/
|
|
302
|
+
'value'?: string;
|
|
303
|
+
}
|
|
304
|
+
export declare const AttributeThumbnailTypeEnum: {
|
|
305
|
+
readonly Text: "text";
|
|
306
|
+
readonly Color: "color";
|
|
307
|
+
readonly Image: "image";
|
|
308
|
+
};
|
|
309
|
+
export type AttributeThumbnailTypeEnum = typeof AttributeThumbnailTypeEnum[keyof typeof AttributeThumbnailTypeEnum];
|
|
267
310
|
/**
|
|
268
311
|
*
|
|
269
312
|
* @export
|
|
@@ -320,7 +363,7 @@ export interface CreateApplicationSetRequest {
|
|
|
320
363
|
* @type {string}
|
|
321
364
|
* @memberof CreateApplicationSetRequest
|
|
322
365
|
*/
|
|
323
|
-
'name'
|
|
366
|
+
'name': string;
|
|
324
367
|
/**
|
|
325
368
|
* Description of the application set
|
|
326
369
|
* @type {string}
|
|
@@ -332,25 +375,25 @@ export interface CreateApplicationSetRequest {
|
|
|
332
375
|
* @type {number}
|
|
333
376
|
* @memberof CreateApplicationSetRequest
|
|
334
377
|
*/
|
|
335
|
-
'width'
|
|
378
|
+
'width': number;
|
|
336
379
|
/**
|
|
337
380
|
* The height, in pixels of the images in the set
|
|
338
381
|
* @type {number}
|
|
339
382
|
* @memberof CreateApplicationSetRequest
|
|
340
383
|
*/
|
|
341
|
-
'height'
|
|
384
|
+
'height': number;
|
|
342
385
|
/**
|
|
343
386
|
* The DPI used when printing the images in the set
|
|
344
387
|
* @type {number}
|
|
345
388
|
* @memberof CreateApplicationSetRequest
|
|
346
389
|
*/
|
|
347
|
-
'dpi'
|
|
390
|
+
'dpi': number;
|
|
348
391
|
/**
|
|
349
392
|
* List of application set records
|
|
350
393
|
* @type {Array<CreateApplicationSetRequestRecordsInner>}
|
|
351
394
|
* @memberof CreateApplicationSetRequest
|
|
352
395
|
*/
|
|
353
|
-
'records'
|
|
396
|
+
'records': Array<CreateApplicationSetRequestRecordsInner>;
|
|
354
397
|
}
|
|
355
398
|
/**
|
|
356
399
|
*
|
|
@@ -359,7 +402,7 @@ export interface CreateApplicationSetRequest {
|
|
|
359
402
|
*/
|
|
360
403
|
export interface CreateApplicationSetRequestRecordsInner {
|
|
361
404
|
/**
|
|
362
|
-
* List of attributes this record applies to
|
|
405
|
+
* List of attributes this record applies to. Providing an empty array will apply the application set to all variants.
|
|
363
406
|
* @type {Array<CreateApplicationSetRequestRecordsInnerAttributesInner>}
|
|
364
407
|
* @memberof CreateApplicationSetRequestRecordsInner
|
|
365
408
|
*/
|
|
@@ -382,45 +425,14 @@ export interface CreateApplicationSetRequestRecordsInnerAttributesInner {
|
|
|
382
425
|
* @type {string}
|
|
383
426
|
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInner
|
|
384
427
|
*/
|
|
385
|
-
'name'
|
|
428
|
+
'name': string;
|
|
386
429
|
/**
|
|
387
430
|
* The value of the option this record applies to
|
|
388
431
|
* @type {string}
|
|
389
432
|
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInner
|
|
390
433
|
*/
|
|
391
|
-
'value'
|
|
392
|
-
/**
|
|
393
|
-
*
|
|
394
|
-
* @type {CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail}
|
|
395
|
-
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInner
|
|
396
|
-
*/
|
|
397
|
-
'thumbnail'?: CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail;
|
|
398
|
-
}
|
|
399
|
-
/**
|
|
400
|
-
* Attribute thumbnail, intended for interfaces like storefront colour selector.
|
|
401
|
-
* @export
|
|
402
|
-
* @interface CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail
|
|
403
|
-
*/
|
|
404
|
-
export interface CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail {
|
|
405
|
-
/**
|
|
406
|
-
*
|
|
407
|
-
* @type {string}
|
|
408
|
-
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail
|
|
409
|
-
*/
|
|
410
|
-
'type'?: CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum;
|
|
411
|
-
/**
|
|
412
|
-
*
|
|
413
|
-
* @type {string}
|
|
414
|
-
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail
|
|
415
|
-
*/
|
|
416
|
-
'value'?: string;
|
|
434
|
+
'value': string;
|
|
417
435
|
}
|
|
418
|
-
export declare const CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum: {
|
|
419
|
-
readonly Text: "text";
|
|
420
|
-
readonly Color: "color";
|
|
421
|
-
readonly Image: "image";
|
|
422
|
-
};
|
|
423
|
-
export type CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum = typeof CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum[keyof typeof CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum];
|
|
424
436
|
/**
|
|
425
437
|
*
|
|
426
438
|
* @export
|
|
@@ -736,12 +748,6 @@ export interface CreateProductVariant {
|
|
|
736
748
|
* @memberof CreateProductVariant
|
|
737
749
|
*/
|
|
738
750
|
'images'?: Array<CreateProductVariantImagesInner>;
|
|
739
|
-
/**
|
|
740
|
-
* List of application set UUIDs to associate with this variant
|
|
741
|
-
* @type {Array<string>}
|
|
742
|
-
* @memberof CreateProductVariant
|
|
743
|
-
*/
|
|
744
|
-
'applicationSets'?: Array<string>;
|
|
745
751
|
/**
|
|
746
752
|
* The GTIN (Global Trade Item Number) or EAN (European Article Number) of the variant. Please note that a barcode can only be attached after the Barcodes module has been installed.
|
|
747
753
|
* @type {string}
|
|
@@ -1356,12 +1362,6 @@ export interface TargetSearchPhraseData {
|
|
|
1356
1362
|
* @interface UpdateApplicationSetRequest
|
|
1357
1363
|
*/
|
|
1358
1364
|
export interface UpdateApplicationSetRequest {
|
|
1359
|
-
/**
|
|
1360
|
-
*
|
|
1361
|
-
* @type {string}
|
|
1362
|
-
* @memberof UpdateApplicationSetRequest
|
|
1363
|
-
*/
|
|
1364
|
-
'id'?: string;
|
|
1365
1365
|
/**
|
|
1366
1366
|
* Name of the application set
|
|
1367
1367
|
* @type {string}
|
|
@@ -1406,7 +1406,7 @@ export interface UpdateApplicationSetRequest {
|
|
|
1406
1406
|
*/
|
|
1407
1407
|
export interface UpdateApplicationSetRequestRecordsInner {
|
|
1408
1408
|
/**
|
|
1409
|
-
* List of attributes this record applies to
|
|
1409
|
+
* List of attributes this record applies to. Providing an empty array will apply the application set to all variants.
|
|
1410
1410
|
* @type {Array<UpdateApplicationSetRequestRecordsInnerAttributesInner>}
|
|
1411
1411
|
* @memberof UpdateApplicationSetRequestRecordsInner
|
|
1412
1412
|
*/
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Product Catalog API
|
|
6
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
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.45.0
|
|
9
9
|
*
|
|
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.UpdateProductsRequestProductsInnerVariantsInnerSalePriceCurrencyCodeEnum = exports.UpdateProductsRequestProductsInnerVariantsInnerRetailPriceCurrencyCodeEnum = exports.UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameEnum = exports.PriceCurrencyCodeEnum = exports.
|
|
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.UpdateProductsRequestProductsInnerVariantsInnerSalePriceCurrencyCodeEnum = exports.UpdateProductsRequestProductsInnerVariantsInnerRetailPriceCurrencyCodeEnum = exports.UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameEnum = exports.PriceCurrencyCodeEnum = exports.CreateApplicationPlacementEnum = exports.CreateApplicationTechnologyEnum = exports.AttributeThumbnailTypeEnum = 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,11 @@ exports.ApplicationPlacementEnum = {
|
|
|
47
47
|
Right: 'right',
|
|
48
48
|
Neck: 'neck'
|
|
49
49
|
};
|
|
50
|
+
exports.AttributeThumbnailTypeEnum = {
|
|
51
|
+
Text: 'text',
|
|
52
|
+
Color: 'color',
|
|
53
|
+
Image: 'image'
|
|
54
|
+
};
|
|
50
55
|
exports.CreateApplicationTechnologyEnum = {
|
|
51
56
|
Dtg: 'dtg',
|
|
52
57
|
Embroidery: 'embroidery',
|
|
@@ -65,11 +70,6 @@ exports.CreateApplicationPlacementEnum = {
|
|
|
65
70
|
Right: 'right',
|
|
66
71
|
Neck: 'neck'
|
|
67
72
|
};
|
|
68
|
-
exports.CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum = {
|
|
69
|
-
Text: 'text',
|
|
70
|
-
Color: 'color',
|
|
71
|
-
Image: 'image'
|
|
72
|
-
};
|
|
73
73
|
exports.PriceCurrencyCodeEnum = {
|
|
74
74
|
Gbp: 'GBP'
|
|
75
75
|
};
|
package/dist/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
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
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.45.0
|
|
6
6
|
*
|
|
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 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
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.45.0
|
|
9
9
|
*
|
|
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 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
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.45.0
|
|
6
6
|
*
|
|
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 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
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.45.0
|
|
9
9
|
*
|
|
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 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
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.45.0
|
|
6
6
|
*
|
|
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 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
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.45.0
|
|
9
9
|
*
|
|
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 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
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.45.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -132,7 +132,13 @@ export interface ApplicationSet {
|
|
|
132
132
|
* @type {string}
|
|
133
133
|
* @memberof ApplicationSet
|
|
134
134
|
*/
|
|
135
|
-
'id'
|
|
135
|
+
'id': string;
|
|
136
|
+
/**
|
|
137
|
+
* A reference to the resource location
|
|
138
|
+
* @type {string}
|
|
139
|
+
* @memberof ApplicationSet
|
|
140
|
+
*/
|
|
141
|
+
'ref': string;
|
|
136
142
|
/**
|
|
137
143
|
* Name of the application set
|
|
138
144
|
* @type {string}
|
|
@@ -168,7 +174,19 @@ export interface ApplicationSet {
|
|
|
168
174
|
* @type {Array<ApplicationSetRecord>}
|
|
169
175
|
* @memberof ApplicationSet
|
|
170
176
|
*/
|
|
171
|
-
'records'
|
|
177
|
+
'records': Array<ApplicationSetRecord>;
|
|
178
|
+
/**
|
|
179
|
+
*
|
|
180
|
+
* @type {string}
|
|
181
|
+
* @memberof ApplicationSet
|
|
182
|
+
*/
|
|
183
|
+
'createdAt': string;
|
|
184
|
+
/**
|
|
185
|
+
*
|
|
186
|
+
* @type {string}
|
|
187
|
+
* @memberof ApplicationSet
|
|
188
|
+
*/
|
|
189
|
+
'updatedAt': string;
|
|
172
190
|
}
|
|
173
191
|
/**
|
|
174
192
|
*
|
|
@@ -253,10 +271,10 @@ export interface Attribute {
|
|
|
253
271
|
'value': string;
|
|
254
272
|
/**
|
|
255
273
|
*
|
|
256
|
-
* @type {
|
|
274
|
+
* @type {AttributeThumbnail}
|
|
257
275
|
* @memberof Attribute
|
|
258
276
|
*/
|
|
259
|
-
'thumbnail'?:
|
|
277
|
+
'thumbnail'?: AttributeThumbnail;
|
|
260
278
|
/**
|
|
261
279
|
* Attribute tags
|
|
262
280
|
* @type {Array<string>}
|
|
@@ -264,6 +282,31 @@ export interface Attribute {
|
|
|
264
282
|
*/
|
|
265
283
|
'tags'?: Array<string>;
|
|
266
284
|
}
|
|
285
|
+
/**
|
|
286
|
+
* Attribute thumbnail, intended for interfaces like storefront colour selector.
|
|
287
|
+
* @export
|
|
288
|
+
* @interface AttributeThumbnail
|
|
289
|
+
*/
|
|
290
|
+
export interface AttributeThumbnail {
|
|
291
|
+
/**
|
|
292
|
+
*
|
|
293
|
+
* @type {string}
|
|
294
|
+
* @memberof AttributeThumbnail
|
|
295
|
+
*/
|
|
296
|
+
'type'?: AttributeThumbnailTypeEnum;
|
|
297
|
+
/**
|
|
298
|
+
*
|
|
299
|
+
* @type {string}
|
|
300
|
+
* @memberof AttributeThumbnail
|
|
301
|
+
*/
|
|
302
|
+
'value'?: string;
|
|
303
|
+
}
|
|
304
|
+
export declare const AttributeThumbnailTypeEnum: {
|
|
305
|
+
readonly Text: "text";
|
|
306
|
+
readonly Color: "color";
|
|
307
|
+
readonly Image: "image";
|
|
308
|
+
};
|
|
309
|
+
export type AttributeThumbnailTypeEnum = typeof AttributeThumbnailTypeEnum[keyof typeof AttributeThumbnailTypeEnum];
|
|
267
310
|
/**
|
|
268
311
|
*
|
|
269
312
|
* @export
|
|
@@ -320,7 +363,7 @@ export interface CreateApplicationSetRequest {
|
|
|
320
363
|
* @type {string}
|
|
321
364
|
* @memberof CreateApplicationSetRequest
|
|
322
365
|
*/
|
|
323
|
-
'name'
|
|
366
|
+
'name': string;
|
|
324
367
|
/**
|
|
325
368
|
* Description of the application set
|
|
326
369
|
* @type {string}
|
|
@@ -332,25 +375,25 @@ export interface CreateApplicationSetRequest {
|
|
|
332
375
|
* @type {number}
|
|
333
376
|
* @memberof CreateApplicationSetRequest
|
|
334
377
|
*/
|
|
335
|
-
'width'
|
|
378
|
+
'width': number;
|
|
336
379
|
/**
|
|
337
380
|
* The height, in pixels of the images in the set
|
|
338
381
|
* @type {number}
|
|
339
382
|
* @memberof CreateApplicationSetRequest
|
|
340
383
|
*/
|
|
341
|
-
'height'
|
|
384
|
+
'height': number;
|
|
342
385
|
/**
|
|
343
386
|
* The DPI used when printing the images in the set
|
|
344
387
|
* @type {number}
|
|
345
388
|
* @memberof CreateApplicationSetRequest
|
|
346
389
|
*/
|
|
347
|
-
'dpi'
|
|
390
|
+
'dpi': number;
|
|
348
391
|
/**
|
|
349
392
|
* List of application set records
|
|
350
393
|
* @type {Array<CreateApplicationSetRequestRecordsInner>}
|
|
351
394
|
* @memberof CreateApplicationSetRequest
|
|
352
395
|
*/
|
|
353
|
-
'records'
|
|
396
|
+
'records': Array<CreateApplicationSetRequestRecordsInner>;
|
|
354
397
|
}
|
|
355
398
|
/**
|
|
356
399
|
*
|
|
@@ -359,7 +402,7 @@ export interface CreateApplicationSetRequest {
|
|
|
359
402
|
*/
|
|
360
403
|
export interface CreateApplicationSetRequestRecordsInner {
|
|
361
404
|
/**
|
|
362
|
-
* List of attributes this record applies to
|
|
405
|
+
* List of attributes this record applies to. Providing an empty array will apply the application set to all variants.
|
|
363
406
|
* @type {Array<CreateApplicationSetRequestRecordsInnerAttributesInner>}
|
|
364
407
|
* @memberof CreateApplicationSetRequestRecordsInner
|
|
365
408
|
*/
|
|
@@ -382,45 +425,14 @@ export interface CreateApplicationSetRequestRecordsInnerAttributesInner {
|
|
|
382
425
|
* @type {string}
|
|
383
426
|
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInner
|
|
384
427
|
*/
|
|
385
|
-
'name'
|
|
428
|
+
'name': string;
|
|
386
429
|
/**
|
|
387
430
|
* The value of the option this record applies to
|
|
388
431
|
* @type {string}
|
|
389
432
|
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInner
|
|
390
433
|
*/
|
|
391
|
-
'value'
|
|
392
|
-
/**
|
|
393
|
-
*
|
|
394
|
-
* @type {CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail}
|
|
395
|
-
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInner
|
|
396
|
-
*/
|
|
397
|
-
'thumbnail'?: CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail;
|
|
398
|
-
}
|
|
399
|
-
/**
|
|
400
|
-
* Attribute thumbnail, intended for interfaces like storefront colour selector.
|
|
401
|
-
* @export
|
|
402
|
-
* @interface CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail
|
|
403
|
-
*/
|
|
404
|
-
export interface CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail {
|
|
405
|
-
/**
|
|
406
|
-
*
|
|
407
|
-
* @type {string}
|
|
408
|
-
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail
|
|
409
|
-
*/
|
|
410
|
-
'type'?: CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum;
|
|
411
|
-
/**
|
|
412
|
-
*
|
|
413
|
-
* @type {string}
|
|
414
|
-
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnail
|
|
415
|
-
*/
|
|
416
|
-
'value'?: string;
|
|
434
|
+
'value': string;
|
|
417
435
|
}
|
|
418
|
-
export declare const CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum: {
|
|
419
|
-
readonly Text: "text";
|
|
420
|
-
readonly Color: "color";
|
|
421
|
-
readonly Image: "image";
|
|
422
|
-
};
|
|
423
|
-
export type CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum = typeof CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum[keyof typeof CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum];
|
|
424
436
|
/**
|
|
425
437
|
*
|
|
426
438
|
* @export
|
|
@@ -736,12 +748,6 @@ export interface CreateProductVariant {
|
|
|
736
748
|
* @memberof CreateProductVariant
|
|
737
749
|
*/
|
|
738
750
|
'images'?: Array<CreateProductVariantImagesInner>;
|
|
739
|
-
/**
|
|
740
|
-
* List of application set UUIDs to associate with this variant
|
|
741
|
-
* @type {Array<string>}
|
|
742
|
-
* @memberof CreateProductVariant
|
|
743
|
-
*/
|
|
744
|
-
'applicationSets'?: Array<string>;
|
|
745
751
|
/**
|
|
746
752
|
* The GTIN (Global Trade Item Number) or EAN (European Article Number) of the variant. Please note that a barcode can only be attached after the Barcodes module has been installed.
|
|
747
753
|
* @type {string}
|
|
@@ -1356,12 +1362,6 @@ export interface TargetSearchPhraseData {
|
|
|
1356
1362
|
* @interface UpdateApplicationSetRequest
|
|
1357
1363
|
*/
|
|
1358
1364
|
export interface UpdateApplicationSetRequest {
|
|
1359
|
-
/**
|
|
1360
|
-
*
|
|
1361
|
-
* @type {string}
|
|
1362
|
-
* @memberof UpdateApplicationSetRequest
|
|
1363
|
-
*/
|
|
1364
|
-
'id'?: string;
|
|
1365
1365
|
/**
|
|
1366
1366
|
* Name of the application set
|
|
1367
1367
|
* @type {string}
|
|
@@ -1406,7 +1406,7 @@ export interface UpdateApplicationSetRequest {
|
|
|
1406
1406
|
*/
|
|
1407
1407
|
export interface UpdateApplicationSetRequestRecordsInner {
|
|
1408
1408
|
/**
|
|
1409
|
-
* List of attributes this record applies to
|
|
1409
|
+
* List of attributes this record applies to. Providing an empty array will apply the application set to all variants.
|
|
1410
1410
|
* @type {Array<UpdateApplicationSetRequestRecordsInnerAttributesInner>}
|
|
1411
1411
|
* @memberof UpdateApplicationSetRequestRecordsInner
|
|
1412
1412
|
*/
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product Catalog API
|
|
5
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.
|
|
7
|
+
* The version of the OpenAPI document: 1.45.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -44,6 +44,11 @@ export const ApplicationPlacementEnum = {
|
|
|
44
44
|
Right: 'right',
|
|
45
45
|
Neck: 'neck'
|
|
46
46
|
};
|
|
47
|
+
export const AttributeThumbnailTypeEnum = {
|
|
48
|
+
Text: 'text',
|
|
49
|
+
Color: 'color',
|
|
50
|
+
Image: 'image'
|
|
51
|
+
};
|
|
47
52
|
export const CreateApplicationTechnologyEnum = {
|
|
48
53
|
Dtg: 'dtg',
|
|
49
54
|
Embroidery: 'embroidery',
|
|
@@ -62,11 +67,6 @@ export const CreateApplicationPlacementEnum = {
|
|
|
62
67
|
Right: 'right',
|
|
63
68
|
Neck: 'neck'
|
|
64
69
|
};
|
|
65
|
-
export const CreateApplicationSetRequestRecordsInnerAttributesInnerThumbnailTypeEnum = {
|
|
66
|
-
Text: 'text',
|
|
67
|
-
Color: 'color',
|
|
68
|
-
Image: 'image'
|
|
69
|
-
};
|
|
70
70
|
export const PriceCurrencyCodeEnum = {
|
|
71
71
|
Gbp: 'GBP'
|
|
72
72
|
};
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Product Catalog API
|
|
3
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
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.45.0
|
|
6
6
|
*
|
|
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 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.
|
|
7
|
+
* The version of the OpenAPI document: 1.45.0
|
|
8
8
|
*
|
|
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 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
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.45.0
|
|
6
6
|
*
|
|
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 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.
|
|
7
|
+
* The version of the OpenAPI document: 1.45.0
|
|
8
8
|
*
|
|
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 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
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.45.0
|
|
6
6
|
*
|
|
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 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.
|
|
7
|
+
* The version of the OpenAPI document: 1.45.0
|
|
8
8
|
*
|
|
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 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
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.45.0
|
|
6
6
|
*
|
|
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 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.
|
|
7
|
+
* The version of the OpenAPI document: 1.45.0
|
|
8
8
|
*
|
|
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 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
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 1.
|
|
5
|
+
* The version of the OpenAPI document: 1.45.0
|
|
6
6
|
*
|
|
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 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
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 1.
|
|
8
|
+
* The version of the OpenAPI document: 1.45.0
|
|
9
9
|
*
|
|
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 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.
|
|
7
|
+
* The version of the OpenAPI document: 1.45.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|