@teemill/product-catalog 1.69.2 → 1.71.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/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.69.2
7
+ * The version of the OpenAPI document: 1.71.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -23,97 +23,46 @@ import type { RequestArgs } from './base';
23
23
  // @ts-ignore
24
24
  import { BASE_PATH, COLLECTION_FORMATS, BaseAPI, RequiredError, operationServerMap } from './base';
25
25
 
26
- /**
27
- *
28
- * @export
29
- * @interface AdditionalFile
30
- */
31
26
  export interface AdditionalFile {
32
27
  /**
33
28
  * Publicly available file URL.
34
- * @type {string}
35
- * @memberof AdditionalFile
36
29
  */
37
30
  'src'?: string;
38
31
  }
39
- /**
40
- *
41
- * @export
42
- * @interface ApiError
43
- */
44
32
  export interface ApiError {
45
- /**
46
- *
47
- * @type {string}
48
- * @memberof ApiError
49
- */
50
33
  'code'?: string;
51
- /**
52
- *
53
- * @type {string}
54
- * @memberof ApiError
55
- */
56
34
  'message': string;
57
35
  }
58
- /**
59
- *
60
- * @export
61
- * @interface Application
62
- */
63
36
  export interface Application {
64
37
  /**
65
38
  * Unique object identifier
66
- * @type {string}
67
- * @memberof Application
68
39
  */
69
40
  'id'?: string;
70
41
  /**
71
42
  * Technology to use for the application.
72
- * @type {string}
73
- * @memberof Application
74
43
  */
75
44
  'technology': ApplicationTechnologyEnum;
76
45
  /**
77
46
  * Placement of the application. Available placements depend on the chosen product and technology.
78
- * @type {string}
79
- * @memberof Application
80
47
  */
81
48
  'placement': ApplicationPlacementEnum;
82
49
  /**
83
50
  * Any additional instructions for the application
84
- * @type {string}
85
- * @memberof Application
86
51
  */
87
52
  'additionalInstructions'?: string | null;
88
53
  /**
89
54
  * Publicly available design file URL. This will fill the design area of the warehouse product. It will be centered horizontally and aligned to the top of the design area.
90
- * @type {string}
91
- * @memberof Application
92
55
  */
93
56
  'src'?: string;
94
57
  /**
95
58
  * A reference to the application group. The src across all applications in the same group will be considered the same src. The is useful for DTF when using the same transfer across multiple products.
96
- * @type {string}
97
- * @memberof Application
98
59
  */
99
60
  'groupRef'?: string | null;
100
- /**
101
- *
102
- * @type {ApplicationMockup}
103
- * @memberof Application
104
- */
105
61
  'mockup'?: ApplicationMockup | null;
106
62
  /**
107
63
  * If set to true, transfers for this application will not be printed on demand, and will need to be stocked in trays in the factory. Note that this can only be set if the technology is stockable, such as DTF.
108
- * @type {boolean}
109
- * @memberof Application
110
64
  */
111
65
  'stockedOnly'?: boolean;
112
- /**
113
- *
114
- * @type {ApplicationPropertiesProperties}
115
- * @memberof Application
116
- */
117
66
  'properties'?: ApplicationPropertiesProperties | null;
118
67
  }
119
68
 
