@teemill/product-catalog 1.44.0 → 1.45.2
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 +83 -64
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +80 -61
- 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 +80 -61
- 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.2
|
|
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.2 --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.2
|
|
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
|
*
|
|
@@ -216,11 +234,11 @@ export interface ApplicationSetRecord {
|
|
|
216
234
|
*/
|
|
217
235
|
'set'?: ApplicationSet1;
|
|
218
236
|
/**
|
|
219
|
-
* Attributes associated to a variant such as Colour and Size.
|
|
220
|
-
* @type {Array<
|
|
237
|
+
* Attributes associated to a variant such as Colour and Size.
|
|
238
|
+
* @type {Array<Attributes1Inner>}
|
|
221
239
|
* @memberof ApplicationSetRecord
|
|
222
240
|
*/
|
|
223
|
-
'attributes'?: Array<
|
|
241
|
+
'attributes'?: Array<Attributes1Inner>;
|
|
224
242
|
/**
|
|
225
243
|
* List of applications for this record
|
|
226
244
|
* @type {Array<Application>}
|
|
@@ -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,53 @@ 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
|
+
|
|
327
|
+
/**
|
|
328
|
+
*
|
|
329
|
+
* @export
|
|
330
|
+
* @interface Attributes1Inner
|
|
331
|
+
*/
|
|
332
|
+
export interface Attributes1Inner {
|
|
333
|
+
/**
|
|
334
|
+
*
|
|
335
|
+
* @type {string}
|
|
336
|
+
* @memberof Attributes1Inner
|
|
337
|
+
*/
|
|
338
|
+
'name'?: string;
|
|
339
|
+
/**
|
|
340
|
+
*
|
|
341
|
+
* @type {string}
|
|
342
|
+
* @memberof Attributes1Inner
|
|
343
|
+
*/
|
|
344
|
+
'value'?: string;
|
|
345
|
+
}
|
|
281
346
|
/**
|
|
282
347
|
*
|
|
283
348
|
* @export
|
|
@@ -338,7 +403,7 @@ export interface CreateApplicationSetRequest {
|
|
|
338
403
|
* @type {string}
|
|
339
404
|
* @memberof CreateApplicationSetRequest
|
|
340
405
|
*/
|
|
341
|
-
'name'
|
|
406
|
+
'name': string;
|
|
342
407
|
/**
|
|
343
408
|
* Description of the application set
|
|
344
409
|
* @type {string}
|
|
@@ -350,25 +415,25 @@ export interface CreateApplicationSetRequest {
|
|
|
350
415
|
* @type {number}
|
|
351
416
|
* @memberof CreateApplicationSetRequest
|
|
352
417
|
*/
|
|
353
|
-
'width'
|
|
418
|
+
'width': number;
|
|
354
419
|
/**
|
|
355
420
|
* The height, in pixels of the images in the set
|
|
356
421
|
* @type {number}
|
|
357
422
|
* @memberof CreateApplicationSetRequest
|
|
358
423
|
*/
|
|
359
|
-
'height'
|
|
424
|
+
'height': number;
|
|
360
425
|
/**
|
|
361
426
|
* The DPI used when printing the images in the set
|
|
362
427
|
* @type {number}
|
|
363
428
|
* @memberof CreateApplicationSetRequest
|
|
364
429
|
*/
|
|
365
|
-
'dpi'
|
|
430
|
+
'dpi': number;
|
|
366
431
|
/**
|
|
367
432
|
* List of application set records
|
|
368
433
|
* @type {Array<CreateApplicationSetRequestRecordsInner>}
|
|
369
434
|
* @memberof CreateApplicationSetRequest
|
|
370
435
|
*/
|
|
371
|
-
'records'
|
|
436
|
+
'records': Array<CreateApplicationSetRequestRecordsInner>;
|
|
372
437
|
}
|
|
373
438
|
/**
|
|
374
439
|
*
|
|
@@ -377,7 +442,7 @@ export interface CreateApplicationSetRequest {
|
|
|
377
442
|
*/
|
|
378
443
|
export interface CreateApplicationSetRequestRecordsInner {
|
|
379
444
|
/**
|
|
380
|
-
* List of attributes this record applies to
|
|
445
|
+
* List of attributes this record applies to. Providing an empty array will apply the application set to all variants.
|
|
381
446
|
* @type {Array<CreateApplicationSetRequestRecordsInnerAttributesInner>}
|
|
382
447
|
* @memberof CreateApplicationSetRequestRecordsInner
|
|
383
448
|
*/
|
|
@@ -400,48 +465,14 @@ export interface CreateApplicationSetRequestRecordsInnerAttributesInner {
|
|
|
400
465
|
* @type {string}
|
|
401
466
|
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInner
|
|
402
467
|
*/
|
|
403
|
-
'name'
|
|
468
|
+
'name': string;
|
|
404
469
|
/**
|
|
405
470
|
* The value of the option this record applies to
|
|
406
471
|
* @type {string}
|
|
407
472
|
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInner
|
|
408
473
|
*/
|
|
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;
|
|
474
|
+
'value': string;
|
|
435
475
|
}
|
|
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
476
|
/**
|
|
446
477
|
*
|
|
447
478
|
* @export
|
|
@@ -758,12 +789,6 @@ export interface CreateProductVariant {
|
|
|
758
789
|
* @memberof CreateProductVariant
|
|
759
790
|
*/
|
|
760
791
|
'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
792
|
/**
|
|
768
793
|
* 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
794
|
* @type {string}
|
|
@@ -1381,12 +1406,6 @@ export interface TargetSearchPhraseData {
|
|
|
1381
1406
|
* @interface UpdateApplicationSetRequest
|
|
1382
1407
|
*/
|
|
1383
1408
|
export interface UpdateApplicationSetRequest {
|
|
1384
|
-
/**
|
|
1385
|
-
*
|
|
1386
|
-
* @type {string}
|
|
1387
|
-
* @memberof UpdateApplicationSetRequest
|
|
1388
|
-
*/
|
|
1389
|
-
'id'?: string;
|
|
1390
1409
|
/**
|
|
1391
1410
|
* Name of the application set
|
|
1392
1411
|
* @type {string}
|
|
@@ -1431,7 +1450,7 @@ export interface UpdateApplicationSetRequest {
|
|
|
1431
1450
|
*/
|
|
1432
1451
|
export interface UpdateApplicationSetRequestRecordsInner {
|
|
1433
1452
|
/**
|
|
1434
|
-
* List of attributes this record applies to
|
|
1453
|
+
* List of attributes this record applies to. Providing an empty array will apply the application set to all variants.
|
|
1435
1454
|
* @type {Array<UpdateApplicationSetRequestRecordsInnerAttributesInner>}
|
|
1436
1455
|
* @memberof UpdateApplicationSetRequestRecordsInner
|
|
1437
1456
|
*/
|
|
@@ -1454,7 +1473,7 @@ export interface UpdateApplicationSetRequestRecordsInnerAttributesInner {
|
|
|
1454
1473
|
* @type {string}
|
|
1455
1474
|
* @memberof UpdateApplicationSetRequestRecordsInnerAttributesInner
|
|
1456
1475
|
*/
|
|
1457
|
-
'
|
|
1476
|
+
'name'?: string;
|
|
1458
1477
|
/**
|
|
1459
1478
|
* The value of the option this record applies to
|
|
1460
1479
|
* @type {string}
|
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.2
|
|
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.2
|
|
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.2
|
|
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.2
|
|
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
|
*
|
|
@@ -202,11 +220,11 @@ export interface ApplicationSetRecord {
|
|
|
202
220
|
*/
|
|
203
221
|
'set'?: ApplicationSet1;
|
|
204
222
|
/**
|
|
205
|
-
* Attributes associated to a variant such as Colour and Size.
|
|
206
|
-
* @type {Array<
|
|
223
|
+
* Attributes associated to a variant such as Colour and Size.
|
|
224
|
+
* @type {Array<Attributes1Inner>}
|
|
207
225
|
* @memberof ApplicationSetRecord
|
|
208
226
|
*/
|
|
209
|
-
'attributes'?: Array<
|
|
227
|
+
'attributes'?: Array<Attributes1Inner>;
|
|
210
228
|
/**
|
|
211
229
|
* List of applications for this record
|
|
212
230
|
* @type {Array<Application>}
|
|
@@ -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,50 @@ 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];
|
|
310
|
+
/**
|
|
311
|
+
*
|
|
312
|
+
* @export
|
|
313
|
+
* @interface Attributes1Inner
|
|
314
|
+
*/
|
|
315
|
+
export interface Attributes1Inner {
|
|
316
|
+
/**
|
|
317
|
+
*
|
|
318
|
+
* @type {string}
|
|
319
|
+
* @memberof Attributes1Inner
|
|
320
|
+
*/
|
|
321
|
+
'name'?: string;
|
|
322
|
+
/**
|
|
323
|
+
*
|
|
324
|
+
* @type {string}
|
|
325
|
+
* @memberof Attributes1Inner
|
|
326
|
+
*/
|
|
327
|
+
'value'?: string;
|
|
328
|
+
}
|
|
267
329
|
/**
|
|
268
330
|
*
|
|
269
331
|
* @export
|
|
@@ -320,7 +382,7 @@ export interface CreateApplicationSetRequest {
|
|
|
320
382
|
* @type {string}
|
|
321
383
|
* @memberof CreateApplicationSetRequest
|
|
322
384
|
*/
|
|
323
|
-
'name'
|
|
385
|
+
'name': string;
|
|
324
386
|
/**
|
|
325
387
|
* Description of the application set
|
|
326
388
|
* @type {string}
|
|
@@ -332,25 +394,25 @@ export interface CreateApplicationSetRequest {
|
|
|
332
394
|
* @type {number}
|
|
333
395
|
* @memberof CreateApplicationSetRequest
|
|
334
396
|
*/
|
|
335
|
-
'width'
|
|
397
|
+
'width': number;
|
|
336
398
|
/**
|
|
337
399
|
* The height, in pixels of the images in the set
|
|
338
400
|
* @type {number}
|
|
339
401
|
* @memberof CreateApplicationSetRequest
|
|
340
402
|
*/
|
|
341
|
-
'height'
|
|
403
|
+
'height': number;
|
|
342
404
|
/**
|
|
343
405
|
* The DPI used when printing the images in the set
|
|
344
406
|
* @type {number}
|
|
345
407
|
* @memberof CreateApplicationSetRequest
|
|
346
408
|
*/
|
|
347
|
-
'dpi'
|
|
409
|
+
'dpi': number;
|
|
348
410
|
/**
|
|
349
411
|
* List of application set records
|
|
350
412
|
* @type {Array<CreateApplicationSetRequestRecordsInner>}
|
|
351
413
|
* @memberof CreateApplicationSetRequest
|
|
352
414
|
*/
|
|
353
|
-
'records'
|
|
415
|
+
'records': Array<CreateApplicationSetRequestRecordsInner>;
|
|
354
416
|
}
|
|
355
417
|
/**
|
|
356
418
|
*
|
|
@@ -359,7 +421,7 @@ export interface CreateApplicationSetRequest {
|
|
|
359
421
|
*/
|
|
360
422
|
export interface CreateApplicationSetRequestRecordsInner {
|
|
361
423
|
/**
|
|
362
|
-
* List of attributes this record applies to
|
|
424
|
+
* List of attributes this record applies to. Providing an empty array will apply the application set to all variants.
|
|
363
425
|
* @type {Array<CreateApplicationSetRequestRecordsInnerAttributesInner>}
|
|
364
426
|
* @memberof CreateApplicationSetRequestRecordsInner
|
|
365
427
|
*/
|
|
@@ -382,45 +444,14 @@ export interface CreateApplicationSetRequestRecordsInnerAttributesInner {
|
|
|
382
444
|
* @type {string}
|
|
383
445
|
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInner
|
|
384
446
|
*/
|
|
385
|
-
'name'
|
|
447
|
+
'name': string;
|
|
386
448
|
/**
|
|
387
449
|
* The value of the option this record applies to
|
|
388
450
|
* @type {string}
|
|
389
451
|
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInner
|
|
390
452
|
*/
|
|
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;
|
|
453
|
+
'value': string;
|
|
417
454
|
}
|
|
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
455
|
/**
|
|
425
456
|
*
|
|
426
457
|
* @export
|
|
@@ -736,12 +767,6 @@ export interface CreateProductVariant {
|
|
|
736
767
|
* @memberof CreateProductVariant
|
|
737
768
|
*/
|
|
738
769
|
'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
770
|
/**
|
|
746
771
|
* 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
772
|
* @type {string}
|
|
@@ -1356,12 +1381,6 @@ export interface TargetSearchPhraseData {
|
|
|
1356
1381
|
* @interface UpdateApplicationSetRequest
|
|
1357
1382
|
*/
|
|
1358
1383
|
export interface UpdateApplicationSetRequest {
|
|
1359
|
-
/**
|
|
1360
|
-
*
|
|
1361
|
-
* @type {string}
|
|
1362
|
-
* @memberof UpdateApplicationSetRequest
|
|
1363
|
-
*/
|
|
1364
|
-
'id'?: string;
|
|
1365
1384
|
/**
|
|
1366
1385
|
* Name of the application set
|
|
1367
1386
|
* @type {string}
|
|
@@ -1406,7 +1425,7 @@ export interface UpdateApplicationSetRequest {
|
|
|
1406
1425
|
*/
|
|
1407
1426
|
export interface UpdateApplicationSetRequestRecordsInner {
|
|
1408
1427
|
/**
|
|
1409
|
-
* List of attributes this record applies to
|
|
1428
|
+
* List of attributes this record applies to. Providing an empty array will apply the application set to all variants.
|
|
1410
1429
|
* @type {Array<UpdateApplicationSetRequestRecordsInnerAttributesInner>}
|
|
1411
1430
|
* @memberof UpdateApplicationSetRequestRecordsInner
|
|
1412
1431
|
*/
|
|
@@ -1429,7 +1448,7 @@ export interface UpdateApplicationSetRequestRecordsInnerAttributesInner {
|
|
|
1429
1448
|
* @type {string}
|
|
1430
1449
|
* @memberof UpdateApplicationSetRequestRecordsInnerAttributesInner
|
|
1431
1450
|
*/
|
|
1432
|
-
'
|
|
1451
|
+
'name'?: string;
|
|
1433
1452
|
/**
|
|
1434
1453
|
* The value of the option this record applies to
|
|
1435
1454
|
* @type {string}
|
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.2
|
|
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.2
|
|
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.2
|
|
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.2
|
|
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.2
|
|
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.2
|
|
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.2
|
|
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.2
|
|
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
|
*
|
|
@@ -202,11 +220,11 @@ export interface ApplicationSetRecord {
|
|
|
202
220
|
*/
|
|
203
221
|
'set'?: ApplicationSet1;
|
|
204
222
|
/**
|
|
205
|
-
* Attributes associated to a variant such as Colour and Size.
|
|
206
|
-
* @type {Array<
|
|
223
|
+
* Attributes associated to a variant such as Colour and Size.
|
|
224
|
+
* @type {Array<Attributes1Inner>}
|
|
207
225
|
* @memberof ApplicationSetRecord
|
|
208
226
|
*/
|
|
209
|
-
'attributes'?: Array<
|
|
227
|
+
'attributes'?: Array<Attributes1Inner>;
|
|
210
228
|
/**
|
|
211
229
|
* List of applications for this record
|
|
212
230
|
* @type {Array<Application>}
|
|
@@ -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,50 @@ 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];
|
|
310
|
+
/**
|
|
311
|
+
*
|
|
312
|
+
* @export
|
|
313
|
+
* @interface Attributes1Inner
|
|
314
|
+
*/
|
|
315
|
+
export interface Attributes1Inner {
|
|
316
|
+
/**
|
|
317
|
+
*
|
|
318
|
+
* @type {string}
|
|
319
|
+
* @memberof Attributes1Inner
|
|
320
|
+
*/
|
|
321
|
+
'name'?: string;
|
|
322
|
+
/**
|
|
323
|
+
*
|
|
324
|
+
* @type {string}
|
|
325
|
+
* @memberof Attributes1Inner
|
|
326
|
+
*/
|
|
327
|
+
'value'?: string;
|
|
328
|
+
}
|
|
267
329
|
/**
|
|
268
330
|
*
|
|
269
331
|
* @export
|
|
@@ -320,7 +382,7 @@ export interface CreateApplicationSetRequest {
|
|
|
320
382
|
* @type {string}
|
|
321
383
|
* @memberof CreateApplicationSetRequest
|
|
322
384
|
*/
|
|
323
|
-
'name'
|
|
385
|
+
'name': string;
|
|
324
386
|
/**
|
|
325
387
|
* Description of the application set
|
|
326
388
|
* @type {string}
|
|
@@ -332,25 +394,25 @@ export interface CreateApplicationSetRequest {
|
|
|
332
394
|
* @type {number}
|
|
333
395
|
* @memberof CreateApplicationSetRequest
|
|
334
396
|
*/
|
|
335
|
-
'width'
|
|
397
|
+
'width': number;
|
|
336
398
|
/**
|
|
337
399
|
* The height, in pixels of the images in the set
|
|
338
400
|
* @type {number}
|
|
339
401
|
* @memberof CreateApplicationSetRequest
|
|
340
402
|
*/
|
|
341
|
-
'height'
|
|
403
|
+
'height': number;
|
|
342
404
|
/**
|
|
343
405
|
* The DPI used when printing the images in the set
|
|
344
406
|
* @type {number}
|
|
345
407
|
* @memberof CreateApplicationSetRequest
|
|
346
408
|
*/
|
|
347
|
-
'dpi'
|
|
409
|
+
'dpi': number;
|
|
348
410
|
/**
|
|
349
411
|
* List of application set records
|
|
350
412
|
* @type {Array<CreateApplicationSetRequestRecordsInner>}
|
|
351
413
|
* @memberof CreateApplicationSetRequest
|
|
352
414
|
*/
|
|
353
|
-
'records'
|
|
415
|
+
'records': Array<CreateApplicationSetRequestRecordsInner>;
|
|
354
416
|
}
|
|
355
417
|
/**
|
|
356
418
|
*
|
|
@@ -359,7 +421,7 @@ export interface CreateApplicationSetRequest {
|
|
|
359
421
|
*/
|
|
360
422
|
export interface CreateApplicationSetRequestRecordsInner {
|
|
361
423
|
/**
|
|
362
|
-
* List of attributes this record applies to
|
|
424
|
+
* List of attributes this record applies to. Providing an empty array will apply the application set to all variants.
|
|
363
425
|
* @type {Array<CreateApplicationSetRequestRecordsInnerAttributesInner>}
|
|
364
426
|
* @memberof CreateApplicationSetRequestRecordsInner
|
|
365
427
|
*/
|
|
@@ -382,45 +444,14 @@ export interface CreateApplicationSetRequestRecordsInnerAttributesInner {
|
|
|
382
444
|
* @type {string}
|
|
383
445
|
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInner
|
|
384
446
|
*/
|
|
385
|
-
'name'
|
|
447
|
+
'name': string;
|
|
386
448
|
/**
|
|
387
449
|
* The value of the option this record applies to
|
|
388
450
|
* @type {string}
|
|
389
451
|
* @memberof CreateApplicationSetRequestRecordsInnerAttributesInner
|
|
390
452
|
*/
|
|
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;
|
|
453
|
+
'value': string;
|
|
417
454
|
}
|
|
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
455
|
/**
|
|
425
456
|
*
|
|
426
457
|
* @export
|
|
@@ -736,12 +767,6 @@ export interface CreateProductVariant {
|
|
|
736
767
|
* @memberof CreateProductVariant
|
|
737
768
|
*/
|
|
738
769
|
'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
770
|
/**
|
|
746
771
|
* 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
772
|
* @type {string}
|
|
@@ -1356,12 +1381,6 @@ export interface TargetSearchPhraseData {
|
|
|
1356
1381
|
* @interface UpdateApplicationSetRequest
|
|
1357
1382
|
*/
|
|
1358
1383
|
export interface UpdateApplicationSetRequest {
|
|
1359
|
-
/**
|
|
1360
|
-
*
|
|
1361
|
-
* @type {string}
|
|
1362
|
-
* @memberof UpdateApplicationSetRequest
|
|
1363
|
-
*/
|
|
1364
|
-
'id'?: string;
|
|
1365
1384
|
/**
|
|
1366
1385
|
* Name of the application set
|
|
1367
1386
|
* @type {string}
|
|
@@ -1406,7 +1425,7 @@ export interface UpdateApplicationSetRequest {
|
|
|
1406
1425
|
*/
|
|
1407
1426
|
export interface UpdateApplicationSetRequestRecordsInner {
|
|
1408
1427
|
/**
|
|
1409
|
-
* List of attributes this record applies to
|
|
1428
|
+
* List of attributes this record applies to. Providing an empty array will apply the application set to all variants.
|
|
1410
1429
|
* @type {Array<UpdateApplicationSetRequestRecordsInnerAttributesInner>}
|
|
1411
1430
|
* @memberof UpdateApplicationSetRequestRecordsInner
|
|
1412
1431
|
*/
|
|
@@ -1429,7 +1448,7 @@ export interface UpdateApplicationSetRequestRecordsInnerAttributesInner {
|
|
|
1429
1448
|
* @type {string}
|
|
1430
1449
|
* @memberof UpdateApplicationSetRequestRecordsInnerAttributesInner
|
|
1431
1450
|
*/
|
|
1432
|
-
'
|
|
1451
|
+
'name'?: string;
|
|
1433
1452
|
/**
|
|
1434
1453
|
* The value of the option this record applies to
|
|
1435
1454
|
* @type {string}
|
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.2
|
|
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.2
|
|
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.2
|
|
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.2
|
|
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.2
|
|
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.2
|
|
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.2
|
|
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.2
|
|
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.2
|
|
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.2
|
|
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.2
|
|
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.2
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|