@@ -141,166 +90,70 @@ export const ApplicationPlacementEnum = {
141
90
 
142
91
  export type ApplicationPlacementEnum = typeof ApplicationPlacementEnum[keyof typeof ApplicationPlacementEnum];
143
92
 
144
- /**
145
- *
146
- * @export
147
- * @interface ApplicationGroup
148
- */
149
93
  export interface ApplicationGroup {
150
94
  /**
151
95
  * Unique object identifier
152
- * @type {string}
153
- * @memberof ApplicationGroup
154
96
  */
155
97
  'id': string;
156
98
  /**
157
99
  * A reference to the application group resource location
158
- * @type {string}
159
- * @memberof ApplicationGroup
160
100
  */
161
101
  'ref': string;
162
102
  /**
163
103
  * Name of the application group
164
- * @type {string}
165
- * @memberof ApplicationGroup
166
104
  */
167
105
  'name': string;
168
- /**
169
- *
170
- * @type {string}
171
- * @memberof ApplicationGroup
172
- */
173
106
  'createdAt': string;
174
- /**
175
- *
176
- * @type {string}
177
- * @memberof ApplicationGroup
178
- */
179
107
  'updatedAt': string;
180
108
  }
181
- /**
182
- *
183
- * @export
184
- * @interface ApplicationGroupsResponse
185
- */
186
109
  export interface ApplicationGroupsResponse {
187
- /**
188
- *
189
- * @type {Array<ApplicationGroup>}
190
- * @memberof ApplicationGroupsResponse
191
- */
192
110
  'applicationGroups'?: Array<ApplicationGroup>;
193
111
  /**
194
112
  * The token referencing the next page number
195
- * @type {number}
196
- * @memberof ApplicationGroupsResponse
197
113
  */
198
114
  'nextPageToken'?: number | null;
199
115
  }
200
- /**
201
- *
202
- * @export
203
- * @interface ApplicationMockup
204
- */
205
116
  export interface ApplicationMockup {
206
117
  /**
207
118
  * Drive image URL. If provided, this will be used as the mockup image for the variant application rather than generating a new one.
208
- * @type {string}
209
- * @memberof ApplicationMockup
210
119
  */
211
120
  'file': string;
212
121
  /**
213
122
  * Publicly available mockup image URL. This is a preview of the mockup image for the given application.
214
- * @type {string}
215
- * @memberof ApplicationMockup
216
123
  */
217
124
  'preview'?: string;
218
125
  }
219
- /**
220
- *
221
- * @export
222
- * @interface ApplicationProperties
223
- */
224
126
  export interface ApplicationProperties {
225
127
  /**
226
128
  * Width of the application in pixels
227
- * @type {number}
228
- * @memberof ApplicationProperties
229
129
  */
230
130
  'width'?: number | null;
231
131
  /**
232
132
  * Height of the application in pixels
233
- * @type {number}
234
- * @memberof ApplicationProperties
235
133
  */
236
134
  'height'?: number | null;
237
- /**
238
- *
239
- * @type {ApplicationPropertiesPosition}
240
- * @memberof ApplicationProperties
241
- */
242
135
  'position'?: ApplicationPropertiesPosition | null;
243
- /**
244
- *
245
- * @type {ApplicationPropertiesPositionInference}
246
- * @memberof ApplicationProperties
247
- */
248
136
  'positionInference'?: ApplicationPropertiesPositionInference | null;
249
- /**
250
- *
251
- * @type {ApplicationPropertiesMetadata}
252
- * @memberof ApplicationProperties
253
- */
254
137
  'metadata'?: ApplicationPropertiesMetadata | null;
255
138
  }
256
- /**
257
- *
258
- * @export
259
- * @interface ApplicationPropertiesMetadata
260
- */
261
139
  export interface ApplicationPropertiesMetadata {
262
- /**
263
- *
264
- * @type {ApplicationPropertiesMetadataPersonalization}
265
- * @memberof ApplicationPropertiesMetadata
266
- */
267
140
  'personalization'?: ApplicationPropertiesMetadataPersonalization;
268
141
  }
269
142
  /**
270
143
  * @type ApplicationPropertiesMetadataPersonalization
271
- * @export
272
144
  */
273
145
  export type ApplicationPropertiesMetadataPersonalization = ApplicationPropertiesPersonalization | TextApplicationPropertiesPersonalization;
274
146
 
275
- /**
276
- *
277
- * @export
278
- * @interface ApplicationPropertiesPersonalization
279
- */
280
147
  export interface ApplicationPropertiesPersonalization {
281
148
  /**
282
149
  * The label to be displayed on the personalization field.
283
- * @type {string}
284
- * @memberof ApplicationPropertiesPersonalization
285
150
  */
286
151
  'label'?: string;
287
- /**
288
- *
289
- * @type {ApplicationPropertiesPersonalizationRules}
290
- * @memberof ApplicationPropertiesPersonalization
291
- */
292
152
  'rules'?: ApplicationPropertiesPersonalizationRules;
293
153
  }
294
- /**
295
- *
296
- * @export
297
- * @interface ApplicationPropertiesPersonalizationRules
298
- */
299
154
  export interface ApplicationPropertiesPersonalizationRules {
300
155
  /**
301
156
  * The fit of the image. This determines how an uploaded image will be resized to fit the application.
302
- * @type {string}
303
- * @memberof ApplicationPropertiesPersonalizationRules
304
157
  */
305
158
  'fit'?: ApplicationPropertiesPersonalizationRulesFitEnum;
306
159
  }
@@ -316,119 +169,73 @@ export type ApplicationPropertiesPersonalizationRulesFitEnum = typeof Applicatio
316
169
 
317
170
  /**
318
171
  * Position of the application relative to the bounding box of the product
319
- * @export
320
- * @interface ApplicationPropertiesPosition
321
172
  */
322
173
  export interface ApplicationPropertiesPosition {
323
174
  /**
324
175
  * X coordinate of the application in pixels
325
- * @type {number}
326
- * @memberof ApplicationPropertiesPosition
327
176
  */
328
177
  'x': number;
329
178
  /**
330
179
  * Y coordinate of the application in pixels
331
- * @type {number}
332
- * @memberof ApplicationPropertiesPosition
333
180
  */
334
181
  'y': number;
335
182
  /**
336
183
  * The z layer of the application. This doesn\'t affect printing, but is used for ordering the applications when displaying them in a mockup.
337
- * @type {number}
338
- * @memberof ApplicationPropertiesPosition
339
184
  */
340
185
  'z'?: number;
341
186
  }
342
187
  /**
343
188
  * Set these properties when you don\'t have position information for the application. We will use the mockup and baseFlat to calculate the position of the application relative to the bounding box of the warehouse product.
344
- * @export
345
- * @interface ApplicationPropertiesPositionInference
346
189
  */
347
190
  export interface ApplicationPropertiesPositionInference {
348
191
  /**
349
192
  * Old mockup with applications. This is used to infer the position of the application.
350
- * @type {string}
351
- * @memberof ApplicationPropertiesPositionInference
352
193
  */
353
194
  'mockup': string;
354
195
  /**
355
196
  * Base flat image. This is used to infer the position of the application.
356
- * @type {string}
357
- * @memberof ApplicationPropertiesPositionInference
358
197
  */
359
198
  'baseFlat': string;
360
199
  }
361
- /**
362
- *
363
- * @export
364
- * @interface ApplicationPropertiesProperties
365
- */
366
200
  export interface ApplicationPropertiesProperties {
367
- /**
368
- *
369
- * @type {ApplicationPropertiesPosition}
370
- * @memberof ApplicationPropertiesProperties
371
- */
372
201
  'position'?: ApplicationPropertiesPosition | null;
373
- /**
374
- *
375
- * @type {ApplicationPropertiesPositionInference}
376
- * @memberof ApplicationPropertiesProperties
377
- */
378
202
  'positionInference'?: ApplicationPropertiesPositionInference | null;
379
203
  /**
380
204
  * An array of text lines.
381
- * @type {Array<string>}
382
- * @memberof ApplicationPropertiesProperties
383
205
  */
384
206
  'lines'?: Array<string>;
385
207
  /**
386
208
  * The font to be used for the text. This font must be available in the PodOS font library.
387
- * @type {string}
388
- * @memberof ApplicationPropertiesProperties
389
209
  */
390
210
  'font'?: string;
391
211
  /**
392
212
  * The size of the text in pixels.
393
- * @type {number}
394
- * @memberof ApplicationPropertiesProperties
395
213
  */
396
214
  'fontSize'?: number;
397
215
  /**
398
216
  * The weight of the text. This must be a valid CSS font-weight value.
399
- * @type {string}
400
- * @memberof ApplicationPropertiesProperties
401
217
  */
402
218
  'fontWeight'?: ApplicationPropertiesPropertiesFontWeightEnum;
403
219
  /**
404
220
  * The style of the text. This must be a valid CSS font-style value.
405
- * @type {string}
406
- * @memberof ApplicationPropertiesProperties
407
221
  */
408
222
  'fontStyle'?: ApplicationPropertiesPropertiesFontStyleEnum;
409
223
  /**
410
224
  * The colour of the text in hex format.
411
- * @type {string}
412
- * @memberof ApplicationPropertiesProperties
413
225
  */
414
226
  'color'?: string;
227
+ /**
228
+ * The rotation of the text in degrees.
229
+ */
230
+ 'rotation'?: number;
415
231
  /**
416
232
  * Width of the application in pixels
417
- * @type {number}
418
- * @memberof ApplicationPropertiesProperties
419
233
  */
420
234
  'width'?: number | null;
421
235
  /**
422
236
  * Height of the application in pixels
423
- * @type {number}
424
- * @memberof ApplicationPropertiesProperties
425
237
  */
426
238
  'height'?: number | null;
427
- /**
428
- *
429
- * @type {ApplicationPropertiesMetadata}
430
- * @memberof ApplicationPropertiesProperties
431
- */
432
239
  'metadata'?: ApplicationPropertiesMetadata | null;
433
240
  }
434
241
 
@@ -448,253 +255,122 @@ export const ApplicationPropertiesPropertiesFontStyleEnum = {
448
255
 
449
256
  export type ApplicationPropertiesPropertiesFontStyleEnum = typeof ApplicationPropertiesPropertiesFontStyleEnum[keyof typeof ApplicationPropertiesPropertiesFontStyleEnum];
450
257
 
451
- /**
452
- *
453
- * @export
454
- * @interface ApplicationSet
455
- */
456
258
  export interface ApplicationSet {
457
259
  /**
458
260
  * Unique object identifier
459
- * @type {string}
460
- * @memberof ApplicationSet
461
261
  */
462
262
  'id': string;
463
263
  /**
464
264
  * A reference to the application set resource location
465
- * @type {string}
466
- * @memberof ApplicationSet
467
265
  */
468
266
  'ref': string;
469
267
  /**
470
268
  * Name of the application set
471
- * @type {string}
472
- * @memberof ApplicationSet
473
269
  */
474
270
  'name': string;
475
271
  /**
476
272
  * Description of the application set
477
- * @type {string}
478
- * @memberof ApplicationSet
479
273
  */
480
274
  'description'?: string;
481
275
  /**
482
276
  * The width, in pixels of the images in the set
483
- * @type {number}
484
- * @memberof ApplicationSet
485
277
  */
486
278
  'width': number;
487
279
  /**
488
280
  * The height, in pixels of the images in the set
489
- * @type {number}
490
- * @memberof ApplicationSet
491
281
  */
492
282
  'height': number;
493
283
  /**
494
284
  * The DPI used when printing the images in the set
495
- * @type {number}
496
- * @memberof ApplicationSet
497
285
  */
498
286
  'dpi': number;
499
287
  /**
500
288
  * List of application set records
501
- * @type {Array<ApplicationSetRecord>}
502
- * @memberof ApplicationSet
503
289
  */
504
290
  'records': Array<ApplicationSetRecord>;
505
- /**
506
- *
507
- * @type {string}
508
- * @memberof ApplicationSet
509
- */
510
291
  'createdAt': string;
511
- /**
512
- *
513
- * @type {string}
514
- * @memberof ApplicationSet
515
- */
516
292
  'updatedAt': string;
517
293
  }
518
- /**
519
- *
520
- * @export
521
- * @interface ApplicationSet1
522
- */
523
294
  export interface ApplicationSet1 {
524
295
  /**
525
296
  * Unique object identifier
526
- * @type {string}
527
- * @memberof ApplicationSet1
528
297
  */
529
298
  'id'?: string;
530
299
  /**
531
300
  * A reference to the application set resource location
532
- * @type {string}
533
- * @memberof ApplicationSet1
534
301
  */
535
302
  'ref'?: string;
536
303
  }
537
- /**
538
- *
539
- * @export
540
- * @interface ApplicationSetRecord
541
- */
542
304
  export interface ApplicationSetRecord {
543
305
  /**
544
306
  * Unique object identifier
545
- * @type {string}
546
- * @memberof ApplicationSetRecord
547
307
  */
548
308
  'id'?: string;
549
- /**
550
- *
551
- * @type {ApplicationSet1}
552
- * @memberof ApplicationSetRecord
553
- */
554
309
  'set'?: ApplicationSet1;
555
310
  /**
556
311
  * Attributes associated to a variant such as Colour and Size.
557
- * @type {Array<Attributes1Inner>}
558
- * @memberof ApplicationSetRecord
559
312
  */
560
313
  'attributes'?: Array<Attributes1Inner>;
561
314
  /**
562
315
  * List of applications for this record
563
- * @type {Array<Application>}
564
- * @memberof ApplicationSetRecord
565
316
  */
566
317
  'applications'?: Array<Application>;
567
318
  }
568
- /**
569
- *
570
- * @export
571
- * @interface ApplicationSetsResponse
572
- */
573
319
  export interface ApplicationSetsResponse {
574
- /**
575
- *
576
- * @type {Array<ApplicationSet>}
577
- * @memberof ApplicationSetsResponse
578
- */
579
320
  'applicationSets'?: Array<ApplicationSet>;
580
321
  /**
581
322
  * The token referencing the next page number
582
- * @type {number}
583
- * @memberof ApplicationSetsResponse
584
323
  */
585
324
  'nextPageToken'?: number | null;
586
325
  }
587
- /**
588
- *
589
- * @export
590
- * @interface ApplicationTechnologiesResponse
591
- */
592
326
  export interface ApplicationTechnologiesResponse {
593
- /**
594
- *
595
- * @type {Array<ApplicationTechnology>}
596
- * @memberof ApplicationTechnologiesResponse
597
- */
598
327
  'applicationTechnologies'?: Array<ApplicationTechnology>;
599
328
  }
600
- /**
601
- *
602
- * @export
603
- * @interface ApplicationTechnology
604
- */
605
329
  export interface ApplicationTechnology {
606
330
  /**
607
331
  * Unique object identifier
608
- * @type {string}
609
- * @memberof ApplicationTechnology
610
332
  */
611
333
  'id'?: string;
612
334
  /**
613
335
  * Name of the application technology
614
- * @type {string}
615
- * @memberof ApplicationTechnology
616
336
  */
617
337
  'name'?: string;
618
338
  /**
619
339
  * Code of the application technology
620
- * @type {string}
621
- * @memberof ApplicationTechnology
622
340
  */
623
341
  'code'?: string;
624
- /**
625
- *
626
- * @type {ApplicationTechnologyIntegrationProduct}
627
- * @memberof ApplicationTechnology
628
- */
629
342
  'integrationProduct'?: ApplicationTechnologyIntegrationProduct;
630
343
  }
631
- /**
632
- *
633
- * @export
634
- * @interface ApplicationTechnologyIntegrationProduct
635
- */
636
344
  export interface ApplicationTechnologyIntegrationProduct {
637
345
  /**
638
346
  * SKU of the product in the integration
639
- * @type {string}
640
- * @memberof ApplicationTechnologyIntegrationProduct
641
347
  */
642
348
  'sku'?: string;
643
349
  /**
644
350
  * A reference to the integration product resource location
645
- * @type {string}
646
- * @memberof ApplicationTechnologyIntegrationProduct
647
351
  */
648
352
  'ref'?: string;
649
353
  }
650
- /**
651
- *
652
- * @export
653
- * @interface Attribute
654
- */
655
354
  export interface Attribute {
656
355
  /**
657
356
  * Attribute name
658
- * @type {string}
659
- * @memberof Attribute
660
357
  */
661
358
  'name': string;
662
359
  /**
663
360
  * Attribute value
664
- * @type {string}
665
- * @memberof Attribute
666
361
  */
667
362
  'value': string;
668
- /**
669
- *
670
- * @type {AttributeThumbnail}
671
- * @memberof Attribute
672
- */
673
363
  'thumbnail'?: AttributeThumbnail;
674
364
  /**
675
365
  * Attribute tags
676
- * @type {Array<string>}
677
- * @memberof Attribute
678
366
  */
679
367
  'tags'?: Array<string>;
680
368
  }
681
369
  /**
682
370
  * Attribute thumbnail, intended for interfaces like storefront colour selector.
683
- * @export
684
- * @interface AttributeThumbnail
685
371
  */
686
372
  export interface AttributeThumbnail {
687
- /**
688
- *
689
- * @type {string}
690
- * @memberof AttributeThumbnail
691
- */
692
373
  'type'?: AttributeThumbnailTypeEnum;
693
- /**
694
- *
695
- * @type {string}
696
- * @memberof AttributeThumbnail
697
- */
698
374
  'value'?: string;
699
375
  }
700
376
 
@@ -706,72 +382,35 @@ export const AttributeThumbnailTypeEnum = {
706
382
 
707
383
  export type AttributeThumbnailTypeEnum = typeof AttributeThumbnailTypeEnum[keyof typeof AttributeThumbnailTypeEnum];
708
384
 
709
- /**
710
- *
711
- * @export
712
- * @interface Attributes1Inner
713
- */
714
385
  export interface Attributes1Inner {
715
- /**
716
- *
717
- * @type {string}
718
- * @memberof Attributes1Inner
719
- */
720
386
  'name'?: string;
721
- /**
722
- *
723
- * @type {string}
724
- * @memberof Attributes1Inner
725
- */
726
387
  'value'?: string;
727
388
  }
728
- /**
729
- *
730
- * @export
731
- * @interface CreateApplication
732
- */
733
389
  export interface CreateApplication {
734
390
  /**
735
391
  * Technology to use for the application.
736
- * @type {string}
737
- * @memberof CreateApplication
738
392
  */
739
393
  'technology': CreateApplicationTechnologyEnum;
740
394
  /**
741
395
  * Placement of the application. Available placements depend on the chosen product and technology.
742
- * @type {string}
743
- * @memberof CreateApplication
744
396
  */
745
397
  'placement': CreateApplicationPlacementEnum;
746
398
  /**
747
399
  * Any additional instructions for the application
748
- * @type {string}
749
- * @memberof CreateApplication
750
400
  */
751
401
  'additionalInstructions'?: string | null;
752
402
  /**
753
403
  * Publicly available design file URL. This will fill the design area of the warehouse product. It will be centered horizontally and aligned to the top of the design area.
754
- * @type {string}
755
- * @memberof CreateApplication
756
404
  */
757
405
  'src': string;
758
406
  /**
759
407
  * A reference to the application group. The src across all applications in the same group will be considered the same src. The is useful for DTF when using the same transfer across multiple products.
760
- * @type {string}
761
- * @memberof CreateApplication
762
408
  */
763
409
  'groupRef'?: string | null;
764
410
  /**
765
411
  * If set to true, transfers for this application will not be printed on demand, and will need to be stocked in trays in the factory. Note that this can only be set if the technology is stockable, such as DTF.
766
- * @type {boolean}
767
- * @memberof CreateApplication
768
412
  */
769
413
  'stockedOnly'?: boolean;
770
- /**
771
- *
772
- * @type {CreateApplicationProperties}
773
- * @memberof CreateApplication
774
- */
775
414
  'properties'?: CreateApplicationProperties | null;
776
415
  }
777
416
 
@@ -799,90 +438,51 @@ export const CreateApplicationPlacementEnum = {
799
438
 
800
439
  export type CreateApplicationPlacementEnum = typeof CreateApplicationPlacementEnum[keyof typeof CreateApplicationPlacementEnum];
801
440
 
802
- /**
803
- *
804
- * @export
805
- * @interface CreateApplicationGroupRequest
806
- */
807
441
  export interface CreateApplicationGroupRequest {
808
442
  /**
809
443
  * Name of the application group
810
- * @type {string}
811
- * @memberof CreateApplicationGroupRequest
812
444
  */
813
445
  'name': string;
814
446
  }
815
- /**
816
- *
817
- * @export
818
- * @interface CreateApplicationProperties
819
- */
820
447
  export interface CreateApplicationProperties {
821
- /**
822
- *
823
- * @type {ApplicationPropertiesPosition}
824
- * @memberof CreateApplicationProperties
825
- */
826
448
  'position'?: ApplicationPropertiesPosition | null;
827
- /**
828
- *
829
- * @type {ApplicationPropertiesPositionInference}
830
- * @memberof CreateApplicationProperties
831
- */
832
449
  'positionInference'?: ApplicationPropertiesPositionInference | null;
833
450
  /**
834
451
  * An array of text lines.
835
- * @type {Array<string>}
836
- * @memberof CreateApplicationProperties
837
452
  */
838
453
  'lines'?: Array<string>;
839
454
  /**
840
455
  * The font to be used for the text. This font must be available in the PodOS font library.
841
- * @type {string}
842
- * @memberof CreateApplicationProperties
843
456
  */
844
457
  'font'?: string;
845
458
  /**
846
459
  * The size of the text in pixels.
847
- * @type {number}
848
- * @memberof CreateApplicationProperties
849
460
  */
850
461
  'fontSize'?: number;
851
462
  /**
852
463
  * The weight of the text. This must be a valid CSS font-weight value.
853
- * @type {string}
854
- * @memberof CreateApplicationProperties
855
464
  */
856
465
  'fontWeight'?: CreateApplicationPropertiesFontWeightEnum;
857
466
  /**
858
467
  * The style of the text. This must be a valid CSS font-style value.
859
- * @type {string}
860
- * @memberof CreateApplicationProperties
861
468
  */
862
469
  'fontStyle'?: CreateApplicationPropertiesFontStyleEnum;
863
470
  /**
864
471
  * The colour of the text in hex format.
865
- * @type {string}
866
- * @memberof CreateApplicationProperties
867
472
  */
868
473
  'color'?: string;
474
+ /**
475
+ * The rotation of the text in degrees.
476
+ */
477
+ 'rotation'?: number;
869
478
  /**
870
479
  * Width of the application in pixels
871
- * @type {number}
872
- * @memberof CreateApplicationProperties
873
480
  */
874
481
  'width'?: number | null;
875
482
  /**
876
483
  * Height of the application in pixels
877
- * @type {number}
878
- * @memberof CreateApplicationProperties
879
484
  */
880
485
  'height'?: number | null;
881
- /**
882
- *
883
- * @type {ApplicationPropertiesMetadata}
884
- * @memberof CreateApplicationProperties
885
- */
886
486
  'metadata'?: ApplicationPropertiesMetadata | null;
887
487
  }
888
488
 
@@ -902,709 +502,381 @@ export const CreateApplicationPropertiesFontStyleEnum = {
902
502
 
903
503
  export type CreateApplicationPropertiesFontStyleEnum = typeof CreateApplicationPropertiesFontStyleEnum[keyof typeof CreateApplicationPropertiesFontStyleEnum];
904
504
 
905
- /**
906
- *
907
- * @export
908
- * @interface CreateApplicationSetRequest
909
- */
910
505
  export interface CreateApplicationSetRequest {
911
506
  /**
912
507
  * Name of the application set
913
- * @type {string}
914
- * @memberof CreateApplicationSetRequest
915
508
  */
916
509
  'name': string;
917
510
  /**
918
511
  * Description of the application set
919
- * @type {string}
920
- * @memberof CreateApplicationSetRequest
921
512
  */
922
513
  'description'?: string;
923
514
  /**
924
515
  * The width, in pixels of the images in the set
925
- * @type {number}
926
- * @memberof CreateApplicationSetRequest
927
516
  */
928
517
  'width': number;
929
518
  /**
930
519
  * The height, in pixels of the images in the set
931
- * @type {number}
932
- * @memberof CreateApplicationSetRequest
933
520
  */
934
521
  'height': number;
935
522
  /**
936
523
  * The DPI used when printing the images in the set
937
- * @type {number}
938
- * @memberof CreateApplicationSetRequest
939
524
  */
940
525
  'dpi': number;
941
526
  /**
942
527
  * List of application set records
943
- * @type {Array<CreateApplicationSetRequestRecordsInner>}
944
- * @memberof CreateApplicationSetRequest
945
528
  */
946
529
  'records': Array<CreateApplicationSetRequestRecordsInner>;
947
530
  }
948
- /**
949
- *
950
- * @export
951
- * @interface CreateApplicationSetRequestRecordsInner
952
- */
953
531
  export interface CreateApplicationSetRequestRecordsInner {
954
532
  /**
955
533
  * List of attributes this record applies to. Providing an empty array will apply the application set to all variants.
956
- * @type {Array<CreateApplicationSetRequestRecordsInnerAttributesInner>}
957
- * @memberof CreateApplicationSetRequestRecordsInner
958
534
  */
959
535
  'attributes'?: Array<CreateApplicationSetRequestRecordsInnerAttributesInner>;
960
536
  /**
961
537
  * List of applications for this record
962
- * @type {Array<CreateApplication>}
963
- * @memberof CreateApplicationSetRequestRecordsInner
964
538
  */
965
539
  'applications'?: Array<CreateApplication>;
966
540
  }
967
- /**
968
- *
969
- * @export
970
- * @interface CreateApplicationSetRequestRecordsInnerAttributesInner
971
- */
972
541
  export interface CreateApplicationSetRequestRecordsInnerAttributesInner {
973
542
  /**
974
543
  * The name of the option type. e.g. Size, Colour
975
- * @type {string}
976
- * @memberof CreateApplicationSetRequestRecordsInnerAttributesInner
977
544
  */
978
545
  'name': string;
979
546
  /**
980
547
  * The value of the option this record applies to
981
- * @type {string}
982
- * @memberof CreateApplicationSetRequestRecordsInnerAttributesInner
983
548
  */
984
549
  'value': string;
985
550
  }
986
- /**
987
- *
988
- * @export
989
- * @interface CreateBundleProduct
990
- */
991
551
  export interface CreateBundleProduct {
992
552
  /**
993
553
  * Product title
994
- * @type {string}
995
- * @memberof CreateBundleProduct
996
554
  */
997
555
  'title'?: string;
998
556
  /**
999
557
  * Product description
1000
- * @type {string}
1001
- * @memberof CreateBundleProduct
1002
558
  */
1003
559
  'description'?: string;
1004
560
  /**
1005
561
  * Whether the product is enabled upon creation.
1006
- * @type {boolean}
1007
- * @memberof CreateBundleProduct
1008
562
  */
1009
563
  'enabled'?: boolean;
1010
564
  /**
1011
565
  * A custom URL slug for the product. This must be unique for each product on the project.
1012
- * @type {string}
1013
- * @memberof CreateBundleProduct
1014
566
  */
1015
567
  'slug'?: string;
1016
- /**
1017
- *
1018
- * @type {UpdateProductsRequestProductsInnerSeoMetadata}
1019
- * @memberof CreateBundleProduct
1020
- */
1021
568
  'seoMetadata'?: UpdateProductsRequestProductsInnerSeoMetadata;
1022
569
  /**
1023
570
  * The primary target search phrase for the product that you wish to rank for in search engine results. **Note:** This field requires the website integration
1024
- * @type {string}
1025
- * @memberof CreateBundleProduct
1026
571
  */
1027
572
  'targetSearchPhrase'?: string;
1028
573
  /**
1029
574
  * Synonyms for the target search phrase. **Note:** This field requires the website integration
1030
- * @type {Array<string>}
1031
- * @memberof CreateBundleProduct
1032
575
  */
1033
576
  'targetSearchPhraseSynonyms'?: Array<string>;
1034
577
  /**
1035
578
  * Additional product tags used for searching and filtering.
1036
- * @type {Array<string>}
1037
- * @memberof CreateBundleProduct
1038
579
  */
1039
580
  'tags'?: Array<string>;
1040
581
  /**
1041
582
  * Internal tags used for internal searching and filtering.
1042
- * @type {Array<string>}
1043
- * @memberof CreateBundleProduct
1044
583
  */
1045
584
  'internalTags'?: Array<string>;
1046
585
  /**
1047
586
  * Images to attach to the product. For example, photos of models using/wearing the product.
1048
- * @type {Array<CreateProductImagesInner>}
1049
- * @memberof CreateBundleProduct
1050
587
  */
1051
588
  'images'?: Array<CreateProductImagesInner>;
1052
589
  /**
1053
590
  * Videos to attach to the product.
1054
- * @type {Array<CreateProductVideosInner>}
1055
- * @memberof CreateBundleProduct
1056
591
  */
1057
592
  'videos'?: Array<CreateProductVideosInner>;
1058
593
  /**
1059
594
  * Additional files to attach to the product. For example, original design files e.g. PSD, AI, etc.
1060
- * @type {Array<CreateProductAdditionalFilesInner>}
1061
- * @memberof CreateBundleProduct
1062
595
  */
1063
596
  'additionalFiles'?: Array<CreateProductAdditionalFilesInner>;
1064
597
  /**
1065
598
  * For use with the Shopify integration. Use this to provide a Shopify product ID to link to an existing Shopify product rather than creating a new one.
1066
- * @type {number}
1067
- * @memberof CreateBundleProduct
1068
599
  */
1069
600
  'shopifyId'?: number | null;
1070
601
  /**
1071
602
  * Key/value pairs that can be used to store additional information about the product
1072
- * @type {Array<MetaField>}
1073
- * @memberof CreateBundleProduct
1074
603
  */
1075
604
  'metafields'?: Array<MetaField>;
1076
605
  /**
1077
606
  * A list of product uuids to include in this bundle
1078
- * @type {Array<string>}
1079
- * @memberof CreateBundleProduct
1080
607
  */
1081
608
  'bundleItems': Array<string>;
1082
- /**
1083
- *
1084
- * @type {Price}
1085
- * @memberof CreateBundleProduct
1086
- */
1087
609
  'retailPrice'?: Price;
1088
- /**
1089
- *
1090
- * @type {SalePrice}
1091
- * @memberof CreateBundleProduct
1092
- */
1093
610
  'salePrice'?: SalePrice | null;
1094
- /**
1095
- *
1096
- * @type {Price}
1097
- * @memberof CreateBundleProduct
1098
- */
1099
611
  'price'?: Price;
1100
612
  }
1101
- /**
1102
- *
1103
- * @export
1104
- * @interface CreateProduct
1105
- */
1106
613
  export interface CreateProduct {
1107
614
  /**
1108
615
  * Reference to the product in the GFN catalog that will be used as a base for this product. A list of available products for the given project can be obtained from the GFN Catalog API.
1109
- * @type {string}
1110
- * @memberof CreateProduct
1111
616
  */
1112
617
  'gfnProductRef': string;
1113
618
  /**
1114
619
  * Product title
1115
- * @type {string}
1116
- * @memberof CreateProduct
1117
620
  */
1118
621
  'title'?: string;
1119
622
  /**
1120
623
  * Product description
1121
- * @type {string}
1122
- * @memberof CreateProduct
1123
624
  */
1124
625
  'description'?: string;
1125
626
  /**
1126
627
  * Whether the product is enabled upon creation.
1127
- * @type {boolean}
1128
- * @memberof CreateProduct
1129
628
  */
1130
629
  'enabled'?: boolean;
1131
630
  /**
1132
631
  * A custom URL slug for the product. This must be unique for each product on the project.
1133
- * @type {string}
1134
- * @memberof CreateProduct
1135
632
  */
1136
633
  'slug'?: string;
1137
634
  /**
1138
- *
1139
- * @type {UpdateProductsRequestProductsInnerSeoMetadata}
1140
- * @memberof CreateProduct
635
+ * The brand of the product.
1141
636
  */
637
+ 'brand'?: string | null;
1142
638
  'seoMetadata'?: UpdateProductsRequestProductsInnerSeoMetadata;
1143
639
  /**
1144
640
  * The primary target search phrase for the product that you wish to rank for in search engine results. **Note:** This field requires the website integration
1145
- * @type {string}
1146
- * @memberof CreateProduct
1147
641
  */
1148
642
  'targetSearchPhrase'?: string;
1149
643
  /**
1150
644
  * Synonyms for the target search phrase. **Note:** This field requires the website integration
1151
- * @type {Array<string>}
1152
- * @memberof CreateProduct
1153
645
  */
1154
646
  'targetSearchPhraseSynonyms'?: Array<string>;
1155
647
  /**
1156
648
  * Additional product tags used for searching and filtering.
1157
- * @type {Array<string>}
1158
- * @memberof CreateProduct
1159
649
  */
1160
650
  'tags'?: Array<string>;
1161
651
  /**
1162
652
  * Internal tags used for internal searching and filtering.
1163
- * @type {Array<string>}
1164
- * @memberof CreateProduct
1165
653
  */
1166
654
  'internalTags'?: Array<string>;
1167
655
  /**
1168
656
  * Variants
1169
- * @type {Array<CreateProductVariant>}
1170
- * @memberof CreateProduct
1171
657
  */
1172
658
  'variants': Array<CreateProductVariant>;
1173
659
  /**
1174
660
  * Images to attach to the product. For example, photos of models using/wearing the product.
1175
- * @type {Array<CreateProductImagesInner>}
1176
- * @memberof CreateProduct
1177
661
  */
1178
662
  'images'?: Array<CreateProductImagesInner>;
1179
663
  /**
1180
664
  * Videos to attach to the product.
1181
- * @type {Array<CreateProductVideosInner>}
1182
- * @memberof CreateProduct
1183
665
  */
1184
666
  'videos'?: Array<CreateProductVideosInner>;
1185
667
  /**
1186
668
  * Additional files to attach to the product. For example, original design files e.g. PSD, AI, etc.
1187
- * @type {Array<CreateProductAdditionalFilesInner>}
1188
- * @memberof CreateProduct
1189
669
  */
1190
670
  'additionalFiles'?: Array<CreateProductAdditionalFilesInner>;
1191
671
  /**
1192
672
  * List of application set UUIDs to associate with this product
1193
- * @type {Array<string>}
1194
- * @memberof CreateProduct
1195
673
  */
1196
674
  'applicationSets'?: Array<string>;
1197
675
  /**
1198
676
  * Whether the product should be included in data feeds that can be provided to Google, Meta etc for advertising.
1199
- * @type {boolean}
1200
- * @memberof CreateProduct
1201
677
  */
1202
678
  'includeInDataFeeds'?: boolean;
1203
679
  /**
1204
680
  * For use with the Shopify integration. Use this to provide a Shopify product ID to link to an existing Shopify product rather than creating a new one.
1205
- * @type {number}
1206
- * @memberof CreateProduct
1207
681
  */
1208
682
  'shopifyId'?: number | null;
1209
683
  /**
1210
684
  * Key/value pairs that can be used to store additional information about the product
1211
- * @type {Array<MetaField>}
1212
- * @memberof CreateProduct
1213
685
  */
1214
686
  'metafields'?: Array<MetaField>;
1215
687
  /**
1216
688
  * A JSON object that defines the personalization template for the product.
1217
- * @type {string}
1218
- * @memberof CreateProduct
1219
689
  */
1220
690
  'personalizationTemplate'?: string;
1221
691
  }
1222
- /**
1223
- *
1224
- * @export
1225
- * @interface CreateProductAdditionalFilesInner
1226
- */
1227
692
  export interface CreateProductAdditionalFilesInner {
1228
693
  /**
1229
694
  * Publicly available file URL.
1230
- * @type {string}
1231
- * @memberof CreateProductAdditionalFilesInner
1232
695
  */
1233
696
  'src'?: string;
1234
697
  }
1235
- /**
1236
- *
1237
- * @export
1238
- * @interface CreateProductImagesInner
1239
- */
1240
698
  export interface CreateProductImagesInner {
1241
699
  /**
1242
700
  * Publicly available file URL.
1243
- * @type {string}
1244
- * @memberof CreateProductImagesInner
1245
701
  */
1246
702
  'src'?: string;
1247
703
  /**
1248
704
  * Image type.
1249
- * @type {string}
1250
- * @memberof CreateProductImagesInner
1251
705
  */
1252
706
  'type'?: string | null;
1253
707
  }
1254
708
  /**
1255
709
  * @type CreateProductRequest
1256
- * @export
1257
710
  */
1258
711
  export type CreateProductRequest = CreateBundleProduct | CreateProduct;
1259
712
 
1260
- /**
1261
- *
1262
- * @export
1263
- * @interface CreateProductVariant
1264
- */
1265
713
  export interface CreateProductVariant {
1266
714
  /**
1267
715
  * Attributes associated to a variant such as Colour and Size.
1268
- * @type {Array<UpdateProductsRequestProductsInnerVariantsInnerAttributesInner>}
1269
- * @memberof CreateProductVariant
1270
716
  */
1271
717
  'attributes': Array<UpdateProductsRequestProductsInnerVariantsInnerAttributesInner>;
1272
- /**
1273
- *
1274
- * @type {UpdateProductsRequestProductsInnerVariantsInnerRetailPrice}
1275
- * @memberof CreateProductVariant
1276
- */
1277
718
  'retailPrice': UpdateProductsRequestProductsInnerVariantsInnerRetailPrice;
1278
- /**
1279
- *
1280
- * @type {UpdateProductsRequestProductsInnerVariantsInnerSalePrice}
1281
- * @memberof CreateProductVariant
1282
- */
1283
719
  'salePrice'?: UpdateProductsRequestProductsInnerVariantsInnerSalePrice | null;
1284
720
  /**
1285
721
  * A custom stock keeping unit for the variant.
1286
- * @type {string}
1287
- * @memberof CreateProductVariant
1288
722
  */
1289
723
  'sku'?: string;
1290
724
  /**
1291
725
  * Design applications. If not provided, the product will be blank.
1292
- * @type {Array<Application>}
1293
- * @memberof CreateProductVariant
1294
726
  */
1295
727
  'applications'?: Array<Application>;
1296
728
  /**
1297
729
  * Only use if you want to override the main product image. If not provided, mockups will be generated using the design applications and the warehouse product provided. Accepts PNG and JPEG files.
1298
- * @type {Array<CreateProductVariantImagesInner>}
1299
- * @memberof CreateProductVariant
1300
730
  */
1301
731
  'images'?: Array<CreateProductVariantImagesInner>;
1302
732
  /**
1303
733
  * 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.
1304
- * @type {string}
1305
- * @memberof CreateProductVariant
1306
734
  */
1307
735
  'barcode'?: string | null;
1308
736
  /**
1309
737
  * For use with the Shopify integration. Use this to provide a Shopify variant ID to link to an existing Shopify variant rather than creating a new one.
1310
- * @type {number}
1311
- * @memberof CreateProductVariant
1312
738
  */
1313
739
  'shopifyId'?: number | null;
1314
- /**
1315
- *
1316
- * @type {Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>}
1317
- * @memberof CreateProductVariant
1318
- */
1319
740
  'integrationConnections'?: Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>;
1320
741
  }
1321
- /**
1322
- *
1323
- * @export
1324
- * @interface CreateProductVariantImagesInner
1325
- */
1326
742
  export interface CreateProductVariantImagesInner {
1327
743
  /**
1328
744
  * Publicly available file URL.
1329
- * @type {string}
1330
- * @memberof CreateProductVariantImagesInner
1331
745
  */
1332
746
  'src'?: string;
1333
747
  }
1334
- /**
1335
- *
1336
- * @export
1337
- * @interface CreateProductVideosInner
1338
- */
1339
748
  export interface CreateProductVideosInner {
1340
749
  /**
1341
750
  * Publicly available file URL.
1342
- * @type {string}
1343
- * @memberof CreateProductVideosInner
1344
751
  */
1345
752
  'src'?: string;
1346
753
  }
1347
- /**
1348
- *
1349
- * @export
1350
- * @interface DeleteProductsRequest
1351
- */
1352
754
  export interface DeleteProductsRequest {
1353
- /**
1354
- *
1355
- * @type {Array<string>}
1356
- * @memberof DeleteProductsRequest
1357
- */
1358
755
  'products'?: Array<string>;
1359
756
  }
1360
- /**
1361
- *
1362
- * @export
1363
- * @interface DuplicateProducts202Response
1364
- */
1365
757
  export interface DuplicateProducts202Response {
1366
758
  /**
1367
759
  * A message describing the duplication status
1368
- * @type {string}
1369
- * @memberof DuplicateProducts202Response
1370
760
  */
1371
761
  'message'?: string;
1372
762
  }
1373
- /**
1374
- *
1375
- * @export
1376
- * @interface DuplicateProductsRequest
1377
- */
1378
763
  export interface DuplicateProductsRequest {
1379
764
  /**
1380
765
  * A set of product IDs to duplicate.
1381
- * @type {Array<string>}
1382
- * @memberof DuplicateProductsRequest
1383
766
  */
1384
767
  'ids': Array<string>;
1385
768
  /**
1386
769
  * A set of project IDs to duplicate the products to.
1387
- * @type {Array<string>}
1388
- * @memberof DuplicateProductsRequest
1389
770
  */
1390
771
  'projects': Array<string>;
1391
772
  }
1392
- /**
1393
- *
1394
- * @export
1395
- * @interface ExportProducts202Response
1396
- */
1397
773
  export interface ExportProducts202Response {
1398
774
  /**
1399
775
  * A message describing the export status
1400
- * @type {string}
1401
- * @memberof ExportProducts202Response
1402
776
  */
1403
777
  'message'?: string;
1404
778
  }
1405
779
  /**
1406
780
  * Image description
1407
- * @export
1408
- * @interface Image
1409
781
  */
1410
782
  export interface Image {
1411
783
  /**
1412
784
  * Unique object identifier
1413
- * @type {string}
1414
- * @memberof Image
1415
785
  */
1416
786
  'id'?: string;
1417
- /**
1418
- *
1419
- * @type {string}
1420
- * @memberof Image
1421
- */
1422
787
  'src': string;
1423
- /**
1424
- *
1425
- * @type {string}
1426
- * @memberof Image
1427
- */
1428
788
  'type'?: string | null;
1429
- /**
1430
- *
1431
- * @type {string}
1432
- * @memberof Image
1433
- */
1434
789
  'alt'?: string;
1435
790
  /**
1436
791
  * List of variant Ids
1437
- * @type {Array<string>}
1438
- * @memberof Image
1439
792
  */
1440
793
  'variantIds'?: Array<string>;
1441
- /**
1442
- *
1443
- * @type {number}
1444
- * @memberof Image
1445
- */
1446
794
  'sortOrder'?: number;
1447
- /**
1448
- *
1449
- * @type {string}
1450
- * @memberof Image
1451
- */
1452
795
  'createdAt'?: string;
1453
- /**
1454
- *
1455
- * @type {string}
1456
- * @memberof Image
1457
- */
1458
796
  'updatedAt'?: string;
1459
797
  }
1460
- /**
1461
- *
1462
- * @export
1463
- * @interface ImageFile
1464
- */
1465
798
  export interface ImageFile {
1466
799
  /**
1467
800
  * Publicly available file URL.
1468
- * @type {string}
1469
- * @memberof ImageFile
1470
801
  */
1471
802
  'src': string;
1472
803
  /**
1473
804
  * ID of the image if it already exists. A new image will be created if this is not provided.
1474
- * @type {string}
1475
- * @memberof ImageFile
1476
805
  */
1477
806
  'id'?: string | null;
1478
807
  /**
1479
808
  * Image type.
1480
- * @type {string}
1481
- * @memberof ImageFile
1482
809
  */
1483
810
  'type'?: string | null;
1484
811
  /**
1485
812
  * List of variant Ids to associate with the image.
1486
- * @type {Array<string>}
1487
- * @memberof ImageFile
1488
813
  */
1489
814
  'variantIds'?: Array<string>;
1490
- /**
1491
- *
1492
- * @type {ImageFileFocalPoint}
1493
- * @memberof ImageFile
1494
- */
1495
815
  'focalPoint'?: ImageFileFocalPoint;
1496
816
  /**
1497
817
  * The zoom level of the image, used for cropping the image when it\'s rendered to specific dimensions.
1498
- * @type {number}
1499
- * @memberof ImageFile
1500
818
  */
1501
819
  'zoom'?: number;
1502
820
  }
1503
821
  /**
1504
822
  * The focal point of the image, used for positioning the image when it\'s rendered to specific dimensions.
1505
- * @export
1506
- * @interface ImageFileFocalPoint
1507
823
  */
1508
824
  export interface ImageFileFocalPoint {
1509
825
  /**
1510
826
  * The x-coordinate of the focal point, where 0 is the left edge and 1 is the right edge.
1511
- * @type {number}
1512
- * @memberof ImageFileFocalPoint
1513
827
  */
1514
828
  'x': number;
1515
829
  /**
1516
830
  * The y-coordinate of the focal point, where 0 is the top edge and 1 is the bottom edge.
1517
- * @type {number}
1518
- * @memberof ImageFileFocalPoint
1519
831
  */
1520
832
  'y': number;
1521
833
  }
1522
- /**
1523
- *
1524
- * @export
1525
- * @interface InlineObject
1526
- */
1527
- export interface InlineObject {
834
+ export interface ImportProducts200Response {
1528
835
  /**
1529
836
  * Id of the product import
1530
- * @type {string}
1531
- * @memberof InlineObject
1532
837
  */
1533
838
  'importId'?: string;
1534
839
  }
1535
- /**
1536
- *
1537
- * @export
1538
- * @interface Location
1539
- */
1540
840
  export interface Location {
1541
841
  /**
1542
842
  * The total number of units available at the location
1543
- * @type {number}
1544
- * @memberof Location
1545
843
  */
1546
844
  'level': number;
1547
845
  /**
1548
846
  * ISO alpha-2 country code
1549
- * @type {string}
1550
- * @memberof Location
1551
847
  */
1552
848
  'country': string;
1553
849
  }
1554
850
  /**
1555
851
  * Key/value pairs that can be used to store additional information on the product
1556
- * @export
1557
- * @interface MetaField
1558
852
  */
1559
853
  export interface MetaField {
1560
854
  /**
1561
855
  * The key of the property
1562
- * @type {string}
1563
- * @memberof MetaField
1564
856
  */
1565
857
  'key': string;
1566
858
  /**
1567
859
  * The string value of the property
1568
- * @type {string}
1569
- * @memberof MetaField
1570
860
  */
1571
861
  'value': string;
1572
862
  }
1573
- /**
1574
- *
1575
- * @export
1576
- * @interface OptimisationHistoryItem
1577
- */
1578
863
  export interface OptimisationHistoryItem {
1579
864
  /**
1580
865
  * Unique object identifier
1581
- * @type {string}
1582
- * @memberof OptimisationHistoryItem
1583
866
  */
1584
867
  'id'?: string;
1585
- /**
1586
- *
1587
- * @type {string}
1588
- * @memberof OptimisationHistoryItem
1589
- */
1590
868
  'createdAt'?: string;
1591
869
  }
1592
870
  /**
1593
871
  * Standard price definition that defines the amount, tax rate and currency.
1594
- * @export
1595
- * @interface Price
1596
872
  */
1597
873
  export interface Price {
1598
874
  /**
1599
875
  * Price including tax in the specified currency.
1600
- * @type {number}
1601
- * @memberof Price
1602
876
  */
1603
877
  'amount'?: number;
1604
878
  /**
1605
879
  * Currency code for the currency the price is valued in.
1606
- * @type {string}
1607
- * @memberof Price
1608
880
  */
1609
881
  'currencyCode'?: PriceCurrencyCodeEnum;
1610
882
  }
@@ -1615,340 +887,152 @@ export const PriceCurrencyCodeEnum = {
1615
887
 
1616
888
  export type PriceCurrencyCodeEnum = typeof PriceCurrencyCodeEnum[keyof typeof PriceCurrencyCodeEnum];
1617
889
 
1618
- /**
1619
- *
1620
- * @export
1621
- * @interface Product
1622
- */
1623
890
  export interface Product {
1624
891
  /**
1625
892
  * Unique object identifier
1626
- * @type {string}
1627
- * @memberof Product
1628
893
  */
1629
894
  'id'?: string;
1630
895
  /**
1631
896
  * A reference to the resource location
1632
- * @type {string}
1633
- * @memberof Product
1634
897
  */
1635
898
  'ref'?: string;
1636
- /**
1637
- *
1638
- * @type {string}
1639
- * @memberof Product
1640
- */
1641
899
  'title': string;
1642
- /**
1643
- *
1644
- * @type {string}
1645
- * @memberof Product
1646
- */
1647
900
  'description': string;
1648
- /**
1649
- *
1650
- * @type {string}
1651
- * @memberof Product
1652
- */
1653
901
  'slug'?: string;
1654
- /**
1655
- *
1656
- * @type {string}
1657
- * @memberof Product
1658
- */
1659
902
  'brand'?: string;
1660
- /**
1661
- *
1662
- * @type {boolean}
1663
- * @memberof Product
1664
- */
1665
903
  'enabled'?: boolean;
1666
- /**
1667
- *
1668
- * @type {SEOMetadata}
1669
- * @memberof Product
1670
- */
1671
904
  'seoMetadata'?: SEOMetadata;
1672
- /**
1673
- *
1674
- * @type {TargetSearchPhraseData}
1675
- * @memberof Product
1676
- */
1677
905
  'targetSearchPhraseData'?: TargetSearchPhraseData;
1678
- /**
1679
- *
1680
- * @type {Array<string>}
1681
- * @memberof Product
1682
- */
1683
906
  'tags'?: Array<string>;
1684
- /**
1685
- *
1686
- * @type {Array<string>}
1687
- * @memberof Product
1688
- */
1689
907
  'internalTags'?: Array<string>;
1690
- /**
1691
- *
1692
- * @type {string}
1693
- * @memberof Product
1694
- */
1695
908
  'createdAt'?: string;
1696
- /**
1697
- *
1698
- * @type {string}
1699
- * @memberof Product
1700
- */
1701
909
  'updatedAt'?: string;
1702
- /**
1703
- *
1704
- * @type {string}
1705
- * @memberof Product
1706
- */
1707
910
  'publishedAt'?: string;
1708
911
  /**
1709
912
  * Images
1710
- * @type {Array<Image>}
1711
- * @memberof Product
1712
913
  */
1713
914
  'images'?: Array<Image>;
1714
915
  /**
1715
916
  * Videos
1716
- * @type {Array<Video>}
1717
- * @memberof Product
1718
917
  */
1719
918
  'videos'?: Array<Video>;
1720
919
  /**
1721
920
  * Variants
1722
- * @type {Array<Variant>}
1723
- * @memberof Product
1724
921
  */
1725
922
  'variants'?: Array<Variant>;
1726
923
  /**
1727
924
  * Products in the bundle.
1728
- * @type {Array<Product>}
1729
- * @memberof Product
1730
925
  */
1731
926
  'bundleItems'?: Array<Product>;
1732
- /**
1733
- *
1734
- * @type {Price}
1735
- * @memberof Product
1736
- */
1737
927
  'retailPrice'?: Price;
1738
- /**
1739
- *
1740
- * @type {SalePrice}
1741
- * @memberof Product
1742
- */
1743
928
  'salePrice'?: SalePrice | null;
1744
929
  /**
1745
930
  * Additional files attached to the product.
1746
- * @type {Array<ProductAdditionalFilesInner>}
1747
- * @memberof Product
1748
931
  */
1749
932
  'additionalFiles'?: Array<ProductAdditionalFilesInner>;
1750
933
  /**
1751
934
  * List of application sets associated with this product
1752
- * @type {Array<ProductApplicationSetsInner>}
1753
- * @memberof Product
1754
935
  */
1755
936
  'applicationSets'?: Array<ProductApplicationSetsInner>;
1756
937
  /**
1757
938
  * The average review rating. This field is only present if included in the fields query parameter
1758
- * @type {number}
1759
- * @memberof Product
1760
939
  */
1761
940
  'reviewScore'?: number | null;
1762
941
  /**
1763
942
  * A count of reviews. This field is only present if included in the fields query parameter
1764
- * @type {number}
1765
- * @memberof Product
1766
943
  */
1767
944
  'reviewCount'?: number;
1768
- /**
1769
- *
1770
- * @type {string}
1771
- * @memberof Product
1772
- */
1773
945
  'sku'?: string;
1774
946
  /**
1775
947
  * A count of sales. This field is only present if included in the fields query parameter
1776
- * @type {number}
1777
- * @memberof Product
1778
948
  */
1779
949
  'sales'?: number;
1780
- /**
1781
- *
1782
- * @type {string}
1783
- * @memberof Product
1784
- */
1785
950
  'salesStart'?: string;
1786
- /**
1787
- *
1788
- * @type {string}
1789
- * @memberof Product
1790
- */
1791
951
  'salesEnd'?: string;
1792
- /**
1793
- *
1794
- * @type {boolean}
1795
- * @memberof Product
1796
- */
1797
952
  'includeInDataFeeds'?: boolean;
1798
953
  /**
1799
954
  * For use with the Shopify integration. The Shopify product ID that this product is linked to.
1800
- * @type {number}
1801
- * @memberof Product
1802
955
  */
1803
956
  'shopifyId'?: number | null;
1804
- /**
1805
- *
1806
- * @type {ProductWarehouseProduct}
1807
- * @memberof Product
1808
- */
1809
957
  'warehouseProduct'?: ProductWarehouseProduct;
1810
958
  /**
1811
959
  * Key/value pairs that can be used to store additional information about the product
1812
- * @type {Array<MetaField>}
1813
- * @memberof Product
1814
960
  */
1815
961
  'metafields'?: Array<MetaField>;
1816
962
  /**
1817
963
  * a JSON string representing the personalization template for the product
1818
- * @type {string}
1819
- * @memberof Product
1820
964
  */
1821
965
  'personalizationTemplate'?: string;
1822
966
  /**
1823
967
  * History of AI optimisations performed on the product
1824
- * @type {Array<OptimisationHistoryItem>}
1825
- * @memberof Product
1826
968
  */
1827
969
  'optimisationHistory'?: Array<OptimisationHistoryItem>;
1828
- /**
1829
- *
1830
- * @type {Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>}
1831
- * @memberof Product
1832
- */
1833
970
  'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
1834
971
  }
1835
- /**
1836
- *
1837
- * @export
1838
- * @interface ProductAdditionalFilesInner
1839
- */
1840
972
  export interface ProductAdditionalFilesInner {
1841
973
  /**
1842
974
  * Unique object identifier
1843
- * @type {string}
1844
- * @memberof ProductAdditionalFilesInner
1845
975
  */
1846
976
  'id'?: string;
1847
977
  /**
1848
978
  * File URL
1849
- * @type {string}
1850
- * @memberof ProductAdditionalFilesInner
1851
979
  */
1852
980
  'src'?: string;
1853
981
  }
1854
- /**
1855
- *
1856
- * @export
1857
- * @interface ProductApplicationSetsInner
1858
- */
1859
982
  export interface ProductApplicationSetsInner {
1860
983
  /**
1861
984
  * Unique object identifier
1862
- * @type {string}
1863
- * @memberof ProductApplicationSetsInner
1864
985
  */
1865
986
  'id'?: string;
1866
987
  /**
1867
988
  * A reference to the application set resource location
1868
- * @type {string}
1869
- * @memberof ProductApplicationSetsInner
1870
989
  */
1871
990
  'ref'?: string;
1872
991
  /**
1873
992
  * Name of the application set
1874
- * @type {string}
1875
- * @memberof ProductApplicationSetsInner
1876
993
  */
1877
994
  'name'?: string;
1878
995
  }
1879
- /**
1880
- *
1881
- * @export
1882
- * @interface ProductWarehouseProduct
1883
- */
1884
996
  export interface ProductWarehouseProduct {
1885
997
  /**
1886
998
  * Unique object identifier
1887
- * @type {string}
1888
- * @memberof ProductWarehouseProduct
1889
999
  */
1890
1000
  'id'?: string;
1891
1001
  /**
1892
1002
  * Reference to the product in the Global Fulfillment Network (GFN) catalog that will be used as a base for this product. A list of available products for the given project can be obtained from the GFN Catalog API.
1893
- * @type {string}
1894
- * @memberof ProductWarehouseProduct
1895
1003
  */
1896
1004
  'gfnProductRef'?: string;
1897
1005
  }
1898
- /**
1899
- *
1900
- * @export
1901
- * @interface ProductsResponse
1902
- */
1903
1006
  export interface ProductsResponse {
1904
- /**
1905
- *
1906
- * @type {Array<Product>}
1907
- * @memberof ProductsResponse
1908
- */
1909
1007
  'products'?: Array<Product>;
1910
1008
  /**
1911
1009
  * The token referencing the next page number
1912
- * @type {number}
1913
- * @memberof ProductsResponse
1914
1010
  */
1915
1011
  'nextPageToken'?: number | null;
1916
1012
  }
1917
1013
  /**
1918
1014
  * SEO metadata for the product
1919
- * @export
1920
- * @interface SEOMetadata
1921
1015
  */
1922
1016
  export interface SEOMetadata {
1923
1017
  /**
1924
1018
  * Meta title for the product. This appears in search engine results and social shares. If not provided, the product title will be used.
1925
- * @type {string}
1926
- * @memberof SEOMetadata
1927
1019
  */
1928
1020
  'title'?: string;
1929
1021
  /**
1930
1022
  * Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
1931
- * @type {string}
1932
- * @memberof SEOMetadata
1933
1023
  */
1934
1024
  'description'?: string | null;
1935
1025
  }
1936
1026
  /**
1937
1027
  * Discounted price including tax.
1938
- * @export
1939
- * @interface SalePrice
1940
1028
  */
1941
1029
  export interface SalePrice {
1942
1030
  /**
1943
1031
  * Discounted price including tax in the specified currency.
1944
- * @type {number}
1945
- * @memberof SalePrice
1946
1032
  */
1947
1033
  'amount': number;
1948
1034
  /**
1949
1035
  * Currency code for the currency the sale price is valued in.
1950
- * @type {string}
1951
- * @memberof SalePrice
1952
1036
  */
1953
1037
  'currencyCode': SalePriceCurrencyCodeEnum;
1954
1038
  }
@@ -1959,130 +1043,67 @@ export const SalePriceCurrencyCodeEnum = {
1959
1043
 
1960
1044
  export type SalePriceCurrencyCodeEnum = typeof SalePriceCurrencyCodeEnum[keyof typeof SalePriceCurrencyCodeEnum];
1961
1045
 
1962
- /**
1963
- *
1964
- * @export
1965
- * @interface SeoOptimiseProducts202Response
1966
- */
1967
1046
  export interface SeoOptimiseProducts202Response {
1968
1047
  /**
1969
1048
  * A message describing the optimisation status
1970
- * @type {string}
1971
- * @memberof SeoOptimiseProducts202Response
1972
1049
  */
1973
1050
  'message'?: string;
1974
1051
  }
1975
- /**
1976
- *
1977
- * @export
1978
- * @interface SeoOptimiseProductsRequest
1979
- */
1980
1052
  export interface SeoOptimiseProductsRequest {
1981
1053
  /**
1982
1054
  * A set of product IDs to AI SEO optimise.
1983
- * @type {Array<string>}
1984
- * @memberof SeoOptimiseProductsRequest
1985
1055
  */
1986
1056
  'ids'?: Array<string>;
1987
1057
  /**
1988
1058
  * If provided, only the specified fields will be updated.
1989
- * @type {Array<string>}
1990
- * @memberof SeoOptimiseProductsRequest
1991
1059
  */
1992
1060
  'fields'?: Array<string>;
1993
1061
  }
1994
- /**
1995
- *
1996
- * @export
1997
- * @interface Stock
1998
- */
1999
1062
  export interface Stock {
2000
- /**
2001
- *
2002
- * @type {number}
2003
- * @memberof Stock
2004
- */
2005
1063
  'level'?: number;
2006
- /**
2007
- *
2008
- * @type {Array<Location>}
2009
- * @memberof Stock
2010
- */
2011
1064
  'locations'?: Array<Location>;
2012
1065
  }
2013
- /**
2014
- *
2015
- * @export
2016
- * @interface TargetSearchPhraseData
2017
- */
2018
1066
  export interface TargetSearchPhraseData {
2019
1067
  /**
2020
1068
  * The primary target search phrase for the product that you wish to rank for in search engine results.
2021
- * @type {string}
2022
- * @memberof TargetSearchPhraseData
2023
1069
  */
2024
1070
  'targetSearchPhrase'?: string;
2025
1071
  /**
2026
1072
  * Synonyms for the target search phrase.
2027
- * @type {Array<string>}
2028
- * @memberof TargetSearchPhraseData
2029
1073
  */
2030
1074
  'targetSearchPhraseSynonyms'?: Array<string>;
2031
1075
  }
2032
- /**
2033
- *
2034
- * @export
2035
- * @interface TextApplicationProperties
2036
- */
2037
1076
  export interface TextApplicationProperties {
2038
- /**
2039
- *
2040
- * @type {TextApplicationPropertiesPosition}
2041
- * @memberof TextApplicationProperties
2042
- */
2043
1077
  'position'?: TextApplicationPropertiesPosition;
2044
- /**
2045
- *
2046
- * @type {ApplicationPropertiesPositionInference}
2047
- * @memberof TextApplicationProperties
2048
- */
2049
1078
  'positionInference'?: ApplicationPropertiesPositionInference | null;
2050
1079
  /**
2051
1080
  * An array of text lines.
2052
- * @type {Array<string>}
2053
- * @memberof TextApplicationProperties
2054
1081
  */
2055
1082
  'lines'?: Array<string>;
2056
1083
  /**
2057
1084
  * The font to be used for the text. This font must be available in the PodOS font library.
2058
- * @type {string}
2059
- * @memberof TextApplicationProperties
2060
1085
  */
2061
1086
  'font'?: string;
2062
1087
  /**
2063
1088
  * The size of the text in pixels.
2064
- * @type {number}
2065
- * @memberof TextApplicationProperties
2066
1089
  */
2067
1090
  'fontSize'?: number;
2068
1091
  /**
2069
1092
  * The weight of the text. This must be a valid CSS font-weight value.
2070
- * @type {string}
2071
- * @memberof TextApplicationProperties
2072
1093
  */
2073
1094
  'fontWeight'?: TextApplicationPropertiesFontWeightEnum;
2074
1095
  /**
2075
1096
  * The style of the text. This must be a valid CSS font-style value.
2076
- * @type {string}
2077
- * @memberof TextApplicationProperties
2078
1097
  */
2079
1098
  'fontStyle'?: TextApplicationPropertiesFontStyleEnum;
2080
1099
  /**
2081
1100
  * The colour of the text in hex format.
2082
- * @type {string}
2083
- * @memberof TextApplicationProperties
2084
1101
  */
2085
1102
  'color'?: string;
1103
+ /**
1104
+ * The rotation of the text in degrees.
1105
+ */
1106
+ 'rotation'?: number;
2086
1107
  }
2087
1108
 
2088
1109
  export const TextApplicationPropertiesFontWeightEnum = {
@@ -2101,29 +1122,15 @@ export const TextApplicationPropertiesFontStyleEnum = {
2101
1122
 
2102
1123
  export type TextApplicationPropertiesFontStyleEnum = typeof TextApplicationPropertiesFontStyleEnum[keyof typeof TextApplicationPropertiesFontStyleEnum];
2103
1124
 
2104
- /**
2105
- *
2106
- * @export
2107
- * @interface TextApplicationPropertiesPersonalization
2108
- */
2109
1125
  export interface TextApplicationPropertiesPersonalization {
2110
1126
  /**
2111
1127
  * The label to be displayed on the personalization field.
2112
- * @type {string}
2113
- * @memberof TextApplicationPropertiesPersonalization
2114
1128
  */
2115
1129
  'label'?: string;
2116
1130
  /**
2117
1131
  * The type of the personalization field
2118
- * @type {string}
2119
- * @memberof TextApplicationPropertiesPersonalization
2120
1132
  */
2121
1133
  'type'?: TextApplicationPropertiesPersonalizationTypeEnum | null;
2122
- /**
2123
- *
2124
- * @type {TextApplicationPropertiesPersonalizationRules}
2125
- * @memberof TextApplicationPropertiesPersonalization
2126
- */
2127
1134
  'rules'?: TextApplicationPropertiesPersonalizationRules;
2128
1135
  }
2129
1136
 
@@ -2134,533 +1141,289 @@ export const TextApplicationPropertiesPersonalizationTypeEnum = {
2134
1141
 
2135
1142
  export type TextApplicationPropertiesPersonalizationTypeEnum = typeof TextApplicationPropertiesPersonalizationTypeEnum[keyof typeof TextApplicationPropertiesPersonalizationTypeEnum];
2136
1143
 
2137
- /**
2138
- *
2139
- * @export
2140
- * @interface TextApplicationPropertiesPersonalizationRules
2141
- */
2142
1144
  export interface TextApplicationPropertiesPersonalizationRules {
2143
1145
  /**
2144
1146
  * The maximum length of the text, in characters.
2145
- * @type {number}
2146
- * @memberof TextApplicationPropertiesPersonalizationRules
2147
1147
  */
2148
1148
  'maxLength'?: number;
2149
1149
  /**
2150
1150
  * If true, suspected profanities will be replaced by *. Only valid when metadata.personalization.type is \"text\"
2151
- * @type {boolean}
2152
- * @memberof TextApplicationPropertiesPersonalizationRules
2153
1151
  */
2154
1152
  'profanityFilter'?: boolean;
2155
1153
  /**
2156
1154
  * If true, and the inputted text is longer than the original text, the font size will be reduced to keep the text within the application\'s original bounds.
2157
- * @type {boolean}
2158
- * @memberof TextApplicationPropertiesPersonalizationRules
2159
1155
  */
2160
1156
  'scaleToFit'?: boolean;
2161
1157
  /**
2162
1158
  * The maximum value of the number. Only valid when metadata.personalization.type is \"number\"
2163
- * @type {number}
2164
- * @memberof TextApplicationPropertiesPersonalizationRules
2165
1159
  */
2166
1160
  'maxValue'?: number;
2167
1161
  /**
2168
1162
  * The minimum value of the number. Only valid when metadata.personalization.type is \"number\"
2169
- * @type {number}
2170
- * @memberof TextApplicationPropertiesPersonalizationRules
2171
1163
  */
2172
1164
  'minValue'?: number;
2173
1165
  /**
2174
1166
  * If the entered number is below the specified digits it will be padded with 0s. E.g. 7 will become 007 when pad is 3. Only valid when metadata.personalization.type is number
2175
- * @type {number}
2176
- * @memberof TextApplicationPropertiesPersonalizationRules
2177
1167
  */
2178
1168
  'pad'?: number;
2179
1169
  }
2180
- /**
2181
- *
2182
- * @export
2183
- * @interface TextApplicationPropertiesPosition
2184
- */
2185
1170
  export interface TextApplicationPropertiesPosition {
2186
1171
  /**
2187
1172
  * The x position of the application in pixels.
2188
- * @type {number}
2189
- * @memberof TextApplicationPropertiesPosition
2190
1173
  */
2191
1174
  'x': number;
2192
1175
  /**
2193
1176
  * The y position of the application in pixels.
2194
- * @type {number}
2195
- * @memberof TextApplicationPropertiesPosition
2196
1177
  */
2197
1178
  'y': number;
2198
1179
  /**
2199
1180
  * The z layer of the application. This doesn\'t affect printing, but is used for ordering the applications when displaying them in a mockup.
2200
- * @type {number}
2201
- * @memberof TextApplicationPropertiesPosition
2202
1181
  */
2203
1182
  'z'?: number;
2204
1183
  }
2205
- /**
2206
- *
2207
- * @export
2208
- * @interface UpdateApplicationGroupRequest
2209
- */
2210
1184
  export interface UpdateApplicationGroupRequest {
2211
1185
  /**
2212
1186
  * Name of the application group
2213
- * @type {string}
2214
- * @memberof UpdateApplicationGroupRequest
2215
1187
  */
2216
1188
  'name'?: string;
2217
1189
  }
2218
- /**
2219
- *
2220
- * @export
2221
- * @interface UpdateApplicationSetRequest
2222
- */
2223
1190
  export interface UpdateApplicationSetRequest {
2224
1191
  /**
2225
1192
  * Name of the application set
2226
- * @type {string}
2227
- * @memberof UpdateApplicationSetRequest
2228
1193
  */
2229
1194
  'name'?: string;
2230
1195
  /**
2231
1196
  * Description of the application set
2232
- * @type {string}
2233
- * @memberof UpdateApplicationSetRequest
2234
1197
  */
2235
1198
  'description'?: string;
2236
1199
  /**
2237
1200
  * The width, in pixels of the images in the set
2238
- * @type {number}
2239
- * @memberof UpdateApplicationSetRequest
2240
1201
  */
2241
1202
  'width'?: number;
2242
1203
  /**
2243
1204
  * The height, in pixels of the images in the set
2244
- * @type {number}
2245
- * @memberof UpdateApplicationSetRequest
2246
1205
  */
2247
1206
  'height'?: number;
2248
1207
  /**
2249
1208
  * The DPI used when printing the images in the set
2250
- * @type {number}
2251
- * @memberof UpdateApplicationSetRequest
2252
1209
  */
2253
1210
  'dpi'?: number;
2254
1211
  /**
2255
1212
  * List of application set records
2256
- * @type {Array<UpdateApplicationSetRequestRecordsInner>}
2257
- * @memberof UpdateApplicationSetRequest
2258
1213
  */
2259
1214
  'records'?: Array<UpdateApplicationSetRequestRecordsInner>;
2260
1215
  }
2261
- /**
2262
- *
2263
- * @export
2264
- * @interface UpdateApplicationSetRequestRecordsInner
2265
- */
2266
1216
  export interface UpdateApplicationSetRequestRecordsInner {
2267
1217
  /**
2268
1218
  * List of attributes this record applies to. Providing an empty array will apply the application set to all variants.
2269
- * @type {Array<UpdateApplicationSetRequestRecordsInnerAttributesInner>}
2270
- * @memberof UpdateApplicationSetRequestRecordsInner
2271
1219
  */
2272
1220
  'attributes'?: Array<UpdateApplicationSetRequestRecordsInnerAttributesInner>;
2273
1221
  /**
2274
1222
  * List of applications for this record
2275
- * @type {Array<Application>}
2276
- * @memberof UpdateApplicationSetRequestRecordsInner
2277
1223
  */
2278
1224
  'applications'?: Array<Application>;
2279
1225
  }
2280
- /**
2281
- *
2282
- * @export
2283
- * @interface UpdateApplicationSetRequestRecordsInnerAttributesInner
2284
- */
2285
1226
  export interface UpdateApplicationSetRequestRecordsInnerAttributesInner {
2286
1227
  /**
2287
1228
  * The name of the option type. e.g. Size, Colour
2288
- * @type {string}
2289
- * @memberof UpdateApplicationSetRequestRecordsInnerAttributesInner
2290
1229
  */
2291
1230
  'name'?: string;
2292
1231
  /**
2293
1232
  * The value of the option this record applies to
2294
- * @type {string}
2295
- * @memberof UpdateApplicationSetRequestRecordsInnerAttributesInner
2296
1233
  */
2297
1234
  'value'?: string;
2298
1235
  }
2299
- /**
2300
- *
2301
- * @export
2302
- * @interface UpdateProductRequest
2303
- */
2304
1236
  export interface UpdateProductRequest {
2305
1237
  /**
2306
1238
  * Reference to the product in the GFN catalog that will be used as a base for this product. A list of available products for the given project can be obtained from the GFN Catalog API.
2307
- * @type {string}
2308
- * @memberof UpdateProductRequest
2309
1239
  */
2310
1240
  'gfnProductRef'?: string;
2311
1241
  /**
2312
1242
  * Product title
2313
- * @type {string}
2314
- * @memberof UpdateProductRequest
2315
1243
  */
2316
1244
  'title'?: string;
2317
1245
  /**
2318
1246
  * Product description
2319
- * @type {string}
2320
- * @memberof UpdateProductRequest
2321
1247
  */
2322
1248
  'description'?: string;
2323
1249
  /**
2324
1250
  * Whether the product is enabled upon creation.
2325
- * @type {boolean}
2326
- * @memberof UpdateProductRequest
2327
1251
  */
2328
1252
  'enabled'?: boolean;
2329
1253
  /**
2330
1254
  * A custom URL slug for the product. This must be unique for each product on the project.
2331
- * @type {string}
2332
- * @memberof UpdateProductRequest
2333
1255
  */
2334
1256
  'slug'?: string;
2335
1257
  /**
2336
1258
  * The brand of the product.
2337
- * @type {string}
2338
- * @memberof UpdateProductRequest
2339
1259
  */
2340
1260
  'brand'?: string | null;
2341
- /**
2342
- *
2343
- * @type {UpdateProductsRequestProductsInnerSeoMetadata}
2344
- * @memberof UpdateProductRequest
2345
- */
2346
1261
  'seoMetadata'?: UpdateProductsRequestProductsInnerSeoMetadata;
2347
1262
  /**
2348
1263
  * The primary target search phrase for the product that you wish to rank for in search engine results. **Note:** This field requires the website integration
2349
- * @type {string}
2350
- * @memberof UpdateProductRequest
2351
1264
  */
2352
1265
  'targetSearchPhrase'?: string | null;
2353
1266
  /**
2354
1267
  * Synonyms for the target search phrase. **Note:** This field requires the website integration
2355
- * @type {Array<string>}
2356
- * @memberof UpdateProductRequest
2357
1268
  */
2358
1269
  'targetSearchPhraseSynonyms'?: Array<string> | null;
2359
1270
  /**
2360
1271
  * Additional product tags used for searching and filtering.
2361
- * @type {Array<string>}
2362
- * @memberof UpdateProductRequest
2363
1272
  */
2364
1273
  'tags'?: Array<string>;
2365
1274
  /**
2366
1275
  * Additional product tags used for internal searching and filtering.
2367
- * @type {Array<string>}
2368
- * @memberof UpdateProductRequest
2369
1276
  */
2370
1277
  'internalTags'?: Array<string>;
2371
1278
  /**
2372
1279
  * Variants
2373
- * @type {Array<CreateProductVariant>}
2374
- * @memberof UpdateProductRequest
2375
1280
  */
2376
1281
  'variants'?: Array<CreateProductVariant>;
2377
1282
  /**
2378
1283
  * A list of product uuids to be in this bundle. Only valid if the product is already a bundle.
2379
- * @type {Array<string>}
2380
- * @memberof UpdateProductRequest
2381
1284
  */
2382
1285
  'bundleItems'?: Array<string>;
2383
- /**
2384
- *
2385
- * @type {Price}
2386
- * @memberof UpdateProductRequest
2387
- */
2388
1286
  'retailPrice'?: Price;
2389
- /**
2390
- *
2391
- * @type {SalePrice}
2392
- * @memberof UpdateProductRequest
2393
- */
2394
1287
  'salePrice'?: SalePrice | null;
2395
1288
  /**
2396
1289
  * Images to attach to the product. For example, photos of models using/wearing the product.
2397
- * @type {Array<ImageFile>}
2398
- * @memberof UpdateProductRequest
2399
1290
  */
2400
1291
  'images'?: Array<ImageFile>;
2401
1292
  /**
2402
1293
  * Videos to attach to the product.
2403
- * @type {Array<VideoFile>}
2404
- * @memberof UpdateProductRequest
2405
1294
  */
2406
1295
  'videos'?: Array<VideoFile>;
2407
1296
  /**
2408
1297
  * Additional files to attach to the product. For example, original design files e.g. PSD, AI, etc.
2409
- * @type {Array<AdditionalFile>}
2410
- * @memberof UpdateProductRequest
2411
1298
  */
2412
1299
  'additionalFiles'?: Array<AdditionalFile>;
2413
1300
  /**
2414
1301
  * List of application set UUIDs to associate with this product
2415
- * @type {Array<string>}
2416
- * @memberof UpdateProductRequest
2417
1302
  */
2418
1303
  'applicationSets'?: Array<string>;
2419
1304
  /**
2420
1305
  * Whether the product should be included in data feeds that can be provided to Google, Meta etc for advertising.
2421
- * @type {boolean}
2422
- * @memberof UpdateProductRequest
2423
1306
  */
2424
1307
  'includeInDataFeeds'?: boolean;
2425
1308
  /**
2426
1309
  * For use with the Shopify integration. Use this to provide a Shopify product ID to link to an existing Shopify product rather than creating a new one.
2427
- * @type {number}
2428
- * @memberof UpdateProductRequest
2429
1310
  */
2430
1311
  'shopifyId'?: number | null;
2431
1312
  /**
2432
1313
  * Key/value pairs that can be used to store additional information about the product
2433
- * @type {Array<MetaField>}
2434
- * @memberof UpdateProductRequest
2435
1314
  */
2436
1315
  'metafields'?: Array<MetaField>;
2437
1316
  /**
2438
1317
  * A JSON object that defines the personalization template for the product.
2439
- * @type {string}
2440
- * @memberof UpdateProductRequest
2441
1318
  */
2442
1319
  'personalizationTemplate'?: string;
2443
1320
  /**
2444
1321
  * Integration connections for the product
2445
- * @type {Array<UpdateProductRequestIntegrationConnectionsInner>}
2446
- * @memberof UpdateProductRequest
2447
1322
  */
2448
1323
  'integrationConnections'?: Array<UpdateProductRequestIntegrationConnectionsInner>;
2449
1324
  }
2450
- /**
2451
- *
2452
- * @export
2453
- * @interface UpdateProductRequestIntegrationConnectionsInner
2454
- */
2455
1325
  export interface UpdateProductRequestIntegrationConnectionsInner {
2456
1326
  /**
2457
1327
  * Code identifying the integration
2458
- * @type {string}
2459
- * @memberof UpdateProductRequestIntegrationConnectionsInner
2460
1328
  */
2461
1329
  'integrationCode': string;
2462
1330
  /**
2463
1331
  * The value of the identifying property on the foreign product
2464
- * @type {string}
2465
- * @memberof UpdateProductRequestIntegrationConnectionsInner
2466
1332
  */
2467
1333
  'foreignKey': string;
2468
1334
  }
2469
- /**
2470
- *
2471
- * @export
2472
- * @interface UpdateProductsRequest
2473
- */
2474
1335
  export interface UpdateProductsRequest {
2475
- /**
2476
- *
2477
- * @type {Array<UpdateProductsRequestProductsInner>}
2478
- * @memberof UpdateProductsRequest
2479
- */
2480
1336
  'products'?: Array<UpdateProductsRequestProductsInner>;
2481
1337
  }
2482
- /**
2483
- *
2484
- * @export
2485
- * @interface UpdateProductsRequestProductsInner
2486
- */
2487
1338
  export interface UpdateProductsRequestProductsInner {
2488
1339
  /**
2489
1340
  * Unique object identifier
2490
- * @type {string}
2491
- * @memberof UpdateProductsRequestProductsInner
2492
1341
  */
2493
1342
  'id': string;
2494
1343
  /**
2495
1344
  * Product title
2496
- * @type {string}
2497
- * @memberof UpdateProductsRequestProductsInner
2498
1345
  */
2499
1346
  'title'?: string;
2500
1347
  /**
2501
1348
  * Product description
2502
- * @type {string}
2503
- * @memberof UpdateProductsRequestProductsInner
2504
1349
  */
2505
1350
  'description'?: string;
2506
1351
  /**
2507
1352
  * Whether the product is enabled.
2508
- * @type {boolean}
2509
- * @memberof UpdateProductsRequestProductsInner
2510
1353
  */
2511
1354
  'enabled'?: boolean;
2512
1355
  /**
2513
1356
  * The brand of the product.
2514
- * @type {string}
2515
- * @memberof UpdateProductsRequestProductsInner
2516
1357
  */
2517
1358
  'brand'?: string | null;
2518
- /**
2519
- *
2520
- * @type {UpdateProductsRequestProductsInnerSeoMetadata}
2521
- * @memberof UpdateProductsRequestProductsInner
2522
- */
2523
1359
  'seoMetadata'?: UpdateProductsRequestProductsInnerSeoMetadata;
2524
1360
  /**
2525
1361
  * The primary target search phrase for the product that you wish to rank for in search engine results. **Note:** This field requires the website integration
2526
- * @type {string}
2527
- * @memberof UpdateProductsRequestProductsInner
2528
1362
  */
2529
1363
  'targetSearchPhrase'?: string;
2530
1364
  /**
2531
1365
  * Synonyms for the target search phrase. **Note:** This field requires the website integration
2532
- * @type {Array<string>}
2533
- * @memberof UpdateProductsRequestProductsInner
2534
1366
  */
2535
1367
  'targetSearchPhraseSynonyms'?: Array<string>;
2536
1368
  /**
2537
1369
  * Additional product tags used for searching and filtering.
2538
- * @type {Array<string>}
2539
- * @memberof UpdateProductsRequestProductsInner
2540
1370
  */
2541
1371
  'tags'?: Array<string>;
2542
1372
  /**
2543
1373
  * List of variants to update.
2544
- * @type {Array<UpdateProductsRequestProductsInnerVariantsInner>}
2545
- * @memberof UpdateProductsRequestProductsInner
2546
1374
  */
2547
1375
  'variants'?: Array<UpdateProductsRequestProductsInnerVariantsInner>;
2548
1376
  /**
2549
1377
  * Whether the product should be included in data feeds that can be provided to Google, Meta etc for advertising.
2550
- * @type {boolean}
2551
- * @memberof UpdateProductsRequestProductsInner
2552
1378
  */
2553
1379
  'includeInDataFeeds'?: boolean;
2554
1380
  /**
2555
1381
  * For use with the Shopify integration. Use this to provide a Shopify product ID to link to an existing Shopify product rather than creating a new one.
2556
- * @type {number}
2557
- * @memberof UpdateProductsRequestProductsInner
2558
1382
  */
2559
1383
  'shopifyId'?: number | null;
2560
- /**
2561
- *
2562
- * @type {Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>}
2563
- * @memberof UpdateProductsRequestProductsInner
2564
- */
2565
1384
  'integrationConnections'?: Array<UpdateProductsRequestProductsInnerIntegrationConnectionsInner>;
2566
1385
  }
2567
- /**
2568
- *
2569
- * @export
2570
- * @interface UpdateProductsRequestProductsInnerIntegrationConnectionsInner
2571
- */
2572
1386
  export interface UpdateProductsRequestProductsInnerIntegrationConnectionsInner {
2573
- /**
2574
- *
2575
- * @type {string}
2576
- * @memberof UpdateProductsRequestProductsInnerIntegrationConnectionsInner
2577
- */
2578
1387
  'integrationCode': string;
2579
1388
  /**
2580
1389
  * The value of the identifying property on the foreign product
2581
- * @type {string}
2582
- * @memberof UpdateProductsRequestProductsInnerIntegrationConnectionsInner
2583
1390
  */
2584
1391
  'foreignKey': string;
2585
1392
  }
2586
- /**
2587
- *
2588
- * @export
2589
- * @interface UpdateProductsRequestProductsInnerSeoMetadata
2590
- */
2591
1393
  export interface UpdateProductsRequestProductsInnerSeoMetadata {
2592
1394
  /**
2593
1395
  * Meta title for the product. This appears in search engine results and social shares. If not provided, the product title will be used.
2594
- * @type {string}
2595
- * @memberof UpdateProductsRequestProductsInnerSeoMetadata
2596
1396
  */
2597
1397
  'title'?: string;
2598
1398
  /**
2599
1399
  * Meta description for the product. This appears in search engine results and social shares. If not provided, the product description will be used.
2600
- * @type {string}
2601
- * @memberof UpdateProductsRequestProductsInnerSeoMetadata
2602
1400
  */
2603
1401
  'description'?: string | null;
2604
1402
  }
2605
- /**
2606
- *
2607
- * @export
2608
- * @interface UpdateProductsRequestProductsInnerVariantsInner
2609
- */
2610
1403
  export interface UpdateProductsRequestProductsInnerVariantsInner {
2611
1404
  /**
2612
1405
  * Attributes associated to a variant such as Colour and Size.
2613
- * @type {Array<UpdateProductsRequestProductsInnerVariantsInnerAttributesInner>}
2614
- * @memberof UpdateProductsRequestProductsInnerVariantsInner
2615
1406
  */
2616
1407
  'attributes': Array<UpdateProductsRequestProductsInnerVariantsInnerAttributesInner>;
2617
- /**
2618
- *
2619
- * @type {UpdateProductsRequestProductsInnerVariantsInnerRetailPrice}
2620
- * @memberof UpdateProductsRequestProductsInnerVariantsInner
2621
- */
2622
1408
  'retailPrice': UpdateProductsRequestProductsInnerVariantsInnerRetailPrice;
2623
- /**
2624
- *
2625
- * @type {UpdateProductsRequestProductsInnerVariantsInnerSalePrice}
2626
- * @memberof UpdateProductsRequestProductsInnerVariantsInner
2627
- */
2628
1409
  'salePrice'?: UpdateProductsRequestProductsInnerVariantsInnerSalePrice | null;
2629
1410
  /**
2630
1411
  * 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.
2631
- * @type {string}
2632
- * @memberof UpdateProductsRequestProductsInnerVariantsInner
2633
1412
  */
2634
1413
  'barcode'?: string | null;
2635
1414
  /**
2636
1415
  * For use with the Shopify integration. Use this to provide a Shopify variant ID to link to an existing Shopify variant rather than creating a new one.
2637
- * @type {number}
2638
- * @memberof UpdateProductsRequestProductsInnerVariantsInner
2639
1416
  */
2640
1417
  'shopifyId'?: number | null;
2641
- /**
2642
- *
2643
- * @type {Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>}
2644
- * @memberof UpdateProductsRequestProductsInnerVariantsInner
2645
- */
2646
1418
  'integrationConnections'?: Array<UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner>;
2647
1419
  }
2648
- /**
2649
- *
2650
- * @export
2651
- * @interface UpdateProductsRequestProductsInnerVariantsInnerAttributesInner
2652
- */
2653
1420
  export interface UpdateProductsRequestProductsInnerVariantsInnerAttributesInner {
2654
1421
  /**
2655
1422
  * Attribute name
2656
- * @type {string}
2657
- * @memberof UpdateProductsRequestProductsInnerVariantsInnerAttributesInner
2658
1423
  */
2659
1424
  'name': UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameEnum;
2660
1425
  /**
2661
1426
  * Attribute value
2662
- * @type {string}
2663
- * @memberof UpdateProductsRequestProductsInnerVariantsInnerAttributesInner
2664
1427
  */
2665
1428
  'value': string;
2666
1429
  }
@@ -2672,41 +1435,23 @@ export const UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameE
2672
1435
 
2673
1436
  export type UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameEnum = typeof UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameEnum[keyof typeof UpdateProductsRequestProductsInnerVariantsInnerAttributesInnerNameEnum];
2674
1437
 
2675
- /**
2676
- *
2677
- * @export
2678
- * @interface UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner
2679
- */
2680
1438
  export interface UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner {
2681
- /**
2682
- *
2683
- * @type {string}
2684
- * @memberof UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner
2685
- */
2686
1439
  'integrationCode': string;
2687
1440
  /**
2688
1441
  * The value of the identifying property on the foreign variant
2689
- * @type {string}
2690
- * @memberof UpdateProductsRequestProductsInnerVariantsInnerIntegrationConnectionsInner
2691
1442
  */
2692
1443
  'foreignKey': string;
2693
1444
  }
2694
1445
  /**
2695
1446
  * Variant retail price including tax.
2696
- * @export
2697
- * @interface UpdateProductsRequestProductsInnerVariantsInnerRetailPrice
2698
1447
  */
2699
1448
  export interface UpdateProductsRequestProductsInnerVariantsInnerRetailPrice {
2700
1449
  /**
2701
1450
  * Price including tax in the specified currency.
2702
- * @type {number}
2703
- * @memberof UpdateProductsRequestProductsInnerVariantsInnerRetailPrice
2704
1451
  */
2705
1452
  'amount': number;
2706
1453
  /**
2707
1454
  * Currency code for the currency the price is valued in.
2708
- * @type {string}
2709
- * @memberof UpdateProductsRequestProductsInnerVariantsInnerRetailPrice
2710
1455
  */
2711
1456
  'currencyCode': UpdateProductsRequestProductsInnerVariantsInnerRetailPriceCurrencyCodeEnum;
2712
1457
  }
@@ -2719,20 +1464,14 @@ export type UpdateProductsRequestProductsInnerVariantsInnerRetailPriceCurrencyCo
2719
1464
 
2720
1465
  /**
2721
1466
  * Variant discounted price including tax.
2722
- * @export
2723
- * @interface UpdateProductsRequestProductsInnerVariantsInnerSalePrice
2724
1467
  */
2725
1468
  export interface UpdateProductsRequestProductsInnerVariantsInnerSalePrice {
2726
1469
  /**
2727
1470
  * Discounted price including tax in the specified currency.
2728
- * @type {number}
2729
- * @memberof UpdateProductsRequestProductsInnerVariantsInnerSalePrice
2730
1471
  */
2731
1472
  'amount': number;
2732
1473
  /**
2733
1474
  * Currency code for the currency the sale price is valued in.
2734
- * @type {string}
2735
- * @memberof UpdateProductsRequestProductsInnerVariantsInnerSalePrice
2736
1475
  */
2737
1476
  'currencyCode': UpdateProductsRequestProductsInnerVariantsInnerSalePriceCurrencyCodeEnum;
2738
1477
  }
@@ -2743,276 +1482,108 @@ export const UpdateProductsRequestProductsInnerVariantsInnerSalePriceCurrencyCod
2743
1482
 
2744
1483
  export type UpdateProductsRequestProductsInnerVariantsInnerSalePriceCurrencyCodeEnum = typeof UpdateProductsRequestProductsInnerVariantsInnerSalePriceCurrencyCodeEnum[keyof typeof UpdateProductsRequestProductsInnerVariantsInnerSalePriceCurrencyCodeEnum];
2745
1484
 
2746
- /**
2747
- *
2748
- * @export
2749
- * @interface Variant
2750
- */
2751
1485
  export interface Variant {
2752
1486
  /**
2753
1487
  * Unique object identifier
2754
- * @type {string}
2755
- * @memberof Variant
2756
1488
  */
2757
1489
  'id'?: string;
2758
1490
  /**
2759
1491
  * Attributes associated to a variant such as Colour and Size. An attribute can have thumbnail type of `text`, `color`, or `image`. Attribute tags are intended for grouping and filtering, e.g. by a group of colours.
2760
- * @type {Array<Attribute>}
2761
- * @memberof Variant
2762
1492
  */
2763
1493
  'attributes': Array<Attribute>;
2764
- /**
2765
- *
2766
- * @type {string}
2767
- * @memberof Variant
2768
- */
2769
1494
  'sku': string;
2770
1495
  /**
2771
1496
  * A reference to the variant resource location
2772
- * @type {string}
2773
- * @memberof Variant
2774
1497
  */
2775
1498
  'ref'?: string;
2776
- /**
2777
- *
2778
- * @type {VariantProduct}
2779
- * @memberof Variant
2780
- */
2781
1499
  'product'?: VariantProduct;
2782
- /**
2783
- *
2784
- * @type {number}
2785
- * @memberof Variant
2786
- */
2787
1500
  'sortOrder'?: number;
2788
- /**
2789
- *
2790
- * @type {Price}
2791
- * @memberof Variant
2792
- */
2793
1501
  'retailPrice'?: Price;
2794
- /**
2795
- *
2796
- * @type {SalePrice}
2797
- * @memberof Variant
2798
- */
2799
1502
  'salePrice'?: SalePrice | null;
2800
- /**
2801
- *
2802
- * @type {Price}
2803
- * @memberof Variant
2804
- */
2805
1503
  'price'?: Price;
2806
- /**
2807
- *
2808
- * @type {Stock}
2809
- * @memberof Variant
2810
- */
2811
1504
  'stock'?: Stock;
2812
- /**
2813
- *
2814
- * @type {string}
2815
- * @memberof Variant
2816
- */
2817
1505
  'createdAt'?: string;
2818
- /**
2819
- *
2820
- * @type {string}
2821
- * @memberof Variant
2822
- */
2823
1506
  'updatedAt'?: string;
2824
- /**
2825
- *
2826
- * @type {string}
2827
- * @memberof Variant
2828
- */
2829
1507
  'publishedAt'?: string;
2830
1508
  /**
2831
1509
  * Images
2832
- * @type {Array<Image>}
2833
- * @memberof Variant
2834
1510
  */
2835
1511
  'images'?: Array<Image>;
2836
1512
  /**
2837
1513
  * Design applications. If not provided, the product will be blank.
2838
- * @type {Array<Application>}
2839
- * @memberof Variant
2840
1514
  */
2841
1515
  'applications'?: Array<Application>;
2842
1516
  /**
2843
1517
  * 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.
2844
- * @type {string}
2845
- * @memberof Variant
2846
1518
  */
2847
1519
  'barcode'?: string | null;
2848
1520
  /**
2849
1521
  * Deprecated. Please use `barcode` instead.
2850
- * @type {string}
2851
- * @memberof Variant
2852
1522
  * @deprecated
2853
1523
  */
2854
1524
  'gtin'?: string | null;
2855
1525
  /**
2856
1526
  * For use with the Shopify integration. The Shopify variant ID that this variant is linked to.
2857
- * @type {number}
2858
- * @memberof Variant
2859
1527
  */
2860
1528
  'shopifyId'?: number | null;
2861
1529
  /**
2862
1530
  * Key/value pairs that can be used to store additional information about the variant
2863
- * @type {Array<MetaField>}
2864
- * @memberof Variant
2865
1531
  */
2866
1532
  'metafields'?: Array<MetaField>;
2867
- /**
2868
- *
2869
- * @type {Array<VariantIntegrationConnectionsInner>}
2870
- * @memberof Variant
2871
- */
2872
1533
  'integrationConnections'?: Array<VariantIntegrationConnectionsInner>;
2873
- /**
2874
- *
2875
- * @type {VariantWholesaleCost}
2876
- * @memberof Variant
2877
- */
2878
1534
  'wholesaleCost'?: VariantWholesaleCost;
2879
1535
  }
2880
- /**
2881
- *
2882
- * @export
2883
- * @interface VariantIntegrationConnectionsInner
2884
- */
2885
1536
  export interface VariantIntegrationConnectionsInner {
2886
- /**
2887
- *
2888
- * @type {string}
2889
- * @memberof VariantIntegrationConnectionsInner
2890
- */
2891
1537
  'integrationCode': string;
2892
1538
  /**
2893
1539
  * The value of the identifying property on the foreign variant
2894
- * @type {string}
2895
- * @memberof VariantIntegrationConnectionsInner
2896
1540
  */
2897
1541
  'foreignKey': string;
2898
1542
  }
2899
- /**
2900
- *
2901
- * @export
2902
- * @interface VariantProduct
2903
- */
2904
1543
  export interface VariantProduct {
2905
1544
  /**
2906
1545
  * Unique object identifier
2907
- * @type {string}
2908
- * @memberof VariantProduct
2909
1546
  */
2910
1547
  'id'?: string;
2911
1548
  /**
2912
1549
  * A reference to the resource location
2913
- * @type {string}
2914
- * @memberof VariantProduct
2915
1550
  */
2916
1551
  'ref'?: string;
2917
1552
  }
2918
- /**
2919
- *
2920
- * @export
2921
- * @interface VariantWholesaleCost
2922
- */
2923
1553
  export interface VariantWholesaleCost {
2924
- /**
2925
- *
2926
- * @type {Price}
2927
- * @memberof VariantWholesaleCost
2928
- */
2929
1554
  'item'?: Price;
2930
- /**
2931
- *
2932
- * @type {Price}
2933
- * @memberof VariantWholesaleCost
2934
- */
2935
1555
  'fulfillment'?: Price;
2936
1556
  }
2937
- /**
2938
- *
2939
- * @export
2940
- * @interface VariantsResponse
2941
- */
2942
1557
  export interface VariantsResponse {
2943
- /**
2944
- *
2945
- * @type {Array<Variant>}
2946
- * @memberof VariantsResponse
2947
- */
2948
1558
  'variants'?: Array<Variant>;
2949
1559
  /**
2950
1560
  * The token referencing the next page number
2951
- * @type {number}
2952
- * @memberof VariantsResponse
2953
1561
  */
2954
1562
  'nextPageToken'?: number | null;
2955
1563
  }
2956
1564
  /**
2957
1565
  * Video object
2958
- * @export
2959
- * @interface Video
2960
1566
  */
2961
1567
  export interface Video {
2962
1568
  /**
2963
1569
  * Unique object identifier
2964
- * @type {string}
2965
- * @memberof Video
2966
1570
  */
2967
1571
  'id'?: string;
2968
- /**
2969
- *
2970
- * @type {string}
2971
- * @memberof Video
2972
- */
2973
1572
  'src'?: string;
2974
- /**
2975
- *
2976
- * @type {string}
2977
- * @memberof Video
2978
- */
2979
1573
  'alt'?: string;
2980
- /**
2981
- *
2982
- * @type {number}
2983
- * @memberof Video
2984
- */
2985
1574
  'sortOrder'?: number;
2986
- /**
2987
- *
2988
- * @type {string}
2989
- * @memberof Video
2990
- */
2991
1575
  'createdAt'?: string;
2992
- /**
2993
- *
2994
- * @type {string}
2995
- * @memberof Video
2996
- */
2997
1576
  'updatedAt'?: string;
2998
1577
  }
2999
- /**
3000
- *
3001
- * @export
3002
- * @interface VideoFile
3003
- */
3004
1578
  export interface VideoFile {
3005
1579
  /**
3006
1580
  * Publicly available file URL.
3007
- * @type {string}
3008
- * @memberof VideoFile
3009
1581
  */
3010
1582
  'src'?: string;
3011
1583
  }
3012
1584
 
3013
1585
  /**
3014
1586
  * ApplicationGroupsApi - axios parameter creator
3015
- * @export
3016
1587
  */
3017
1588
  export const ApplicationGroupsApiAxiosParamCreator = function (configuration?: Configuration) {
3018
1589
  return {
@@ -3276,7 +1847,6 @@ export const ApplicationGroupsApiAxiosParamCreator = function (configuration?: C
3276
1847
 
3277
1848
  /**
3278
1849
  * ApplicationGroupsApi - functional programming interface
3279
- * @export
3280
1850
  */
3281
1851
  export const ApplicationGroupsApiFp = function(configuration?: Configuration) {
3282
1852
  const localVarAxiosParamCreator = ApplicationGroupsApiAxiosParamCreator(configuration)
@@ -3359,7 +1929,6 @@ export const ApplicationGroupsApiFp = function(configuration?: Configuration) {
3359
1929
 
3360
1930
  /**
3361
1931
  * ApplicationGroupsApi - factory interface
3362
- * @export
3363
1932
  */
3364
1933
  export const ApplicationGroupsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
3365
1934
  const localVarFp = ApplicationGroupsApiFp(configuration)
@@ -3419,135 +1988,96 @@ export const ApplicationGroupsApiFactory = function (configuration?: Configurati
3419
1988
 
3420
1989
  /**
3421
1990
  * Request parameters for createApplicationGroup operation in ApplicationGroupsApi.
3422
- * @export
3423
- * @interface ApplicationGroupsApiCreateApplicationGroupRequest
3424
1991
  */
3425
1992
  export interface ApplicationGroupsApiCreateApplicationGroupRequest {
3426
1993
  /**
3427
1994
  * What project it is
3428
- * @type {string}
3429
- * @memberof ApplicationGroupsApiCreateApplicationGroup
3430
1995
  */
3431
1996
  readonly project: string
3432
1997
 
3433
1998
  /**
3434
1999
  * Create a new application group.
3435
- * @type {CreateApplicationGroupRequest}
3436
- * @memberof ApplicationGroupsApiCreateApplicationGroup
3437
2000
  */
3438
2001
  readonly createApplicationGroupRequest?: CreateApplicationGroupRequest
3439
2002
  }
3440
2003
 
3441
2004
  /**
3442
2005
  * Request parameters for deleteApplicationGroup operation in ApplicationGroupsApi.
3443
- * @export
3444
- * @interface ApplicationGroupsApiDeleteApplicationGroupRequest
3445
2006
  */
3446
2007
  export interface ApplicationGroupsApiDeleteApplicationGroupRequest {
3447
2008
  /**
3448
2009
  * What project it is
3449
- * @type {string}
3450
- * @memberof ApplicationGroupsApiDeleteApplicationGroup
3451
2010
  */
3452
2011
  readonly project: string
3453
2012
 
3454
2013
  /**
3455
2014
  * Application group\&#39;s unique identifier
3456
- * @type {string}
3457
- * @memberof ApplicationGroupsApiDeleteApplicationGroup
3458
2015
  */
3459
2016
  readonly applicationGroupId: string
3460
2017
  }
3461
2018
 
3462
2019
  /**
3463
2020
  * Request parameters for getApplicationGroup operation in ApplicationGroupsApi.
3464
- * @export
3465
- * @interface ApplicationGroupsApiGetApplicationGroupRequest
3466
2021
  */
3467
2022
  export interface ApplicationGroupsApiGetApplicationGroupRequest {
3468
2023
  /**
3469
2024
  * What project it is
3470
- * @type {string}
3471
- * @memberof ApplicationGroupsApiGetApplicationGroup
3472
2025
  */
3473
2026
  readonly project: string
3474
2027
 
3475
2028
  /**
3476
2029
  * Application group\&#39;s unique identifier
3477
- * @type {string}
3478
- * @memberof ApplicationGroupsApiGetApplicationGroup
3479
2030
  */
3480
2031
  readonly applicationGroupId: string
3481
2032
  }
3482
2033
 
3483
2034
  /**
3484
2035
  * Request parameters for listApplicationGroups operation in ApplicationGroupsApi.
3485
- * @export
3486
- * @interface ApplicationGroupsApiListApplicationGroupsRequest
3487
2036
  */
3488
2037
  export interface ApplicationGroupsApiListApplicationGroupsRequest {
3489
2038
  /**
3490
2039
  * What project it is
3491
- * @type {string}
3492
- * @memberof ApplicationGroupsApiListApplicationGroups
3493
2040
  */
3494
2041
  readonly project: string
3495
2042
 
3496
2043
  /**
3497
2044
  * Page reference token
3498
- * @type {number}
3499
- * @memberof ApplicationGroupsApiListApplicationGroups
3500
2045
  */
3501
2046
  readonly pageToken?: number
3502
2047
 
3503
2048
  /**
3504
2049
  * Search query string to filter results. Supports field-specific filters like \&#39;uuid:&lt;id&gt;\&#39;, \&#39;name:\&quot;application group name\&quot;\&#39;. Multiple filters can be combined with spaces and commas.
3505
- * @type {string}
3506
- * @memberof ApplicationGroupsApiListApplicationGroups
3507
2050
  */
3508
2051
  readonly search?: string
3509
2052
 
3510
2053
  /**
3511
2054
  * Max page size. This is the maximum page size that will be returned, but it might be smaller.
3512
- * @type {number}
3513
- * @memberof ApplicationGroupsApiListApplicationGroups
3514
2055
  */
3515
2056
  readonly pageSize?: number
3516
2057
  }
3517
2058
 
3518
2059
  /**
3519
2060
  * Request parameters for updateApplicationGroup operation in ApplicationGroupsApi.
3520
- * @export
3521
- * @interface ApplicationGroupsApiUpdateApplicationGroupRequest
3522
2061
  */
3523
2062
  export interface ApplicationGroupsApiUpdateApplicationGroupRequest {
3524
2063
  /**
3525
2064
  * What project it is
3526
- * @type {string}
3527
- * @memberof ApplicationGroupsApiUpdateApplicationGroup
3528
2065
  */
3529
2066
  readonly project: string
3530
2067
 
3531
2068
  /**
3532
2069
  * Application group\&#39;s unique identifier
3533
- * @type {string}
3534
- * @memberof ApplicationGroupsApiUpdateApplicationGroup
3535
2070
  */
3536
2071
  readonly applicationGroupId: string
3537
2072
 
3538
2073
  /**
3539
2074
  * Update an existing application group.
3540
- * @type {UpdateApplicationGroupRequest}
3541
- * @memberof ApplicationGroupsApiUpdateApplicationGroup
3542
2075
  */
3543
2076
  readonly updateApplicationGroupRequest?: UpdateApplicationGroupRequest
3544
2077
  }
3545
2078
 
3546
2079
  /**
3547
2080
  * ApplicationGroupsApi - object-oriented interface
3548
- * @export
3549
- * @class ApplicationGroupsApi
3550
- * @extends {BaseAPI}
3551
2081
  */
3552
2082
  export class ApplicationGroupsApi extends BaseAPI {
3553
2083
  /**
@@ -3556,7 +2086,6 @@ export class ApplicationGroupsApi extends BaseAPI {
3556
2086
  * @param {ApplicationGroupsApiCreateApplicationGroupRequest} requestParameters Request parameters.
3557
2087
  * @param {*} [options] Override http request option.
3558
2088
  * @throws {RequiredError}
3559
- * @memberof ApplicationGroupsApi
3560
2089
  */
3561
2090
  public createApplicationGroup(requestParameters: ApplicationGroupsApiCreateApplicationGroupRequest, options?: RawAxiosRequestConfig) {
3562
2091
  return ApplicationGroupsApiFp(this.configuration).createApplicationGroup(requestParameters.project, requestParameters.createApplicationGroupRequest, options).then((request) => request(this.axios, this.basePath));
@@ -3568,7 +2097,6 @@ export class ApplicationGroupsApi extends BaseAPI {
3568
2097
  * @param {ApplicationGroupsApiDeleteApplicationGroupRequest} requestParameters Request parameters.
3569
2098
  * @param {*} [options] Override http request option.
3570
2099
  * @throws {RequiredError}
3571
- * @memberof ApplicationGroupsApi
3572
2100
  */
3573
2101
  public deleteApplicationGroup(requestParameters: ApplicationGroupsApiDeleteApplicationGroupRequest, options?: RawAxiosRequestConfig) {
3574
2102
  return ApplicationGroupsApiFp(this.configuration).deleteApplicationGroup(requestParameters.project, requestParameters.applicationGroupId, options).then((request) => request(this.axios, this.basePath));
@@ -3580,7 +2108,6 @@ export class ApplicationGroupsApi extends BaseAPI {
3580
2108
  * @param {ApplicationGroupsApiGetApplicationGroupRequest} requestParameters Request parameters.
3581
2109
  * @param {*} [options] Override http request option.
3582
2110
  * @throws {RequiredError}
3583
- * @memberof ApplicationGroupsApi
3584
2111
  */
3585
2112
  public getApplicationGroup(requestParameters: ApplicationGroupsApiGetApplicationGroupRequest, options?: RawAxiosRequestConfig) {
3586
2113
  return ApplicationGroupsApiFp(this.configuration).getApplicationGroup(requestParameters.project, requestParameters.applicationGroupId, options).then((request) => request(this.axios, this.basePath));
@@ -3592,7 +2119,6 @@ export class ApplicationGroupsApi extends BaseAPI {
3592
2119
  * @param {ApplicationGroupsApiListApplicationGroupsRequest} requestParameters Request parameters.
3593
2120
  * @param {*} [options] Override http request option.
3594
2121
  * @throws {RequiredError}
3595
- * @memberof ApplicationGroupsApi
3596
2122
  */
3597
2123
  public listApplicationGroups(requestParameters: ApplicationGroupsApiListApplicationGroupsRequest, options?: RawAxiosRequestConfig) {
3598
2124
  return ApplicationGroupsApiFp(this.configuration).listApplicationGroups(requestParameters.project, requestParameters.pageToken, requestParameters.search, requestParameters.pageSize, options).then((request) => request(this.axios, this.basePath));
@@ -3604,7 +2130,6 @@ export class ApplicationGroupsApi extends BaseAPI {
3604
2130
  * @param {ApplicationGroupsApiUpdateApplicationGroupRequest} requestParameters Request parameters.
3605
2131
  * @param {*} [options] Override http request option.
3606
2132
  * @throws {RequiredError}
3607
- * @memberof ApplicationGroupsApi
3608
2133
  */
3609
2134
  public updateApplicationGroup(requestParameters: ApplicationGroupsApiUpdateApplicationGroupRequest, options?: RawAxiosRequestConfig) {
3610
2135
  return ApplicationGroupsApiFp(this.configuration).updateApplicationGroup(requestParameters.project, requestParameters.applicationGroupId, requestParameters.updateApplicationGroupRequest, options).then((request) => request(this.axios, this.basePath));
@@ -3615,7 +2140,6 @@ export class ApplicationGroupsApi extends BaseAPI {
3615
2140
 
3616
2141
  /**
3617
2142
  * ApplicationSetsApi - axios parameter creator
3618
- * @export
3619
2143
  */
3620
2144
  export const ApplicationSetsApiAxiosParamCreator = function (configuration?: Configuration) {
3621
2145
  return {
@@ -3879,7 +2403,6 @@ export const ApplicationSetsApiAxiosParamCreator = function (configuration?: Con
3879
2403
 
3880
2404
  /**
3881
2405
  * ApplicationSetsApi - functional programming interface
3882
- * @export
3883
2406
  */
3884
2407
  export const ApplicationSetsApiFp = function(configuration?: Configuration) {
3885
2408
  const localVarAxiosParamCreator = ApplicationSetsApiAxiosParamCreator(configuration)
@@ -3962,7 +2485,6 @@ export const ApplicationSetsApiFp = function(configuration?: Configuration) {
3962
2485
 
3963
2486
  /**
3964
2487
  * ApplicationSetsApi - factory interface
3965
- * @export
3966
2488
  */
3967
2489
  export const ApplicationSetsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
3968
2490
  const localVarFp = ApplicationSetsApiFp(configuration)
@@ -4022,135 +2544,96 @@ export const ApplicationSetsApiFactory = function (configuration?: Configuration
4022
2544
 
4023
2545
  /**
4024
2546
  * Request parameters for createApplicationSet operation in ApplicationSetsApi.
4025
- * @export
4026
- * @interface ApplicationSetsApiCreateApplicationSetRequest
4027
2547
  */
4028
2548
  export interface ApplicationSetsApiCreateApplicationSetRequest {
4029
2549
  /**
4030
2550
  * What project it is
4031
- * @type {string}
4032
- * @memberof ApplicationSetsApiCreateApplicationSet
4033
2551
  */
4034
2552
  readonly project: string
4035
2553
 
4036
2554
  /**
4037
2555
  * Create a new application set.
4038
- * @type {CreateApplicationSetRequest}
4039
- * @memberof ApplicationSetsApiCreateApplicationSet
4040
2556
  */
4041
2557
  readonly createApplicationSetRequest?: CreateApplicationSetRequest
4042
2558
  }
4043
2559
 
4044
2560
  /**
4045
2561
  * Request parameters for deleteApplicationSet operation in ApplicationSetsApi.
4046
- * @export
4047
- * @interface ApplicationSetsApiDeleteApplicationSetRequest
4048
2562
  */
4049
2563
  export interface ApplicationSetsApiDeleteApplicationSetRequest {
4050
2564
  /**
4051
2565
  * What project it is
4052
- * @type {string}
4053
- * @memberof ApplicationSetsApiDeleteApplicationSet
4054
2566
  */
4055
2567
  readonly project: string
4056
2568
 
4057
2569
  /**
4058
2570
  * Application set\&#39;s unique identifier
4059
- * @type {string}
4060
- * @memberof ApplicationSetsApiDeleteApplicationSet
4061
2571
  */
4062
2572
  readonly applicationSetId: string
4063
2573
  }
4064
2574
 
4065
2575
  /**
4066
2576
  * Request parameters for getApplicationSet operation in ApplicationSetsApi.
4067
- * @export
4068
- * @interface ApplicationSetsApiGetApplicationSetRequest
4069
2577
  */
4070
2578
  export interface ApplicationSetsApiGetApplicationSetRequest {
4071
2579
  /**
4072
2580
  * What project it is
4073
- * @type {string}
4074
- * @memberof ApplicationSetsApiGetApplicationSet
4075
2581
  */
4076
2582
  readonly project: string
4077
2583
 
4078
2584
  /**
4079
2585
  * Application set\&#39;s unique identifier
4080
- * @type {string}
4081
- * @memberof ApplicationSetsApiGetApplicationSet
4082
2586
  */
4083
2587
  readonly applicationSetId: string
4084
2588
  }
4085
2589
 
4086
2590
  /**
4087
2591
  * Request parameters for listApplicationSets operation in ApplicationSetsApi.
4088
- * @export
4089
- * @interface ApplicationSetsApiListApplicationSetsRequest
4090
2592
  */
4091
2593
  export interface ApplicationSetsApiListApplicationSetsRequest {
4092
2594
  /**
4093
2595
  * What project it is
4094
- * @type {string}
4095
- * @memberof ApplicationSetsApiListApplicationSets
4096
2596
  */
4097
2597
  readonly project: string
4098
2598
 
4099
2599
  /**
4100
2600
  * Page reference token
4101
- * @type {number}
4102
- * @memberof ApplicationSetsApiListApplicationSets
4103
2601
  */
4104
2602
  readonly pageToken?: number
4105
2603
 
4106
2604
  /**
4107
2605
  * Search query string to filter results. Supports field-specific filters like \&#39;enabled:true\&#39;, \&#39;uuid:&lt;id&gt;\&#39;, \&#39;name:\&quot;product name\&quot;\&#39;, and \&#39;tag:\&quot;tag name\&quot;\&#39;. Multiple filters can be combined with spaces and commas.
4108
- * @type {string}
4109
- * @memberof ApplicationSetsApiListApplicationSets
4110
2606
  */
4111
2607
  readonly search?: string
4112
2608
 
4113
2609
  /**
4114
2610
  * Max page size. This is the maximum page size that will be returned, but it might be smaller.
4115
- * @type {number}
4116
- * @memberof ApplicationSetsApiListApplicationSets
4117
2611
  */
4118
2612
  readonly pageSize?: number
4119
2613
  }
4120
2614
 
4121
2615
  /**
4122
2616
  * Request parameters for updateApplicationSet operation in ApplicationSetsApi.
4123
- * @export
4124
- * @interface ApplicationSetsApiUpdateApplicationSetRequest
4125
2617
  */
4126
2618
  export interface ApplicationSetsApiUpdateApplicationSetRequest {
4127
2619
  /**
4128
2620
  * What project it is
4129
- * @type {string}
4130
- * @memberof ApplicationSetsApiUpdateApplicationSet
4131
2621
  */
4132
2622
  readonly project: string
4133
2623
 
4134
2624
  /**
4135
2625
  * Application set\&#39;s unique identifier
4136
- * @type {string}
4137
- * @memberof ApplicationSetsApiUpdateApplicationSet
4138
2626
  */
4139
2627
  readonly applicationSetId: string
4140
2628
 
4141
2629
  /**
4142
2630
  * Create a new application set.
4143
- * @type {UpdateApplicationSetRequest}
4144
- * @memberof ApplicationSetsApiUpdateApplicationSet
4145
2631
  */
4146
2632
  readonly updateApplicationSetRequest?: UpdateApplicationSetRequest
4147
2633
  }
4148
2634
 
4149
2635
  /**
4150
2636
  * ApplicationSetsApi - object-oriented interface
4151
- * @export
4152
- * @class ApplicationSetsApi
4153
- * @extends {BaseAPI}
4154
2637
  */
4155
2638
  export class ApplicationSetsApi extends BaseAPI {
4156
2639
  /**
@@ -4159,7 +2642,6 @@ export class ApplicationSetsApi extends BaseAPI {
4159
2642
  * @param {ApplicationSetsApiCreateApplicationSetRequest} requestParameters Request parameters.
4160
2643
  * @param {*} [options] Override http request option.
4161
2644
  * @throws {RequiredError}
4162
- * @memberof ApplicationSetsApi
4163
2645
  */
4164
2646
  public createApplicationSet(requestParameters: ApplicationSetsApiCreateApplicationSetRequest, options?: RawAxiosRequestConfig) {
4165
2647
  return ApplicationSetsApiFp(this.configuration).createApplicationSet(requestParameters.project, requestParameters.createApplicationSetRequest, options).then((request) => request(this.axios, this.basePath));
@@ -4171,7 +2653,6 @@ export class ApplicationSetsApi extends BaseAPI {
4171
2653
  * @param {ApplicationSetsApiDeleteApplicationSetRequest} requestParameters Request parameters.
4172
2654
  * @param {*} [options] Override http request option.
4173
2655
  * @throws {RequiredError}
4174
- * @memberof ApplicationSetsApi
4175
2656
  */
4176
2657
  public deleteApplicationSet(requestParameters: ApplicationSetsApiDeleteApplicationSetRequest, options?: RawAxiosRequestConfig) {
4177
2658
  return ApplicationSetsApiFp(this.configuration).deleteApplicationSet(requestParameters.project, requestParameters.applicationSetId, options).then((request) => request(this.axios, this.basePath));
@@ -4183,7 +2664,6 @@ export class ApplicationSetsApi extends BaseAPI {
4183
2664
  * @param {ApplicationSetsApiGetApplicationSetRequest} requestParameters Request parameters.
4184
2665
  * @param {*} [options] Override http request option.
4185
2666
  * @throws {RequiredError}
4186
- * @memberof ApplicationSetsApi
4187
2667
  */
4188
2668
  public getApplicationSet(requestParameters: ApplicationSetsApiGetApplicationSetRequest, options?: RawAxiosRequestConfig) {
4189
2669
  return ApplicationSetsApiFp(this.configuration).getApplicationSet(requestParameters.project, requestParameters.applicationSetId, options).then((request) => request(this.axios, this.basePath));
@@ -4195,7 +2675,6 @@ export class ApplicationSetsApi extends BaseAPI {
4195
2675
  * @param {ApplicationSetsApiListApplicationSetsRequest} requestParameters Request parameters.
4196
2676
  * @param {*} [options] Override http request option.
4197
2677
  * @throws {RequiredError}
4198
- * @memberof ApplicationSetsApi
4199
2678
  */
4200
2679
  public listApplicationSets(requestParameters: ApplicationSetsApiListApplicationSetsRequest, options?: RawAxiosRequestConfig) {
4201
2680
  return ApplicationSetsApiFp(this.configuration).listApplicationSets(requestParameters.project, requestParameters.pageToken, requestParameters.search, requestParameters.pageSize, options).then((request) => request(this.axios, this.basePath));
@@ -4207,7 +2686,6 @@ export class ApplicationSetsApi extends BaseAPI {
4207
2686
  * @param {ApplicationSetsApiUpdateApplicationSetRequest} requestParameters Request parameters.
4208
2687
  * @param {*} [options] Override http request option.
4209
2688
  * @throws {RequiredError}
4210
- * @memberof ApplicationSetsApi
4211
2689
  */
4212
2690
  public updateApplicationSet(requestParameters: ApplicationSetsApiUpdateApplicationSetRequest, options?: RawAxiosRequestConfig) {
4213
2691
  return ApplicationSetsApiFp(this.configuration).updateApplicationSet(requestParameters.project, requestParameters.applicationSetId, requestParameters.updateApplicationSetRequest, options).then((request) => request(this.axios, this.basePath));
@@ -4218,7 +2696,6 @@ export class ApplicationSetsApi extends BaseAPI {
4218
2696
 
4219
2697
  /**
4220
2698
  * ApplicationTechnologiesApi - axios parameter creator
4221
- * @export
4222
2699
  */
4223
2700
  export const ApplicationTechnologiesApiAxiosParamCreator = function (configuration?: Configuration) {
4224
2701
  return {
@@ -4271,7 +2748,6 @@ export const ApplicationTechnologiesApiAxiosParamCreator = function (configurati
4271
2748
 
4272
2749
  /**
4273
2750
  * ApplicationTechnologiesApi - functional programming interface
4274
- * @export
4275
2751
  */
4276
2752
  export const ApplicationTechnologiesApiFp = function(configuration?: Configuration) {
4277
2753
  const localVarAxiosParamCreator = ApplicationTechnologiesApiAxiosParamCreator(configuration)
@@ -4294,7 +2770,6 @@ export const ApplicationTechnologiesApiFp = function(configuration?: Configurati
4294
2770
 
4295
2771
  /**
4296
2772
  * ApplicationTechnologiesApi - factory interface
4297
- * @export
4298
2773
  */
4299
2774
  export const ApplicationTechnologiesApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
4300
2775
  const localVarFp = ApplicationTechnologiesApiFp(configuration)
@@ -4314,23 +2789,16 @@ export const ApplicationTechnologiesApiFactory = function (configuration?: Confi
4314
2789
 
4315
2790
  /**
4316
2791
  * Request parameters for listTechnologies operation in ApplicationTechnologiesApi.
4317
- * @export
4318
- * @interface ApplicationTechnologiesApiListTechnologiesRequest
4319
2792
  */
4320
2793
  export interface ApplicationTechnologiesApiListTechnologiesRequest {
4321
2794
  /**
4322
2795
  * What project it is
4323
- * @type {string}
4324
- * @memberof ApplicationTechnologiesApiListTechnologies
4325
2796
  */
4326
2797
  readonly project: string
4327
2798
  }
4328
2799
 
4329
2800
  /**
4330
2801
  * ApplicationTechnologiesApi - object-oriented interface
4331
- * @export
4332
- * @class ApplicationTechnologiesApi
4333
- * @extends {BaseAPI}
4334
2802
  */
4335
2803
  export class ApplicationTechnologiesApi extends BaseAPI {
4336
2804
  /**
@@ -4339,7 +2807,6 @@ export class ApplicationTechnologiesApi extends BaseAPI {
4339
2807
  * @param {ApplicationTechnologiesApiListTechnologiesRequest} requestParameters Request parameters.
4340
2808
  * @param {*} [options] Override http request option.
4341
2809
  * @throws {RequiredError}
4342
- * @memberof ApplicationTechnologiesApi
4343
2810
  */
4344
2811
  public listTechnologies(requestParameters: ApplicationTechnologiesApiListTechnologiesRequest, options?: RawAxiosRequestConfig) {
4345
2812
  return ApplicationTechnologiesApiFp(this.configuration).listTechnologies(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -4350,7 +2817,6 @@ export class ApplicationTechnologiesApi extends BaseAPI {
4350
2817
 
4351
2818
  /**
4352
2819
  * ProductsApi - axios parameter creator
4353
- * @export
4354
2820
  */
4355
2821
  export const ProductsApiAxiosParamCreator = function (configuration?: Configuration) {
4356
2822
  return {
@@ -4936,7 +3402,6 @@ export const ProductsApiAxiosParamCreator = function (configuration?: Configurat
4936
3402
 
4937
3403
  /**
4938
3404
  * ProductsApi - functional programming interface
4939
- * @export
4940
3405
  */
4941
3406
  export const ProductsApiFp = function(configuration?: Configuration) {
4942
3407
  const localVarAxiosParamCreator = ProductsApiAxiosParamCreator(configuration)
@@ -5033,7 +3498,7 @@ export const ProductsApiFp = function(configuration?: Configuration) {
5033
3498
  * @param {*} [options] Override http request option.
5034
3499
  * @throws {RequiredError}
5035
3500
  */
5036
- async importProducts(project: string, body?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineObject>> {
3501
+ async importProducts(project: string, body?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImportProducts200Response>> {
5037
3502
  const localVarAxiosArgs = await localVarAxiosParamCreator.importProducts(project, body, options);
5038
3503
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
5039
3504
  const localVarOperationServerBasePath = operationServerMap['ProductsApi.importProducts']?.[localVarOperationServerIndex]?.url;
@@ -5108,7 +3573,6 @@ export const ProductsApiFp = function(configuration?: Configuration) {
5108
3573
 
5109
3574
  /**
5110
3575
  * ProductsApi - factory interface
5111
- * @export
5112
3576
  */
5113
3577
  export const ProductsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
5114
3578
  const localVarFp = ProductsApiFp(configuration)
@@ -5180,7 +3644,7 @@ export const ProductsApiFactory = function (configuration?: Configuration, baseP
5180
3644
  * @param {*} [options] Override http request option.
5181
3645
  * @throws {RequiredError}
5182
3646
  */
5183
- importProducts(requestParameters: ProductsApiImportProductsRequest, options?: RawAxiosRequestConfig): AxiosPromise<InlineObject> {
3647
+ importProducts(requestParameters: ProductsApiImportProductsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ImportProducts200Response> {
5184
3648
  return localVarFp.importProducts(requestParameters.project, requestParameters.body, options).then((request) => request(axios, basePath));
5185
3649
  },
5186
3650
  /**
@@ -5228,296 +3692,205 @@ export const ProductsApiFactory = function (configuration?: Configuration, baseP
5228
3692
 
5229
3693
  /**
5230
3694
  * Request parameters for createProduct operation in ProductsApi.
5231
- * @export
5232
- * @interface ProductsApiCreateProductRequest
5233
3695
  */
5234
3696
  export interface ProductsApiCreateProductRequest {
5235
3697
  /**
5236
3698
  * What project it is
5237
- * @type {string}
5238
- * @memberof ProductsApiCreateProduct
5239
3699
  */
5240
3700
  readonly project: string
5241
3701
 
5242
- /**
5243
- *
5244
- * @type {CreateProductRequest}
5245
- * @memberof ProductsApiCreateProduct
5246
- */
5247
3702
  readonly createProductRequest?: CreateProductRequest
5248
3703
  }
5249
3704
 
5250
3705
  /**
5251
3706
  * Request parameters for deleteProduct operation in ProductsApi.
5252
- * @export
5253
- * @interface ProductsApiDeleteProductRequest
5254
3707
  */
5255
3708
  export interface ProductsApiDeleteProductRequest {
5256
3709
  /**
5257
3710
  * What project it is
5258
- * @type {string}
5259
- * @memberof ProductsApiDeleteProduct
5260
3711
  */
5261
3712
  readonly project: string
5262
3713
 
5263
3714
  /**
5264
3715
  * Product\&#39;s unique identifier
5265
- * @type {string}
5266
- * @memberof ProductsApiDeleteProduct
5267
3716
  */
5268
3717
  readonly productId: string
5269
3718
  }
5270
3719
 
5271
3720
  /**
5272
3721
  * Request parameters for deleteProducts operation in ProductsApi.
5273
- * @export
5274
- * @interface ProductsApiDeleteProductsRequest
5275
3722
  */
5276
3723
  export interface ProductsApiDeleteProductsRequest {
5277
3724
  /**
5278
3725
  * What project it is
5279
- * @type {string}
5280
- * @memberof ProductsApiDeleteProducts
5281
3726
  */
5282
3727
  readonly project: string
5283
3728
 
5284
3729
  /**
5285
3730
  * Delete products in bulk.
5286
- * @type {DeleteProductsRequest}
5287
- * @memberof ProductsApiDeleteProducts
5288
3731
  */
5289
3732
  readonly deleteProductsRequest: DeleteProductsRequest
5290
3733
  }
5291
3734
 
5292
3735
  /**
5293
3736
  * Request parameters for duplicateProducts operation in ProductsApi.
5294
- * @export
5295
- * @interface ProductsApiDuplicateProductsRequest
5296
3737
  */
5297
3738
  export interface ProductsApiDuplicateProductsRequest {
5298
3739
  /**
5299
3740
  * What project it is
5300
- * @type {string}
5301
- * @memberof ProductsApiDuplicateProducts
5302
3741
  */
5303
3742
  readonly project: string
5304
3743
 
5305
3744
  /**
5306
3745
  * A set of product IDs to duplicate and the project IDs to duplicate them to.
5307
- * @type {DuplicateProductsRequest}
5308
- * @memberof ProductsApiDuplicateProducts
5309
3746
  */
5310
3747
  readonly duplicateProductsRequest?: DuplicateProductsRequest
5311
3748
  }
5312
3749
 
5313
3750
  /**
5314
3751
  * Request parameters for exportProducts operation in ProductsApi.
5315
- * @export
5316
- * @interface ProductsApiExportProductsRequest
5317
3752
  */
5318
3753
  export interface ProductsApiExportProductsRequest {
5319
3754
  /**
5320
3755
  * What project it is
5321
- * @type {string}
5322
- * @memberof ProductsApiExportProducts
5323
3756
  */
5324
3757
  readonly project: string
5325
3758
  }
5326
3759
 
5327
3760
  /**
5328
3761
  * Request parameters for getProduct operation in ProductsApi.
5329
- * @export
5330
- * @interface ProductsApiGetProductRequest
5331
3762
  */
5332
3763
  export interface ProductsApiGetProductRequest {
5333
3764
  /**
5334
3765
  * What project it is
5335
- * @type {string}
5336
- * @memberof ProductsApiGetProduct
5337
3766
  */
5338
3767
  readonly project: string
5339
3768
 
5340
3769
  /**
5341
3770
  * Product\&#39;s unique identifier
5342
- * @type {string}
5343
- * @memberof ProductsApiGetProduct
5344
3771
  */
5345
3772
  readonly productId: string
5346
3773
 
5347
3774
  /**
5348
3775
  * Filter response fields to only include a subset of the resource.
5349
- * @type {string}
5350
- * @memberof ProductsApiGetProduct
5351
3776
  */
5352
3777
  readonly fields?: string
5353
3778
  }
5354
3779
 
5355
3780
  /**
5356
3781
  * Request parameters for importProducts operation in ProductsApi.
5357
- * @export
5358
- * @interface ProductsApiImportProductsRequest
5359
3782
  */
5360
3783
  export interface ProductsApiImportProductsRequest {
5361
3784
  /**
5362
3785
  * What project it is
5363
- * @type {string}
5364
- * @memberof ProductsApiImportProducts
5365
3786
  */
5366
3787
  readonly project: string
5367
3788
 
5368
3789
  /**
5369
3790
  * A base64 data URL of a CSV file containing data for one or more products.
5370
- * @type {string}
5371
- * @memberof ProductsApiImportProducts
5372
3791
  */
5373
3792
  readonly body?: string
5374
3793
  }
5375
3794
 
5376
3795
  /**
5377
3796
  * Request parameters for listProducts operation in ProductsApi.
5378
- * @export
5379
- * @interface ProductsApiListProductsRequest
5380
3797
  */
5381
3798
  export interface ProductsApiListProductsRequest {
5382
3799
  /**
5383
3800
  * What project it is
5384
- * @type {string}
5385
- * @memberof ProductsApiListProducts
5386
3801
  */
5387
3802
  readonly project: string
5388
3803
 
5389
3804
  /**
5390
3805
  * Page reference token
5391
- * @type {number}
5392
- * @memberof ProductsApiListProducts
5393
3806
  */
5394
3807
  readonly pageToken?: number
5395
3808
 
5396
3809
  /**
5397
3810
  * Search query string to filter results. Supports field-specific filters like \&#39;enabled:true\&#39;, \&#39;uuid:&lt;id&gt;\&#39;, \&#39;name:\&quot;product name\&quot;\&#39;, and \&#39;tag:\&quot;tag name\&quot;\&#39;. Multiple filters can be combined with spaces and commas.
5398
- * @type {string}
5399
- * @memberof ProductsApiListProducts
5400
3811
  */
5401
3812
  readonly search?: string
5402
3813
 
5403
3814
  /**
5404
3815
  * An array of fields to sort by, prefixed with a \&#39;-\&#39; for descending order or \&#39;+\&#39; for ascending. Default is ascending.
5405
- * @type {Array<string>}
5406
- * @memberof ProductsApiListProducts
5407
3816
  */
5408
3817
  readonly sortBy?: Array<string>
5409
3818
 
5410
3819
  /**
5411
3820
  * Start of date range to filter
5412
- * @type {string}
5413
- * @memberof ProductsApiListProducts
5414
3821
  */
5415
3822
  readonly start?: string
5416
3823
 
5417
3824
  /**
5418
3825
  * End of date range to filter
5419
- * @type {string}
5420
- * @memberof ProductsApiListProducts
5421
3826
  */
5422
3827
  readonly end?: string
5423
3828
 
5424
3829
  /**
5425
3830
  * Specifies the type of date range filter to apply. Determines which date field the &#x60;start&#x60; and &#x60;end&#x60; fields should query.
5426
- * @type {'createdAt' | 'updatedAt'}
5427
- * @memberof ProductsApiListProducts
5428
3831
  */
5429
3832
  readonly dateFilterType?: ListProductsDateFilterTypeEnum
5430
3833
 
5431
3834
  /**
5432
3835
  * Max page size. This is the maximum page size that will be returned, but it might be smaller.
5433
- * @type {number}
5434
- * @memberof ProductsApiListProducts
5435
3836
  */
5436
3837
  readonly pageSize?: number
5437
3838
 
5438
3839
  /**
5439
3840
  * Filter response fields to only include a subset of the resource.
5440
- * @type {string}
5441
- * @memberof ProductsApiListProducts
5442
3841
  */
5443
3842
  readonly fields?: string
5444
3843
  }
5445
3844
 
5446
3845
  /**
5447
3846
  * Request parameters for seoOptimiseProducts operation in ProductsApi.
5448
- * @export
5449
- * @interface ProductsApiSeoOptimiseProductsRequest
5450
3847
  */
5451
3848
  export interface ProductsApiSeoOptimiseProductsRequest {
5452
3849
  /**
5453
3850
  * What project it is
5454
- * @type {string}
5455
- * @memberof ProductsApiSeoOptimiseProducts
5456
3851
  */
5457
3852
  readonly project: string
5458
3853
 
5459
3854
  /**
5460
3855
  * A set of product IDs to AI SEO optimise.
5461
- * @type {SeoOptimiseProductsRequest}
5462
- * @memberof ProductsApiSeoOptimiseProducts
5463
3856
  */
5464
3857
  readonly seoOptimiseProductsRequest?: SeoOptimiseProductsRequest
5465
3858
  }
5466
3859
 
5467
3860
  /**
5468
3861
  * Request parameters for updateProduct operation in ProductsApi.
5469
- * @export
5470
- * @interface ProductsApiUpdateProductRequest
5471
3862
  */
5472
3863
  export interface ProductsApiUpdateProductRequest {
5473
3864
  /**
5474
3865
  * What project it is
5475
- * @type {string}
5476
- * @memberof ProductsApiUpdateProduct
5477
3866
  */
5478
3867
  readonly project: string
5479
3868
 
5480
3869
  /**
5481
3870
  * Product\&#39;s unique identifier
5482
- * @type {string}
5483
- * @memberof ProductsApiUpdateProduct
5484
3871
  */
5485
3872
  readonly productId: string
5486
3873
 
5487
- /**
5488
- *
5489
- * @type {UpdateProductRequest}
5490
- * @memberof ProductsApiUpdateProduct
5491
- */
5492
3874
  readonly updateProductRequest?: UpdateProductRequest
5493
3875
  }
5494
3876
 
5495
3877
  /**
5496
3878
  * Request parameters for updateProducts operation in ProductsApi.
5497
- * @export
5498
- * @interface ProductsApiUpdateProductsRequest
5499
3879
  */
5500
3880
  export interface ProductsApiUpdateProductsRequest {
5501
3881
  /**
5502
3882
  * What project it is
5503
- * @type {string}
5504
- * @memberof ProductsApiUpdateProducts
5505
3883
  */
5506
3884
  readonly project: string
5507
3885
 
5508
3886
  /**
5509
3887
  * Update products in bulk.
5510
- * @type {UpdateProductsRequest}
5511
- * @memberof ProductsApiUpdateProducts
5512
3888
  */
5513
3889
  readonly updateProductsRequest: UpdateProductsRequest
5514
3890
  }
5515
3891
 
5516
3892
  /**
5517
3893
  * ProductsApi - object-oriented interface
5518
- * @export
5519
- * @class ProductsApi
5520
- * @extends {BaseAPI}
5521
3894
  */
5522
3895
  export class ProductsApi extends BaseAPI {
5523
3896
  /**
@@ -5526,7 +3899,6 @@ export class ProductsApi extends BaseAPI {
5526
3899
  * @param {ProductsApiCreateProductRequest} requestParameters Request parameters.
5527
3900
  * @param {*} [options] Override http request option.
5528
3901
  * @throws {RequiredError}
5529
- * @memberof ProductsApi
5530
3902
  */
5531
3903
  public createProduct(requestParameters: ProductsApiCreateProductRequest, options?: RawAxiosRequestConfig) {
5532
3904
  return ProductsApiFp(this.configuration).createProduct(requestParameters.project, requestParameters.createProductRequest, options).then((request) => request(this.axios, this.basePath));
@@ -5538,7 +3910,6 @@ export class ProductsApi extends BaseAPI {
5538
3910
  * @param {ProductsApiDeleteProductRequest} requestParameters Request parameters.
5539
3911
  * @param {*} [options] Override http request option.
5540
3912
  * @throws {RequiredError}
5541
- * @memberof ProductsApi
5542
3913
  */
5543
3914
  public deleteProduct(requestParameters: ProductsApiDeleteProductRequest, options?: RawAxiosRequestConfig) {
5544
3915
  return ProductsApiFp(this.configuration).deleteProduct(requestParameters.project, requestParameters.productId, options).then((request) => request(this.axios, this.basePath));
@@ -5550,7 +3921,6 @@ export class ProductsApi extends BaseAPI {
5550
3921
  * @param {ProductsApiDeleteProductsRequest} requestParameters Request parameters.
5551
3922
  * @param {*} [options] Override http request option.
5552
3923
  * @throws {RequiredError}
5553
- * @memberof ProductsApi
5554
3924
  */
5555
3925
  public deleteProducts(requestParameters: ProductsApiDeleteProductsRequest, options?: RawAxiosRequestConfig) {
5556
3926
  return ProductsApiFp(this.configuration).deleteProducts(requestParameters.project, requestParameters.deleteProductsRequest, options).then((request) => request(this.axios, this.basePath));
@@ -5562,7 +3932,6 @@ export class ProductsApi extends BaseAPI {
5562
3932
  * @param {ProductsApiDuplicateProductsRequest} requestParameters Request parameters.
5563
3933
  * @param {*} [options] Override http request option.
5564
3934
  * @throws {RequiredError}
5565
- * @memberof ProductsApi
5566
3935
  */
5567
3936
  public duplicateProducts(requestParameters: ProductsApiDuplicateProductsRequest, options?: RawAxiosRequestConfig) {
5568
3937
  return ProductsApiFp(this.configuration).duplicateProducts(requestParameters.project, requestParameters.duplicateProductsRequest, options).then((request) => request(this.axios, this.basePath));
@@ -5574,7 +3943,6 @@ export class ProductsApi extends BaseAPI {
5574
3943
  * @param {ProductsApiExportProductsRequest} requestParameters Request parameters.
5575
3944
  * @param {*} [options] Override http request option.
5576
3945
  * @throws {RequiredError}
5577
- * @memberof ProductsApi
5578
3946
  */
5579
3947
  public exportProducts(requestParameters: ProductsApiExportProductsRequest, options?: RawAxiosRequestConfig) {
5580
3948
  return ProductsApiFp(this.configuration).exportProducts(requestParameters.project, options).then((request) => request(this.axios, this.basePath));
@@ -5586,7 +3954,6 @@ export class ProductsApi extends BaseAPI {
5586
3954
  * @param {ProductsApiGetProductRequest} requestParameters Request parameters.
5587
3955
  * @param {*} [options] Override http request option.
5588
3956
  * @throws {RequiredError}
5589
- * @memberof ProductsApi
5590
3957
  */
5591
3958
  public getProduct(requestParameters: ProductsApiGetProductRequest, options?: RawAxiosRequestConfig) {
5592
3959
  return ProductsApiFp(this.configuration).getProduct(requestParameters.project, requestParameters.productId, requestParameters.fields, options).then((request) => request(this.axios, this.basePath));
@@ -5598,7 +3965,6 @@ export class ProductsApi extends BaseAPI {
5598
3965
  * @param {ProductsApiImportProductsRequest} requestParameters Request parameters.
5599
3966
  * @param {*} [options] Override http request option.
5600
3967
  * @throws {RequiredError}
5601
- * @memberof ProductsApi
5602
3968
  */
5603
3969
  public importProducts(requestParameters: ProductsApiImportProductsRequest, options?: RawAxiosRequestConfig) {
5604
3970
  return ProductsApiFp(this.configuration).importProducts(requestParameters.project, requestParameters.body, options).then((request) => request(this.axios, this.basePath));
@@ -5610,7 +3976,6 @@ export class ProductsApi extends BaseAPI {
5610
3976
  * @param {ProductsApiListProductsRequest} requestParameters Request parameters.
5611
3977
  * @param {*} [options] Override http request option.
5612
3978
  * @throws {RequiredError}
5613
- * @memberof ProductsApi
5614
3979
  */
5615
3980
  public listProducts(requestParameters: ProductsApiListProductsRequest, options?: RawAxiosRequestConfig) {
5616
3981
  return ProductsApiFp(this.configuration).listProducts(requestParameters.project, requestParameters.pageToken, requestParameters.search, requestParameters.sortBy, requestParameters.start, requestParameters.end, requestParameters.dateFilterType, requestParameters.pageSize, requestParameters.fields, options).then((request) => request(this.axios, this.basePath));
@@ -5622,7 +3987,6 @@ export class ProductsApi extends BaseAPI {
5622
3987
  * @param {ProductsApiSeoOptimiseProductsRequest} requestParameters Request parameters.
5623
3988
  * @param {*} [options] Override http request option.
5624
3989
  * @throws {RequiredError}
5625
- * @memberof ProductsApi
5626
3990
  */
5627
3991
  public seoOptimiseProducts(requestParameters: ProductsApiSeoOptimiseProductsRequest, options?: RawAxiosRequestConfig) {
5628
3992
  return ProductsApiFp(this.configuration).seoOptimiseProducts(requestParameters.project, requestParameters.seoOptimiseProductsRequest, options).then((request) => request(this.axios, this.basePath));
@@ -5634,7 +3998,6 @@ export class ProductsApi extends BaseAPI {
5634
3998
  * @param {ProductsApiUpdateProductRequest} requestParameters Request parameters.
5635
3999
  * @param {*} [options] Override http request option.
5636
4000
  * @throws {RequiredError}
5637
- * @memberof ProductsApi
5638
4001
  */
5639
4002
  public updateProduct(requestParameters: ProductsApiUpdateProductRequest, options?: RawAxiosRequestConfig) {
5640
4003
  return ProductsApiFp(this.configuration).updateProduct(requestParameters.project, requestParameters.productId, requestParameters.updateProductRequest, options).then((request) => request(this.axios, this.basePath));
@@ -5646,16 +4009,12 @@ export class ProductsApi extends BaseAPI {
5646
4009
  * @param {ProductsApiUpdateProductsRequest} requestParameters Request parameters.
5647
4010
  * @param {*} [options] Override http request option.
5648
4011
  * @throws {RequiredError}
5649
- * @memberof ProductsApi
5650
4012
  */
5651
4013
  public updateProducts(requestParameters: ProductsApiUpdateProductsRequest, options?: RawAxiosRequestConfig) {
5652
4014
  return ProductsApiFp(this.configuration).updateProducts(requestParameters.project, requestParameters.updateProductsRequest, options).then((request) => request(this.axios, this.basePath));
5653
4015
  }
5654
4016
  }
5655
4017
 
5656
- /**
5657
- * @export
5658
- */
5659
4018
  export const ListProductsDateFilterTypeEnum = {
5660
4019
  CreatedAt: 'createdAt',
5661
4020
  UpdatedAt: 'updatedAt'
@@ -5665,7 +4024,6 @@ export type ListProductsDateFilterTypeEnum = typeof ListProductsDateFilterTypeEn
5665
4024
 
5666
4025
  /**
5667
4026
  * VariantsApi - axios parameter creator
5668
- * @export
5669
4027
  */
5670
4028
  export const VariantsApiAxiosParamCreator = function (configuration?: Configuration) {
5671
4029
  return {
@@ -5791,7 +4149,6 @@ export const VariantsApiAxiosParamCreator = function (configuration?: Configurat
5791
4149
 
5792
4150
  /**
5793
4151
  * VariantsApi - functional programming interface
5794
- * @export
5795
4152
  */
5796
4153
  export const VariantsApiFp = function(configuration?: Configuration) {
5797
4154
  const localVarAxiosParamCreator = VariantsApiAxiosParamCreator(configuration)
@@ -5833,7 +4190,6 @@ export const VariantsApiFp = function(configuration?: Configuration) {
5833
4190
 
5834
4191
  /**
5835
4192
  * VariantsApi - factory interface
5836
- * @export
5837
4193
  */
5838
4194
  export const VariantsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
5839
4195
  const localVarFp = VariantsApiFp(configuration)
@@ -5863,79 +4219,56 @@ export const VariantsApiFactory = function (configuration?: Configuration, baseP
5863
4219
 
5864
4220
  /**
5865
4221
  * Request parameters for getVariant operation in VariantsApi.
5866
- * @export
5867
- * @interface VariantsApiGetVariantRequest
5868
4222
  */
5869
4223
  export interface VariantsApiGetVariantRequest {
5870
4224
  /**
5871
4225
  * What project it is
5872
- * @type {string}
5873
- * @memberof VariantsApiGetVariant
5874
4226
  */
5875
4227
  readonly project: string
5876
4228
 
5877
4229
  /**
5878
4230
  * Variants unique identifier
5879
- * @type {string}
5880
- * @memberof VariantsApiGetVariant
5881
4231
  */
5882
4232
  readonly variantId: string
5883
4233
 
5884
4234
  /**
5885
4235
  * Filter response fields to only include a subset of the resource.
5886
- * @type {string}
5887
- * @memberof VariantsApiGetVariant
5888
4236
  */
5889
4237
  readonly fields?: string
5890
4238
  }
5891
4239
 
5892
4240
  /**
5893
4241
  * Request parameters for listVariants operation in VariantsApi.
5894
- * @export
5895
- * @interface VariantsApiListVariantsRequest
5896
4242
  */
5897
4243
  export interface VariantsApiListVariantsRequest {
5898
4244
  /**
5899
4245
  * What project it is
5900
- * @type {string}
5901
- * @memberof VariantsApiListVariants
5902
4246
  */
5903
4247
  readonly project: string
5904
4248
 
5905
4249
  /**
5906
4250
  * Search query string to filter results. Supports field-specific filters like \&#39;enabled:true\&#39;, \&#39;uuid:&lt;id&gt;\&#39;, \&#39;name:\&quot;product name\&quot;\&#39;, and \&#39;tag:\&quot;tag name\&quot;\&#39;. Multiple filters can be combined with spaces and commas.
5907
- * @type {string}
5908
- * @memberof VariantsApiListVariants
5909
4251
  */
5910
4252
  readonly search?: string
5911
4253
 
5912
4254
  /**
5913
4255
  * Page reference token
5914
- * @type {number}
5915
- * @memberof VariantsApiListVariants
5916
4256
  */
5917
4257
  readonly pageToken?: number
5918
4258
 
5919
4259
  /**
5920
4260
  * Max page size. This is the maximum page size that will be returned, but it might be smaller.
5921
- * @type {number}
5922
- * @memberof VariantsApiListVariants
5923
4261
  */
5924
4262
  readonly pageSize?: number
5925
4263
 
5926
4264
  /**
5927
4265
  * Filter response fields to only include a subset of the resource.
5928
- * @type {string}
5929
- * @memberof VariantsApiListVariants
5930
4266
  */
5931
4267
  readonly fields?: string
5932
4268
  }
5933
4269
 
5934
4270
  /**
5935
4271
  * VariantsApi - object-oriented interface
5936
- * @export
5937
- * @class VariantsApi
5938
- * @extends {BaseAPI}
5939
4272
  */
5940
4273
  export class VariantsApi extends BaseAPI {
5941
4274
  /**
@@ -5944,7 +4277,6 @@ export class VariantsApi extends BaseAPI {
5944
4277
  * @param {VariantsApiGetVariantRequest} requestParameters Request parameters.
5945
4278
  * @param {*} [options] Override http request option.
5946
4279
  * @throws {RequiredError}
5947
- * @memberof VariantsApi
5948
4280
  */
5949
4281
  public getVariant(requestParameters: VariantsApiGetVariantRequest, options?: RawAxiosRequestConfig) {
5950
4282
  return VariantsApiFp(this.configuration).getVariant(requestParameters.project, requestParameters.variantId, requestParameters.fields, options).then((request) => request(this.axios, this.basePath));
@@ -5956,7 +4288,6 @@ export class VariantsApi extends BaseAPI {
5956
4288
  * @param {VariantsApiListVariantsRequest} requestParameters Request parameters.
5957
4289
  * @param {*} [options] Override http request option.
5958
4290
  * @throws {RequiredError}
5959
- * @memberof VariantsApi
5960
4291
  */
5961
4292
  public listVariants(requestParameters: VariantsApiListVariantsRequest, options?: RawAxiosRequestConfig) {
5962
4293
  return VariantsApiFp(this.configuration).listVariants(requestParameters.project, requestParameters.search, requestParameters.pageToken, requestParameters.pageSize, requestParameters.fields, options).then((request) => request(this.axios, this.basePath));