@hautechai/sdk 0.2.3 → 0.2.5

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.
@@ -376,25 +376,6 @@ export declare const CompositeElementFitEnum: {
376
376
  readonly Outside: "outside";
377
377
  };
378
378
  export type CompositeElementFitEnum = typeof CompositeElementFitEnum[keyof typeof CompositeElementFitEnum];
379
- /**
380
- *
381
- * @export
382
- * @interface CompositeV1ControllerInput
383
- */
384
- export interface CompositeV1ControllerInput {
385
- /**
386
- *
387
- * @type {CompositeV1Input}
388
- * @memberof CompositeV1ControllerInput
389
- */
390
- 'input': CompositeV1Input;
391
- /**
392
- *
393
- * @type {object}
394
- * @memberof CompositeV1ControllerInput
395
- */
396
- 'metadata'?: object;
397
- }
398
379
  /**
399
380
  *
400
381
  * @export
@@ -426,6 +407,25 @@ export interface CompositeV1Input {
426
407
  */
427
408
  'elements': Array<CompositeElement>;
428
409
  }
410
+ /**
411
+ *
412
+ * @export
413
+ * @interface CompositeV1Request
414
+ */
415
+ export interface CompositeV1Request {
416
+ /**
417
+ *
418
+ * @type {CompositeV1Input}
419
+ * @memberof CompositeV1Request
420
+ */
421
+ 'input': CompositeV1Input;
422
+ /**
423
+ *
424
+ * @type {object}
425
+ * @memberof CompositeV1Request
426
+ */
427
+ 'metadata'?: object;
428
+ }
429
429
  /**
430
430
  *
431
431
  * @export
@@ -614,40 +614,40 @@ export interface CreateStorageRecordParamsDto {
614
614
  /**
615
615
  *
616
616
  * @export
617
- * @interface CutV1ControllerInput
617
+ * @interface CutV1Input
618
618
  */
619
- export interface CutV1ControllerInput {
619
+ export interface CutV1Input {
620
620
  /**
621
621
  *
622
- * @type {CutV1Input}
623
- * @memberof CutV1ControllerInput
622
+ * @type {string}
623
+ * @memberof CutV1Input
624
624
  */
625
- 'input': CutV1Input;
625
+ 'imageId': string;
626
626
  /**
627
627
  *
628
- * @type {object}
629
- * @memberof CutV1ControllerInput
628
+ * @type {string}
629
+ * @memberof CutV1Input
630
630
  */
631
- 'metadata'?: object;
631
+ 'maskImageId': string;
632
632
  }
633
633
  /**
634
634
  *
635
635
  * @export
636
- * @interface CutV1Input
636
+ * @interface CutV1Request
637
637
  */
638
- export interface CutV1Input {
638
+ export interface CutV1Request {
639
639
  /**
640
640
  *
641
- * @type {string}
642
- * @memberof CutV1Input
641
+ * @type {CutV1Input}
642
+ * @memberof CutV1Request
643
643
  */
644
- 'imageId': string;
644
+ 'input': CutV1Input;
645
645
  /**
646
646
  *
647
- * @type {string}
648
- * @memberof CutV1Input
647
+ * @type {object}
648
+ * @memberof CutV1Request
649
649
  */
650
- 'maskImageId': string;
650
+ 'metadata'?: object;
651
651
  }
652
652
  /**
653
653
  *
@@ -770,25 +770,6 @@ export interface DeleteStorageParamsDto {
770
770
  */
771
771
  'key': string;
772
772
  }
773
- /**
774
- *
775
- * @export
776
- * @interface GPTV1ControllerInput
777
- */
778
- export interface GPTV1ControllerInput {
779
- /**
780
- *
781
- * @type {GPTV1Input}
782
- * @memberof GPTV1ControllerInput
783
- */
784
- 'input': GPTV1Input;
785
- /**
786
- *
787
- * @type {object}
788
- * @memberof GPTV1ControllerInput
789
- */
790
- 'metadata'?: object;
791
- }
792
773
  /**
793
774
  *
794
775
  * @export
@@ -990,25 +971,6 @@ export interface GetUrlsForImagesParamsDto {
990
971
  */
991
972
  'ids': Array<string>;
992
973
  }
993
- /**
994
- *
995
- * @export
996
- * @interface GiseleVtonV1ControllerInput
997
- */
998
- export interface GiseleVtonV1ControllerInput {
999
- /**
1000
- *
1001
- * @type {GiseleVtonV1Input}
1002
- * @memberof GiseleVtonV1ControllerInput
1003
- */
1004
- 'input': GiseleVtonV1Input;
1005
- /**
1006
- *
1007
- * @type {object}
1008
- * @memberof GiseleVtonV1ControllerInput
1009
- */
1010
- 'metadata'?: object;
1011
- }
1012
974
  /**
1013
975
  *
1014
976
  * @export
@@ -1052,6 +1014,25 @@ export declare const GiseleVtonV1InputCategoryEnum: {
1052
1014
  readonly UpperBody: "upper_body";
1053
1015
  };
1054
1016
  export type GiseleVtonV1InputCategoryEnum = typeof GiseleVtonV1InputCategoryEnum[keyof typeof GiseleVtonV1InputCategoryEnum];
1017
+ /**
1018
+ *
1019
+ * @export
1020
+ * @interface GptV1Request
1021
+ */
1022
+ export interface GptV1Request {
1023
+ /**
1024
+ *
1025
+ * @type {GPTV1Input}
1026
+ * @memberof GptV1Request
1027
+ */
1028
+ 'input': GPTV1Input;
1029
+ /**
1030
+ *
1031
+ * @type {object}
1032
+ * @memberof GptV1Request
1033
+ */
1034
+ 'metadata'?: object;
1035
+ }
1055
1036
  /**
1056
1037
  *
1057
1038
  * @export
@@ -1250,6 +1231,25 @@ export interface GroupEntity {
1250
1231
  */
1251
1232
  'createdAt': string;
1252
1233
  }
1234
+ /**
1235
+ *
1236
+ * @export
1237
+ * @interface HauteLindaV1Request
1238
+ */
1239
+ export interface HauteLindaV1Request {
1240
+ /**
1241
+ *
1242
+ * @type {LindaHauteV1Input}
1243
+ * @memberof HauteLindaV1Request
1244
+ */
1245
+ 'input': LindaHauteV1Input;
1246
+ /**
1247
+ *
1248
+ * @type {object}
1249
+ * @memberof HauteLindaV1Request
1250
+ */
1251
+ 'metadata'?: object;
1252
+ }
1253
1253
  /**
1254
1254
  *
1255
1255
  * @export
@@ -1345,6 +1345,25 @@ export declare const HauteLindaV1ResponseStatusEnum: {
1345
1345
  readonly Failed: "failed";
1346
1346
  };
1347
1347
  export type HauteLindaV1ResponseStatusEnum = typeof HauteLindaV1ResponseStatusEnum[keyof typeof HauteLindaV1ResponseStatusEnum];
1348
+ /**
1349
+ *
1350
+ * @export
1351
+ * @interface HauteNaomiV1Request
1352
+ */
1353
+ export interface HauteNaomiV1Request {
1354
+ /**
1355
+ *
1356
+ * @type {NaomiHauteV1Input}
1357
+ * @memberof HauteNaomiV1Request
1358
+ */
1359
+ 'input': NaomiHauteV1Input;
1360
+ /**
1361
+ *
1362
+ * @type {object}
1363
+ * @memberof HauteNaomiV1Request
1364
+ */
1365
+ 'metadata'?: object;
1366
+ }
1348
1367
  /**
1349
1368
  *
1350
1369
  * @export
@@ -1585,6 +1604,25 @@ export interface ImageUrlResponseDto {
1585
1604
  */
1586
1605
  'url': string;
1587
1606
  }
1607
+ /**
1608
+ *
1609
+ * @export
1610
+ * @interface ImagineKateV1Request
1611
+ */
1612
+ export interface ImagineKateV1Request {
1613
+ /**
1614
+ *
1615
+ * @type {KateImagineV1Input}
1616
+ * @memberof ImagineKateV1Request
1617
+ */
1618
+ 'input': KateImagineV1Input;
1619
+ /**
1620
+ *
1621
+ * @type {object}
1622
+ * @memberof ImagineKateV1Request
1623
+ */
1624
+ 'metadata'?: object;
1625
+ }
1588
1626
  /**
1589
1627
  *
1590
1628
  * @export
@@ -1693,6 +1731,25 @@ export interface InitializeImageUploadResultDto {
1693
1731
  */
1694
1732
  'uploadUrl': string;
1695
1733
  }
1734
+ /**
1735
+ *
1736
+ * @export
1737
+ * @interface InpaintKateV1Request
1738
+ */
1739
+ export interface InpaintKateV1Request {
1740
+ /**
1741
+ *
1742
+ * @type {KateInpaintV1Input}
1743
+ * @memberof InpaintKateV1Request
1744
+ */
1745
+ 'input': KateInpaintV1Input;
1746
+ /**
1747
+ *
1748
+ * @type {object}
1749
+ * @memberof InpaintKateV1Request
1750
+ */
1751
+ 'metadata'?: object;
1752
+ }
1696
1753
  /**
1697
1754
  *
1698
1755
  * @export
@@ -1788,25 +1845,6 @@ export declare const InpaintKateV1ResponseStatusEnum: {
1788
1845
  readonly Failed: "failed";
1789
1846
  };
1790
1847
  export type InpaintKateV1ResponseStatusEnum = typeof InpaintKateV1ResponseStatusEnum[keyof typeof InpaintKateV1ResponseStatusEnum];
1791
- /**
1792
- *
1793
- * @export
1794
- * @interface KateImagineV1ControllerInput
1795
- */
1796
- export interface KateImagineV1ControllerInput {
1797
- /**
1798
- *
1799
- * @type {KateImagineV1Input}
1800
- * @memberof KateImagineV1ControllerInput
1801
- */
1802
- 'input': KateImagineV1Input;
1803
- /**
1804
- *
1805
- * @type {object}
1806
- * @memberof KateImagineV1ControllerInput
1807
- */
1808
- 'metadata'?: object;
1809
- }
1810
1848
  /**
1811
1849
  *
1812
1850
  * @export
@@ -1844,25 +1882,6 @@ export declare const KateImagineV1InputAspectRatioEnum: {
1844
1882
  readonly _512: "5:12";
1845
1883
  };
1846
1884
  export type KateImagineV1InputAspectRatioEnum = typeof KateImagineV1InputAspectRatioEnum[keyof typeof KateImagineV1InputAspectRatioEnum];
1847
- /**
1848
- *
1849
- * @export
1850
- * @interface KateInpaintV1ControllerInput
1851
- */
1852
- export interface KateInpaintV1ControllerInput {
1853
- /**
1854
- *
1855
- * @type {KateInpaintV1Input}
1856
- * @memberof KateInpaintV1ControllerInput
1857
- */
1858
- 'input': KateInpaintV1Input;
1859
- /**
1860
- *
1861
- * @type {object}
1862
- * @memberof KateInpaintV1ControllerInput
1863
- */
1864
- 'metadata'?: object;
1865
- }
1866
1885
  /**
1867
1886
  *
1868
1887
  * @export
@@ -1930,25 +1949,6 @@ export interface KateInpaintV1Input {
1930
1949
  */
1931
1950
  'guidanceScale'?: number;
1932
1951
  }
1933
- /**
1934
- *
1935
- * @export
1936
- * @interface LindaHauteV1ControllerInput
1937
- */
1938
- export interface LindaHauteV1ControllerInput {
1939
- /**
1940
- *
1941
- * @type {LindaHauteV1Input}
1942
- * @memberof LindaHauteV1ControllerInput
1943
- */
1944
- 'input': LindaHauteV1Input;
1945
- /**
1946
- *
1947
- * @type {object}
1948
- * @memberof LindaHauteV1ControllerInput
1949
- */
1950
- 'metadata'?: object;
1951
- }
1952
1952
  /**
1953
1953
  *
1954
1954
  * @export
@@ -2378,25 +2378,6 @@ export declare const ListStacksParamsDtoOrderByEnum: {
2378
2378
  readonly UpdatedAtDesc: "updatedAt_DESC";
2379
2379
  };
2380
2380
  export type ListStacksParamsDtoOrderByEnum = typeof ListStacksParamsDtoOrderByEnum[keyof typeof ListStacksParamsDtoOrderByEnum];
2381
- /**
2382
- *
2383
- * @export
2384
- * @interface NaomiHauteV1ControllerInput
2385
- */
2386
- export interface NaomiHauteV1ControllerInput {
2387
- /**
2388
- *
2389
- * @type {NaomiHauteV1Input}
2390
- * @memberof NaomiHauteV1ControllerInput
2391
- */
2392
- 'input': NaomiHauteV1Input;
2393
- /**
2394
- *
2395
- * @type {object}
2396
- * @memberof NaomiHauteV1ControllerInput
2397
- */
2398
- 'metadata'?: object;
2399
- }
2400
2381
  /**
2401
2382
  *
2402
2383
  * @export
@@ -2467,34 +2448,34 @@ export interface NaomiHauteV1Input {
2467
2448
  /**
2468
2449
  *
2469
2450
  * @export
2470
- * @interface NegateImageV1ControllerInput
2451
+ * @interface NegateImageV1Input
2471
2452
  */
2472
- export interface NegateImageV1ControllerInput {
2473
- /**
2474
- *
2475
- * @type {NegateImageV1Input}
2476
- * @memberof NegateImageV1ControllerInput
2477
- */
2478
- 'input': NegateImageV1Input;
2453
+ export interface NegateImageV1Input {
2479
2454
  /**
2480
2455
  *
2481
- * @type {object}
2482
- * @memberof NegateImageV1ControllerInput
2456
+ * @type {string}
2457
+ * @memberof NegateImageV1Input
2483
2458
  */
2484
- 'metadata'?: object;
2459
+ 'imageId': string;
2485
2460
  }
2486
2461
  /**
2487
2462
  *
2488
2463
  * @export
2489
- * @interface NegateImageV1Input
2464
+ * @interface NegateImageV1Request
2490
2465
  */
2491
- export interface NegateImageV1Input {
2466
+ export interface NegateImageV1Request {
2492
2467
  /**
2493
2468
  *
2494
- * @type {string}
2495
- * @memberof NegateImageV1Input
2469
+ * @type {NegateImageV1Input}
2470
+ * @memberof NegateImageV1Request
2496
2471
  */
2497
- 'imageId': string;
2472
+ 'input': NegateImageV1Input;
2473
+ /**
2474
+ *
2475
+ * @type {object}
2476
+ * @memberof NegateImageV1Request
2477
+ */
2478
+ 'metadata'?: object;
2498
2479
  }
2499
2480
  /**
2500
2481
  *
@@ -2594,40 +2575,40 @@ export type NegateImageV1ResponseStatusEnum = typeof NegateImageV1ResponseStatus
2594
2575
  /**
2595
2576
  *
2596
2577
  * @export
2597
- * @interface ObjectDetectionV1ControllerInput
2578
+ * @interface ObjectDetectionV1Input
2598
2579
  */
2599
- export interface ObjectDetectionV1ControllerInput {
2580
+ export interface ObjectDetectionV1Input {
2600
2581
  /**
2601
2582
  *
2602
- * @type {ObjectDetectionV1Input}
2603
- * @memberof ObjectDetectionV1ControllerInput
2583
+ * @type {Array<string>}
2584
+ * @memberof ObjectDetectionV1Input
2604
2585
  */
2605
- 'input': ObjectDetectionV1Input;
2586
+ 'labels': Array<string>;
2606
2587
  /**
2607
2588
  *
2608
- * @type {object}
2609
- * @memberof ObjectDetectionV1ControllerInput
2589
+ * @type {string}
2590
+ * @memberof ObjectDetectionV1Input
2610
2591
  */
2611
- 'metadata'?: object;
2592
+ 'imageId': string;
2612
2593
  }
2613
2594
  /**
2614
2595
  *
2615
2596
  * @export
2616
- * @interface ObjectDetectionV1Input
2597
+ * @interface ObjectDetectionV1Request
2617
2598
  */
2618
- export interface ObjectDetectionV1Input {
2599
+ export interface ObjectDetectionV1Request {
2619
2600
  /**
2620
2601
  *
2621
- * @type {Array<string>}
2622
- * @memberof ObjectDetectionV1Input
2602
+ * @type {ObjectDetectionV1Input}
2603
+ * @memberof ObjectDetectionV1Request
2623
2604
  */
2624
- 'labels': Array<string>;
2605
+ 'input': ObjectDetectionV1Input;
2625
2606
  /**
2626
2607
  *
2627
- * @type {string}
2628
- * @memberof ObjectDetectionV1Input
2608
+ * @type {object}
2609
+ * @memberof ObjectDetectionV1Request
2629
2610
  */
2630
- 'imageId': string;
2611
+ 'metadata'?: object;
2631
2612
  }
2632
2613
  /**
2633
2614
  *
@@ -3075,34 +3056,34 @@ export type PoseEntityKindEnum = typeof PoseEntityKindEnum[keyof typeof PoseEnti
3075
3056
  /**
3076
3057
  *
3077
3058
  * @export
3078
- * @interface PoseEstimationV1ControllerInput
3059
+ * @interface PoseEstimationV1Input
3079
3060
  */
3080
- export interface PoseEstimationV1ControllerInput {
3081
- /**
3082
- *
3083
- * @type {PoseEstimationV1Input}
3084
- * @memberof PoseEstimationV1ControllerInput
3085
- */
3086
- 'input': PoseEstimationV1Input;
3061
+ export interface PoseEstimationV1Input {
3087
3062
  /**
3088
3063
  *
3089
- * @type {object}
3090
- * @memberof PoseEstimationV1ControllerInput
3064
+ * @type {string}
3065
+ * @memberof PoseEstimationV1Input
3091
3066
  */
3092
- 'metadata'?: object;
3067
+ 'imageId': string;
3093
3068
  }
3094
3069
  /**
3095
3070
  *
3096
3071
  * @export
3097
- * @interface PoseEstimationV1Input
3072
+ * @interface PoseEstimationV1Request
3098
3073
  */
3099
- export interface PoseEstimationV1Input {
3074
+ export interface PoseEstimationV1Request {
3100
3075
  /**
3101
3076
  *
3102
- * @type {string}
3103
- * @memberof PoseEstimationV1Input
3077
+ * @type {PoseEstimationV1Input}
3078
+ * @memberof PoseEstimationV1Request
3104
3079
  */
3105
- 'imageId': string;
3080
+ 'input': PoseEstimationV1Input;
3081
+ /**
3082
+ *
3083
+ * @type {object}
3084
+ * @memberof PoseEstimationV1Request
3085
+ */
3086
+ 'metadata'?: object;
3106
3087
  }
3107
3088
  /**
3108
3089
  *
@@ -3428,34 +3409,34 @@ export type ResourceEntityKindEnum = typeof ResourceEntityKindEnum[keyof typeof
3428
3409
  /**
3429
3410
  *
3430
3411
  * @export
3431
- * @interface SegmentAnythingEmbeddingsV1ControllerInput
3412
+ * @interface SegmentAnythingEmbeddingsV1Input
3432
3413
  */
3433
- export interface SegmentAnythingEmbeddingsV1ControllerInput {
3434
- /**
3435
- *
3436
- * @type {SegmentAnythingEmbeddingsV1Input}
3437
- * @memberof SegmentAnythingEmbeddingsV1ControllerInput
3438
- */
3439
- 'input': SegmentAnythingEmbeddingsV1Input;
3414
+ export interface SegmentAnythingEmbeddingsV1Input {
3440
3415
  /**
3441
3416
  *
3442
- * @type {object}
3443
- * @memberof SegmentAnythingEmbeddingsV1ControllerInput
3417
+ * @type {string}
3418
+ * @memberof SegmentAnythingEmbeddingsV1Input
3444
3419
  */
3445
- 'metadata'?: object;
3420
+ 'imageId': string;
3446
3421
  }
3447
3422
  /**
3448
3423
  *
3449
3424
  * @export
3450
- * @interface SegmentAnythingEmbeddingsV1Input
3425
+ * @interface SegmentAnythingEmbeddingsV1Request
3451
3426
  */
3452
- export interface SegmentAnythingEmbeddingsV1Input {
3427
+ export interface SegmentAnythingEmbeddingsV1Request {
3453
3428
  /**
3454
3429
  *
3455
- * @type {string}
3456
- * @memberof SegmentAnythingEmbeddingsV1Input
3430
+ * @type {SegmentAnythingEmbeddingsV1Input}
3431
+ * @memberof SegmentAnythingEmbeddingsV1Request
3457
3432
  */
3458
- 'imageId': string;
3433
+ 'input': SegmentAnythingEmbeddingsV1Input;
3434
+ /**
3435
+ *
3436
+ * @type {object}
3437
+ * @memberof SegmentAnythingEmbeddingsV1Request
3438
+ */
3439
+ 'metadata'?: object;
3459
3440
  }
3460
3441
  /**
3461
3442
  *
@@ -3555,40 +3536,46 @@ export type SegmentAnythingEmbeddingsV1ResponseStatusEnum = typeof SegmentAnythi
3555
3536
  /**
3556
3537
  *
3557
3538
  * @export
3558
- * @interface SegmentAnythingMaskV1ControllerInput
3539
+ * @interface SegmentAnythingMaskV1Input
3559
3540
  */
3560
- export interface SegmentAnythingMaskV1ControllerInput {
3541
+ export interface SegmentAnythingMaskV1Input {
3561
3542
  /**
3562
3543
  *
3563
- * @type {SegmentAnythingMaskV1Input}
3564
- * @memberof SegmentAnythingMaskV1ControllerInput
3544
+ * @type {string}
3545
+ * @memberof SegmentAnythingMaskV1Input
3565
3546
  */
3566
- 'input': SegmentAnythingMaskV1Input;
3547
+ 'imageId': string;
3567
3548
  /**
3568
3549
  *
3569
- * @type {object}
3570
- * @memberof SegmentAnythingMaskV1ControllerInput
3550
+ * @type {Array<number>}
3551
+ * @memberof SegmentAnythingMaskV1Input
3571
3552
  */
3572
- 'metadata'?: object;
3553
+ 'box': Array<number>;
3554
+ /**
3555
+ *
3556
+ * @type {number}
3557
+ * @memberof SegmentAnythingMaskV1Input
3558
+ */
3559
+ 'smoothness'?: number;
3573
3560
  }
3574
3561
  /**
3575
3562
  *
3576
3563
  * @export
3577
- * @interface SegmentAnythingMaskV1Input
3564
+ * @interface SegmentAnythingMaskV1Request
3578
3565
  */
3579
- export interface SegmentAnythingMaskV1Input {
3566
+ export interface SegmentAnythingMaskV1Request {
3580
3567
  /**
3581
3568
  *
3582
- * @type {string}
3583
- * @memberof SegmentAnythingMaskV1Input
3569
+ * @type {SegmentAnythingMaskV1Input}
3570
+ * @memberof SegmentAnythingMaskV1Request
3584
3571
  */
3585
- 'imageId': string;
3572
+ 'input': SegmentAnythingMaskV1Input;
3586
3573
  /**
3587
3574
  *
3588
- * @type {Array<number>}
3589
- * @memberof SegmentAnythingMaskV1Input
3575
+ * @type {object}
3576
+ * @memberof SegmentAnythingMaskV1Request
3590
3577
  */
3591
- 'box': Array<number>;
3578
+ 'metadata'?: object;
3592
3579
  }
3593
3580
  /**
3594
3581
  *
@@ -3949,34 +3936,34 @@ export interface UpdateStorageRecordParamsDto {
3949
3936
  /**
3950
3937
  *
3951
3938
  * @export
3952
- * @interface UpscaleV1ControllerInput
3939
+ * @interface UpscaleV1Input
3953
3940
  */
3954
- export interface UpscaleV1ControllerInput {
3955
- /**
3956
- *
3957
- * @type {UpscaleV1Input}
3958
- * @memberof UpscaleV1ControllerInput
3959
- */
3960
- 'input': UpscaleV1Input;
3941
+ export interface UpscaleV1Input {
3961
3942
  /**
3962
3943
  *
3963
- * @type {object}
3964
- * @memberof UpscaleV1ControllerInput
3944
+ * @type {string}
3945
+ * @memberof UpscaleV1Input
3965
3946
  */
3966
- 'metadata'?: object;
3947
+ 'imageId': string;
3967
3948
  }
3968
3949
  /**
3969
3950
  *
3970
3951
  * @export
3971
- * @interface UpscaleV1Input
3952
+ * @interface UpscaleV1Request
3972
3953
  */
3973
- export interface UpscaleV1Input {
3954
+ export interface UpscaleV1Request {
3974
3955
  /**
3975
3956
  *
3976
- * @type {string}
3977
- * @memberof UpscaleV1Input
3957
+ * @type {UpscaleV1Input}
3958
+ * @memberof UpscaleV1Request
3978
3959
  */
3979
- 'imageId': string;
3960
+ 'input': UpscaleV1Input;
3961
+ /**
3962
+ *
3963
+ * @type {object}
3964
+ * @memberof UpscaleV1Request
3965
+ */
3966
+ 'metadata'?: object;
3980
3967
  }
3981
3968
  /**
3982
3969
  *
@@ -4073,6 +4060,25 @@ export declare const UpscaleV1ResponseStatusEnum: {
4073
4060
  readonly Failed: "failed";
4074
4061
  };
4075
4062
  export type UpscaleV1ResponseStatusEnum = typeof UpscaleV1ResponseStatusEnum[keyof typeof UpscaleV1ResponseStatusEnum];
4063
+ /**
4064
+ *
4065
+ * @export
4066
+ * @interface VtonGiseleV1Request
4067
+ */
4068
+ export interface VtonGiseleV1Request {
4069
+ /**
4070
+ *
4071
+ * @type {GiseleVtonV1Input}
4072
+ * @memberof VtonGiseleV1Request
4073
+ */
4074
+ 'input': GiseleVtonV1Input;
4075
+ /**
4076
+ *
4077
+ * @type {object}
4078
+ * @memberof VtonGiseleV1Request
4079
+ */
4080
+ 'metadata'?: object;
4081
+ }
4076
4082
  /**
4077
4083
  *
4078
4084
  * @export
@@ -4758,102 +4764,102 @@ export declare const CallApiAxiosParamCreator: (configuration?: Configuration) =
4758
4764
  callControllerCallOperationsMetadataUpdateV1: (updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4759
4765
  /**
4760
4766
  *
4761
- * @param {CompositeV1ControllerInput} compositeV1ControllerInput
4767
+ * @param {CompositeV1Request} compositeV1Request
4762
4768
  * @param {*} [options] Override http request option.
4763
4769
  * @throws {RequiredError}
4764
4770
  */
4765
- callControllerCallOperationsRunCompositeV1V1: (compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4771
+ callControllerCallOperationsRunCompositeV1V1: (compositeV1Request: CompositeV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4766
4772
  /**
4767
4773
  *
4768
- * @param {CutV1ControllerInput} cutV1ControllerInput
4774
+ * @param {CutV1Request} cutV1Request
4769
4775
  * @param {*} [options] Override http request option.
4770
4776
  * @throws {RequiredError}
4771
4777
  */
4772
- callControllerCallOperationsRunCutV1V1: (cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4778
+ callControllerCallOperationsRunCutV1V1: (cutV1Request: CutV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4773
4779
  /**
4774
4780
  *
4775
- * @param {GPTV1ControllerInput} gPTV1ControllerInput
4781
+ * @param {GptV1Request} gptV1Request
4776
4782
  * @param {*} [options] Override http request option.
4777
4783
  * @throws {RequiredError}
4778
4784
  */
4779
- callControllerCallOperationsRunGptV1V1: (gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4785
+ callControllerCallOperationsRunGptV1V1: (gptV1Request: GptV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4780
4786
  /**
4781
4787
  *
4782
- * @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
4788
+ * @param {HauteLindaV1Request} hauteLindaV1Request
4783
4789
  * @param {*} [options] Override http request option.
4784
4790
  * @throws {RequiredError}
4785
4791
  */
4786
- callControllerCallOperationsRunHauteLindaV1V1: (lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4792
+ callControllerCallOperationsRunHauteLindaV1V1: (hauteLindaV1Request: HauteLindaV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4787
4793
  /**
4788
4794
  *
4789
- * @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
4795
+ * @param {HauteNaomiV1Request} hauteNaomiV1Request
4790
4796
  * @param {*} [options] Override http request option.
4791
4797
  * @throws {RequiredError}
4792
4798
  */
4793
- callControllerCallOperationsRunHauteNaomiV1V1: (naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4799
+ callControllerCallOperationsRunHauteNaomiV1V1: (hauteNaomiV1Request: HauteNaomiV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4794
4800
  /**
4795
4801
  *
4796
- * @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
4802
+ * @param {ImagineKateV1Request} imagineKateV1Request
4797
4803
  * @param {*} [options] Override http request option.
4798
4804
  * @throws {RequiredError}
4799
4805
  */
4800
- callControllerCallOperationsRunImagineKateV1V1: (kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4806
+ callControllerCallOperationsRunImagineKateV1V1: (imagineKateV1Request: ImagineKateV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4801
4807
  /**
4802
4808
  *
4803
- * @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
4809
+ * @param {InpaintKateV1Request} inpaintKateV1Request
4804
4810
  * @param {*} [options] Override http request option.
4805
4811
  * @throws {RequiredError}
4806
4812
  */
4807
- callControllerCallOperationsRunInpaintKateV1V1: (kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4813
+ callControllerCallOperationsRunInpaintKateV1V1: (inpaintKateV1Request: InpaintKateV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4808
4814
  /**
4809
4815
  *
4810
- * @param {NegateImageV1ControllerInput} negateImageV1ControllerInput
4816
+ * @param {NegateImageV1Request} negateImageV1Request
4811
4817
  * @param {*} [options] Override http request option.
4812
4818
  * @throws {RequiredError}
4813
4819
  */
4814
- callControllerCallOperationsRunNegateImageV1V1: (negateImageV1ControllerInput: NegateImageV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4820
+ callControllerCallOperationsRunNegateImageV1V1: (negateImageV1Request: NegateImageV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4815
4821
  /**
4816
4822
  *
4817
- * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
4823
+ * @param {ObjectDetectionV1Request} objectDetectionV1Request
4818
4824
  * @param {*} [options] Override http request option.
4819
4825
  * @throws {RequiredError}
4820
4826
  */
4821
- callControllerCallOperationsRunObjectDetectionV1V1: (objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4827
+ callControllerCallOperationsRunObjectDetectionV1V1: (objectDetectionV1Request: ObjectDetectionV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4822
4828
  /**
4823
4829
  *
4824
- * @param {PoseEstimationV1ControllerInput} poseEstimationV1ControllerInput
4830
+ * @param {PoseEstimationV1Request} poseEstimationV1Request
4825
4831
  * @param {*} [options] Override http request option.
4826
4832
  * @throws {RequiredError}
4827
4833
  */
4828
- callControllerCallOperationsRunPoseEstimationV1V1: (poseEstimationV1ControllerInput: PoseEstimationV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4834
+ callControllerCallOperationsRunPoseEstimationV1V1: (poseEstimationV1Request: PoseEstimationV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4829
4835
  /**
4830
4836
  *
4831
- * @param {SegmentAnythingEmbeddingsV1ControllerInput} segmentAnythingEmbeddingsV1ControllerInput
4837
+ * @param {SegmentAnythingEmbeddingsV1Request} segmentAnythingEmbeddingsV1Request
4832
4838
  * @param {*} [options] Override http request option.
4833
4839
  * @throws {RequiredError}
4834
4840
  */
4835
- callControllerCallOperationsRunSegmentAnythingEmbeddingsV1V1: (segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4841
+ callControllerCallOperationsRunSegmentAnythingEmbeddingsV1V1: (segmentAnythingEmbeddingsV1Request: SegmentAnythingEmbeddingsV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4836
4842
  /**
4837
4843
  *
4838
- * @param {SegmentAnythingMaskV1ControllerInput} segmentAnythingMaskV1ControllerInput
4844
+ * @param {SegmentAnythingMaskV1Request} segmentAnythingMaskV1Request
4839
4845
  * @param {*} [options] Override http request option.
4840
4846
  * @throws {RequiredError}
4841
4847
  */
4842
- callControllerCallOperationsRunSegmentAnythingMaskV1V1: (segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4848
+ callControllerCallOperationsRunSegmentAnythingMaskV1V1: (segmentAnythingMaskV1Request: SegmentAnythingMaskV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4843
4849
  /**
4844
4850
  *
4845
- * @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
4851
+ * @param {UpscaleV1Request} upscaleV1Request
4846
4852
  * @param {*} [options] Override http request option.
4847
4853
  * @throws {RequiredError}
4848
4854
  */
4849
- callControllerCallOperationsRunUpscaleV1V1: (upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4855
+ callControllerCallOperationsRunUpscaleV1V1: (upscaleV1Request: UpscaleV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4850
4856
  /**
4851
4857
  *
4852
- * @param {GiseleVtonV1ControllerInput} giseleVtonV1ControllerInput
4858
+ * @param {VtonGiseleV1Request} vtonGiseleV1Request
4853
4859
  * @param {*} [options] Override http request option.
4854
4860
  * @throws {RequiredError}
4855
4861
  */
4856
- callControllerCallOperationsRunVtonGiseleV1V1: (giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4862
+ callControllerCallOperationsRunVtonGiseleV1V1: (vtonGiseleV1Request: VtonGiseleV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4857
4863
  /**
4858
4864
  *
4859
4865
  * @param {WaitOperationParamsDto} waitOperationParamsDto
@@ -5156,102 +5162,102 @@ export declare const CallApiFp: (configuration?: Configuration) => {
5156
5162
  callControllerCallOperationsMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
5157
5163
  /**
5158
5164
  *
5159
- * @param {CompositeV1ControllerInput} compositeV1ControllerInput
5165
+ * @param {CompositeV1Request} compositeV1Request
5160
5166
  * @param {*} [options] Override http request option.
5161
5167
  * @throws {RequiredError}
5162
5168
  */
5163
- callControllerCallOperationsRunCompositeV1V1(compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CompositeV1Response>>;
5169
+ callControllerCallOperationsRunCompositeV1V1(compositeV1Request: CompositeV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CompositeV1Response>>;
5164
5170
  /**
5165
5171
  *
5166
- * @param {CutV1ControllerInput} cutV1ControllerInput
5172
+ * @param {CutV1Request} cutV1Request
5167
5173
  * @param {*} [options] Override http request option.
5168
5174
  * @throws {RequiredError}
5169
5175
  */
5170
- callControllerCallOperationsRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CutV1Response>>;
5176
+ callControllerCallOperationsRunCutV1V1(cutV1Request: CutV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CutV1Response>>;
5171
5177
  /**
5172
5178
  *
5173
- * @param {GPTV1ControllerInput} gPTV1ControllerInput
5179
+ * @param {GptV1Request} gptV1Request
5174
5180
  * @param {*} [options] Override http request option.
5175
5181
  * @throws {RequiredError}
5176
5182
  */
5177
- callControllerCallOperationsRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GptV1Response>>;
5183
+ callControllerCallOperationsRunGptV1V1(gptV1Request: GptV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GptV1Response>>;
5178
5184
  /**
5179
5185
  *
5180
- * @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
5186
+ * @param {HauteLindaV1Request} hauteLindaV1Request
5181
5187
  * @param {*} [options] Override http request option.
5182
5188
  * @throws {RequiredError}
5183
5189
  */
5184
- callControllerCallOperationsRunHauteLindaV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HauteLindaV1Response>>;
5190
+ callControllerCallOperationsRunHauteLindaV1V1(hauteLindaV1Request: HauteLindaV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HauteLindaV1Response>>;
5185
5191
  /**
5186
5192
  *
5187
- * @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
5193
+ * @param {HauteNaomiV1Request} hauteNaomiV1Request
5188
5194
  * @param {*} [options] Override http request option.
5189
5195
  * @throws {RequiredError}
5190
5196
  */
5191
- callControllerCallOperationsRunHauteNaomiV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HauteNaomiV1Response>>;
5197
+ callControllerCallOperationsRunHauteNaomiV1V1(hauteNaomiV1Request: HauteNaomiV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HauteNaomiV1Response>>;
5192
5198
  /**
5193
5199
  *
5194
- * @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
5200
+ * @param {ImagineKateV1Request} imagineKateV1Request
5195
5201
  * @param {*} [options] Override http request option.
5196
5202
  * @throws {RequiredError}
5197
5203
  */
5198
- callControllerCallOperationsRunImagineKateV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImagineKateV1Response>>;
5204
+ callControllerCallOperationsRunImagineKateV1V1(imagineKateV1Request: ImagineKateV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImagineKateV1Response>>;
5199
5205
  /**
5200
5206
  *
5201
- * @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
5207
+ * @param {InpaintKateV1Request} inpaintKateV1Request
5202
5208
  * @param {*} [options] Override http request option.
5203
5209
  * @throws {RequiredError}
5204
5210
  */
5205
- callControllerCallOperationsRunInpaintKateV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InpaintKateV1Response>>;
5211
+ callControllerCallOperationsRunInpaintKateV1V1(inpaintKateV1Request: InpaintKateV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InpaintKateV1Response>>;
5206
5212
  /**
5207
5213
  *
5208
- * @param {NegateImageV1ControllerInput} negateImageV1ControllerInput
5214
+ * @param {NegateImageV1Request} negateImageV1Request
5209
5215
  * @param {*} [options] Override http request option.
5210
5216
  * @throws {RequiredError}
5211
5217
  */
5212
- callControllerCallOperationsRunNegateImageV1V1(negateImageV1ControllerInput: NegateImageV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NegateImageV1Response>>;
5218
+ callControllerCallOperationsRunNegateImageV1V1(negateImageV1Request: NegateImageV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NegateImageV1Response>>;
5213
5219
  /**
5214
5220
  *
5215
- * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
5221
+ * @param {ObjectDetectionV1Request} objectDetectionV1Request
5216
5222
  * @param {*} [options] Override http request option.
5217
5223
  * @throws {RequiredError}
5218
5224
  */
5219
- callControllerCallOperationsRunObjectDetectionV1V1(objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ObjectDetectionV1Response>>;
5225
+ callControllerCallOperationsRunObjectDetectionV1V1(objectDetectionV1Request: ObjectDetectionV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ObjectDetectionV1Response>>;
5220
5226
  /**
5221
5227
  *
5222
- * @param {PoseEstimationV1ControllerInput} poseEstimationV1ControllerInput
5228
+ * @param {PoseEstimationV1Request} poseEstimationV1Request
5223
5229
  * @param {*} [options] Override http request option.
5224
5230
  * @throws {RequiredError}
5225
5231
  */
5226
- callControllerCallOperationsRunPoseEstimationV1V1(poseEstimationV1ControllerInput: PoseEstimationV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoseEstimationV1Response>>;
5232
+ callControllerCallOperationsRunPoseEstimationV1V1(poseEstimationV1Request: PoseEstimationV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoseEstimationV1Response>>;
5227
5233
  /**
5228
5234
  *
5229
- * @param {SegmentAnythingEmbeddingsV1ControllerInput} segmentAnythingEmbeddingsV1ControllerInput
5235
+ * @param {SegmentAnythingEmbeddingsV1Request} segmentAnythingEmbeddingsV1Request
5230
5236
  * @param {*} [options] Override http request option.
5231
5237
  * @throws {RequiredError}
5232
5238
  */
5233
- callControllerCallOperationsRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SegmentAnythingEmbeddingsV1Response>>;
5239
+ callControllerCallOperationsRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1Request: SegmentAnythingEmbeddingsV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SegmentAnythingEmbeddingsV1Response>>;
5234
5240
  /**
5235
5241
  *
5236
- * @param {SegmentAnythingMaskV1ControllerInput} segmentAnythingMaskV1ControllerInput
5242
+ * @param {SegmentAnythingMaskV1Request} segmentAnythingMaskV1Request
5237
5243
  * @param {*} [options] Override http request option.
5238
5244
  * @throws {RequiredError}
5239
5245
  */
5240
- callControllerCallOperationsRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SegmentAnythingMaskV1Response>>;
5246
+ callControllerCallOperationsRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1Request: SegmentAnythingMaskV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SegmentAnythingMaskV1Response>>;
5241
5247
  /**
5242
5248
  *
5243
- * @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
5249
+ * @param {UpscaleV1Request} upscaleV1Request
5244
5250
  * @param {*} [options] Override http request option.
5245
5251
  * @throws {RequiredError}
5246
5252
  */
5247
- callControllerCallOperationsRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpscaleV1Response>>;
5253
+ callControllerCallOperationsRunUpscaleV1V1(upscaleV1Request: UpscaleV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpscaleV1Response>>;
5248
5254
  /**
5249
5255
  *
5250
- * @param {GiseleVtonV1ControllerInput} giseleVtonV1ControllerInput
5256
+ * @param {VtonGiseleV1Request} vtonGiseleV1Request
5251
5257
  * @param {*} [options] Override http request option.
5252
5258
  * @throws {RequiredError}
5253
5259
  */
5254
- callControllerCallOperationsRunVtonGiseleV1V1(giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VtonGiseleV1Response>>;
5260
+ callControllerCallOperationsRunVtonGiseleV1V1(vtonGiseleV1Request: VtonGiseleV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VtonGiseleV1Response>>;
5255
5261
  /**
5256
5262
  *
5257
5263
  * @param {WaitOperationParamsDto} waitOperationParamsDto
@@ -5554,102 +5560,102 @@ export declare const CallApiFactory: (configuration?: Configuration, basePath?:
5554
5560
  callControllerCallOperationsMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
5555
5561
  /**
5556
5562
  *
5557
- * @param {CompositeV1ControllerInput} compositeV1ControllerInput
5563
+ * @param {CompositeV1Request} compositeV1Request
5558
5564
  * @param {*} [options] Override http request option.
5559
5565
  * @throws {RequiredError}
5560
5566
  */
5561
- callControllerCallOperationsRunCompositeV1V1(compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<CompositeV1Response>;
5567
+ callControllerCallOperationsRunCompositeV1V1(compositeV1Request: CompositeV1Request, options?: RawAxiosRequestConfig): AxiosPromise<CompositeV1Response>;
5562
5568
  /**
5563
5569
  *
5564
- * @param {CutV1ControllerInput} cutV1ControllerInput
5570
+ * @param {CutV1Request} cutV1Request
5565
5571
  * @param {*} [options] Override http request option.
5566
5572
  * @throws {RequiredError}
5567
5573
  */
5568
- callControllerCallOperationsRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<CutV1Response>;
5574
+ callControllerCallOperationsRunCutV1V1(cutV1Request: CutV1Request, options?: RawAxiosRequestConfig): AxiosPromise<CutV1Response>;
5569
5575
  /**
5570
5576
  *
5571
- * @param {GPTV1ControllerInput} gPTV1ControllerInput
5577
+ * @param {GptV1Request} gptV1Request
5572
5578
  * @param {*} [options] Override http request option.
5573
5579
  * @throws {RequiredError}
5574
5580
  */
5575
- callControllerCallOperationsRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<GptV1Response>;
5581
+ callControllerCallOperationsRunGptV1V1(gptV1Request: GptV1Request, options?: RawAxiosRequestConfig): AxiosPromise<GptV1Response>;
5576
5582
  /**
5577
5583
  *
5578
- * @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
5584
+ * @param {HauteLindaV1Request} hauteLindaV1Request
5579
5585
  * @param {*} [options] Override http request option.
5580
5586
  * @throws {RequiredError}
5581
5587
  */
5582
- callControllerCallOperationsRunHauteLindaV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<HauteLindaV1Response>;
5588
+ callControllerCallOperationsRunHauteLindaV1V1(hauteLindaV1Request: HauteLindaV1Request, options?: RawAxiosRequestConfig): AxiosPromise<HauteLindaV1Response>;
5583
5589
  /**
5584
5590
  *
5585
- * @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
5591
+ * @param {HauteNaomiV1Request} hauteNaomiV1Request
5586
5592
  * @param {*} [options] Override http request option.
5587
5593
  * @throws {RequiredError}
5588
5594
  */
5589
- callControllerCallOperationsRunHauteNaomiV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<HauteNaomiV1Response>;
5595
+ callControllerCallOperationsRunHauteNaomiV1V1(hauteNaomiV1Request: HauteNaomiV1Request, options?: RawAxiosRequestConfig): AxiosPromise<HauteNaomiV1Response>;
5590
5596
  /**
5591
5597
  *
5592
- * @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
5598
+ * @param {ImagineKateV1Request} imagineKateV1Request
5593
5599
  * @param {*} [options] Override http request option.
5594
5600
  * @throws {RequiredError}
5595
5601
  */
5596
- callControllerCallOperationsRunImagineKateV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<ImagineKateV1Response>;
5602
+ callControllerCallOperationsRunImagineKateV1V1(imagineKateV1Request: ImagineKateV1Request, options?: RawAxiosRequestConfig): AxiosPromise<ImagineKateV1Response>;
5597
5603
  /**
5598
5604
  *
5599
- * @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
5605
+ * @param {InpaintKateV1Request} inpaintKateV1Request
5600
5606
  * @param {*} [options] Override http request option.
5601
5607
  * @throws {RequiredError}
5602
5608
  */
5603
- callControllerCallOperationsRunInpaintKateV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<InpaintKateV1Response>;
5609
+ callControllerCallOperationsRunInpaintKateV1V1(inpaintKateV1Request: InpaintKateV1Request, options?: RawAxiosRequestConfig): AxiosPromise<InpaintKateV1Response>;
5604
5610
  /**
5605
5611
  *
5606
- * @param {NegateImageV1ControllerInput} negateImageV1ControllerInput
5612
+ * @param {NegateImageV1Request} negateImageV1Request
5607
5613
  * @param {*} [options] Override http request option.
5608
5614
  * @throws {RequiredError}
5609
5615
  */
5610
- callControllerCallOperationsRunNegateImageV1V1(negateImageV1ControllerInput: NegateImageV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<NegateImageV1Response>;
5616
+ callControllerCallOperationsRunNegateImageV1V1(negateImageV1Request: NegateImageV1Request, options?: RawAxiosRequestConfig): AxiosPromise<NegateImageV1Response>;
5611
5617
  /**
5612
5618
  *
5613
- * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
5619
+ * @param {ObjectDetectionV1Request} objectDetectionV1Request
5614
5620
  * @param {*} [options] Override http request option.
5615
5621
  * @throws {RequiredError}
5616
5622
  */
5617
- callControllerCallOperationsRunObjectDetectionV1V1(objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<ObjectDetectionV1Response>;
5623
+ callControllerCallOperationsRunObjectDetectionV1V1(objectDetectionV1Request: ObjectDetectionV1Request, options?: RawAxiosRequestConfig): AxiosPromise<ObjectDetectionV1Response>;
5618
5624
  /**
5619
5625
  *
5620
- * @param {PoseEstimationV1ControllerInput} poseEstimationV1ControllerInput
5626
+ * @param {PoseEstimationV1Request} poseEstimationV1Request
5621
5627
  * @param {*} [options] Override http request option.
5622
5628
  * @throws {RequiredError}
5623
5629
  */
5624
- callControllerCallOperationsRunPoseEstimationV1V1(poseEstimationV1ControllerInput: PoseEstimationV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<PoseEstimationV1Response>;
5630
+ callControllerCallOperationsRunPoseEstimationV1V1(poseEstimationV1Request: PoseEstimationV1Request, options?: RawAxiosRequestConfig): AxiosPromise<PoseEstimationV1Response>;
5625
5631
  /**
5626
5632
  *
5627
- * @param {SegmentAnythingEmbeddingsV1ControllerInput} segmentAnythingEmbeddingsV1ControllerInput
5633
+ * @param {SegmentAnythingEmbeddingsV1Request} segmentAnythingEmbeddingsV1Request
5628
5634
  * @param {*} [options] Override http request option.
5629
5635
  * @throws {RequiredError}
5630
5636
  */
5631
- callControllerCallOperationsRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<SegmentAnythingEmbeddingsV1Response>;
5637
+ callControllerCallOperationsRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1Request: SegmentAnythingEmbeddingsV1Request, options?: RawAxiosRequestConfig): AxiosPromise<SegmentAnythingEmbeddingsV1Response>;
5632
5638
  /**
5633
5639
  *
5634
- * @param {SegmentAnythingMaskV1ControllerInput} segmentAnythingMaskV1ControllerInput
5640
+ * @param {SegmentAnythingMaskV1Request} segmentAnythingMaskV1Request
5635
5641
  * @param {*} [options] Override http request option.
5636
5642
  * @throws {RequiredError}
5637
5643
  */
5638
- callControllerCallOperationsRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<SegmentAnythingMaskV1Response>;
5644
+ callControllerCallOperationsRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1Request: SegmentAnythingMaskV1Request, options?: RawAxiosRequestConfig): AxiosPromise<SegmentAnythingMaskV1Response>;
5639
5645
  /**
5640
5646
  *
5641
- * @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
5647
+ * @param {UpscaleV1Request} upscaleV1Request
5642
5648
  * @param {*} [options] Override http request option.
5643
5649
  * @throws {RequiredError}
5644
5650
  */
5645
- callControllerCallOperationsRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<UpscaleV1Response>;
5651
+ callControllerCallOperationsRunUpscaleV1V1(upscaleV1Request: UpscaleV1Request, options?: RawAxiosRequestConfig): AxiosPromise<UpscaleV1Response>;
5646
5652
  /**
5647
5653
  *
5648
- * @param {GiseleVtonV1ControllerInput} giseleVtonV1ControllerInput
5654
+ * @param {VtonGiseleV1Request} vtonGiseleV1Request
5649
5655
  * @param {*} [options] Override http request option.
5650
5656
  * @throws {RequiredError}
5651
5657
  */
5652
- callControllerCallOperationsRunVtonGiseleV1V1(giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<VtonGiseleV1Response>;
5658
+ callControllerCallOperationsRunVtonGiseleV1V1(vtonGiseleV1Request: VtonGiseleV1Request, options?: RawAxiosRequestConfig): AxiosPromise<VtonGiseleV1Response>;
5653
5659
  /**
5654
5660
  *
5655
5661
  * @param {WaitOperationParamsDto} waitOperationParamsDto
@@ -5980,116 +5986,116 @@ export declare class CallApi extends BaseAPI {
5980
5986
  callControllerCallOperationsMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
5981
5987
  /**
5982
5988
  *
5983
- * @param {CompositeV1ControllerInput} compositeV1ControllerInput
5989
+ * @param {CompositeV1Request} compositeV1Request
5984
5990
  * @param {*} [options] Override http request option.
5985
5991
  * @throws {RequiredError}
5986
5992
  * @memberof CallApi
5987
5993
  */
5988
- callControllerCallOperationsRunCompositeV1V1(compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompositeV1Response, any>>;
5994
+ callControllerCallOperationsRunCompositeV1V1(compositeV1Request: CompositeV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompositeV1Response, any>>;
5989
5995
  /**
5990
5996
  *
5991
- * @param {CutV1ControllerInput} cutV1ControllerInput
5997
+ * @param {CutV1Request} cutV1Request
5992
5998
  * @param {*} [options] Override http request option.
5993
5999
  * @throws {RequiredError}
5994
6000
  * @memberof CallApi
5995
6001
  */
5996
- callControllerCallOperationsRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CutV1Response, any>>;
6002
+ callControllerCallOperationsRunCutV1V1(cutV1Request: CutV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CutV1Response, any>>;
5997
6003
  /**
5998
6004
  *
5999
- * @param {GPTV1ControllerInput} gPTV1ControllerInput
6005
+ * @param {GptV1Request} gptV1Request
6000
6006
  * @param {*} [options] Override http request option.
6001
6007
  * @throws {RequiredError}
6002
6008
  * @memberof CallApi
6003
6009
  */
6004
- callControllerCallOperationsRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GptV1Response, any>>;
6010
+ callControllerCallOperationsRunGptV1V1(gptV1Request: GptV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GptV1Response, any>>;
6005
6011
  /**
6006
6012
  *
6007
- * @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
6013
+ * @param {HauteLindaV1Request} hauteLindaV1Request
6008
6014
  * @param {*} [options] Override http request option.
6009
6015
  * @throws {RequiredError}
6010
6016
  * @memberof CallApi
6011
6017
  */
6012
- callControllerCallOperationsRunHauteLindaV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HauteLindaV1Response, any>>;
6018
+ callControllerCallOperationsRunHauteLindaV1V1(hauteLindaV1Request: HauteLindaV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HauteLindaV1Response, any>>;
6013
6019
  /**
6014
6020
  *
6015
- * @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
6021
+ * @param {HauteNaomiV1Request} hauteNaomiV1Request
6016
6022
  * @param {*} [options] Override http request option.
6017
6023
  * @throws {RequiredError}
6018
6024
  * @memberof CallApi
6019
6025
  */
6020
- callControllerCallOperationsRunHauteNaomiV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HauteNaomiV1Response, any>>;
6026
+ callControllerCallOperationsRunHauteNaomiV1V1(hauteNaomiV1Request: HauteNaomiV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HauteNaomiV1Response, any>>;
6021
6027
  /**
6022
6028
  *
6023
- * @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
6029
+ * @param {ImagineKateV1Request} imagineKateV1Request
6024
6030
  * @param {*} [options] Override http request option.
6025
6031
  * @throws {RequiredError}
6026
6032
  * @memberof CallApi
6027
6033
  */
6028
- callControllerCallOperationsRunImagineKateV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImagineKateV1Response, any>>;
6034
+ callControllerCallOperationsRunImagineKateV1V1(imagineKateV1Request: ImagineKateV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImagineKateV1Response, any>>;
6029
6035
  /**
6030
6036
  *
6031
- * @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
6037
+ * @param {InpaintKateV1Request} inpaintKateV1Request
6032
6038
  * @param {*} [options] Override http request option.
6033
6039
  * @throws {RequiredError}
6034
6040
  * @memberof CallApi
6035
6041
  */
6036
- callControllerCallOperationsRunInpaintKateV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InpaintKateV1Response, any>>;
6042
+ callControllerCallOperationsRunInpaintKateV1V1(inpaintKateV1Request: InpaintKateV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InpaintKateV1Response, any>>;
6037
6043
  /**
6038
6044
  *
6039
- * @param {NegateImageV1ControllerInput} negateImageV1ControllerInput
6045
+ * @param {NegateImageV1Request} negateImageV1Request
6040
6046
  * @param {*} [options] Override http request option.
6041
6047
  * @throws {RequiredError}
6042
6048
  * @memberof CallApi
6043
6049
  */
6044
- callControllerCallOperationsRunNegateImageV1V1(negateImageV1ControllerInput: NegateImageV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NegateImageV1Response, any>>;
6050
+ callControllerCallOperationsRunNegateImageV1V1(negateImageV1Request: NegateImageV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NegateImageV1Response, any>>;
6045
6051
  /**
6046
6052
  *
6047
- * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
6053
+ * @param {ObjectDetectionV1Request} objectDetectionV1Request
6048
6054
  * @param {*} [options] Override http request option.
6049
6055
  * @throws {RequiredError}
6050
6056
  * @memberof CallApi
6051
6057
  */
6052
- callControllerCallOperationsRunObjectDetectionV1V1(objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ObjectDetectionV1Response, any>>;
6058
+ callControllerCallOperationsRunObjectDetectionV1V1(objectDetectionV1Request: ObjectDetectionV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ObjectDetectionV1Response, any>>;
6053
6059
  /**
6054
6060
  *
6055
- * @param {PoseEstimationV1ControllerInput} poseEstimationV1ControllerInput
6061
+ * @param {PoseEstimationV1Request} poseEstimationV1Request
6056
6062
  * @param {*} [options] Override http request option.
6057
6063
  * @throws {RequiredError}
6058
6064
  * @memberof CallApi
6059
6065
  */
6060
- callControllerCallOperationsRunPoseEstimationV1V1(poseEstimationV1ControllerInput: PoseEstimationV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PoseEstimationV1Response, any>>;
6066
+ callControllerCallOperationsRunPoseEstimationV1V1(poseEstimationV1Request: PoseEstimationV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PoseEstimationV1Response, any>>;
6061
6067
  /**
6062
6068
  *
6063
- * @param {SegmentAnythingEmbeddingsV1ControllerInput} segmentAnythingEmbeddingsV1ControllerInput
6069
+ * @param {SegmentAnythingEmbeddingsV1Request} segmentAnythingEmbeddingsV1Request
6064
6070
  * @param {*} [options] Override http request option.
6065
6071
  * @throws {RequiredError}
6066
6072
  * @memberof CallApi
6067
6073
  */
6068
- callControllerCallOperationsRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SegmentAnythingEmbeddingsV1Response, any>>;
6074
+ callControllerCallOperationsRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1Request: SegmentAnythingEmbeddingsV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SegmentAnythingEmbeddingsV1Response, any>>;
6069
6075
  /**
6070
6076
  *
6071
- * @param {SegmentAnythingMaskV1ControllerInput} segmentAnythingMaskV1ControllerInput
6077
+ * @param {SegmentAnythingMaskV1Request} segmentAnythingMaskV1Request
6072
6078
  * @param {*} [options] Override http request option.
6073
6079
  * @throws {RequiredError}
6074
6080
  * @memberof CallApi
6075
6081
  */
6076
- callControllerCallOperationsRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SegmentAnythingMaskV1Response, any>>;
6082
+ callControllerCallOperationsRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1Request: SegmentAnythingMaskV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SegmentAnythingMaskV1Response, any>>;
6077
6083
  /**
6078
6084
  *
6079
- * @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
6085
+ * @param {UpscaleV1Request} upscaleV1Request
6080
6086
  * @param {*} [options] Override http request option.
6081
6087
  * @throws {RequiredError}
6082
6088
  * @memberof CallApi
6083
6089
  */
6084
- callControllerCallOperationsRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpscaleV1Response, any>>;
6090
+ callControllerCallOperationsRunUpscaleV1V1(upscaleV1Request: UpscaleV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpscaleV1Response, any>>;
6085
6091
  /**
6086
6092
  *
6087
- * @param {GiseleVtonV1ControllerInput} giseleVtonV1ControllerInput
6093
+ * @param {VtonGiseleV1Request} vtonGiseleV1Request
6088
6094
  * @param {*} [options] Override http request option.
6089
6095
  * @throws {RequiredError}
6090
6096
  * @memberof CallApi
6091
6097
  */
6092
- callControllerCallOperationsRunVtonGiseleV1V1(giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VtonGiseleV1Response, any>>;
6098
+ callControllerCallOperationsRunVtonGiseleV1V1(vtonGiseleV1Request: VtonGiseleV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VtonGiseleV1Response, any>>;
6093
6099
  /**
6094
6100
  *
6095
6101
  * @param {WaitOperationParamsDto} waitOperationParamsDto
@@ -6893,102 +6899,102 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
6893
6899
  operationsControllerListOperationsV1: (orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6894
6900
  /**
6895
6901
  *
6896
- * @param {CompositeV1ControllerInput} compositeV1ControllerInput
6902
+ * @param {CompositeV1Request} compositeV1Request
6897
6903
  * @param {*} [options] Override http request option.
6898
6904
  * @throws {RequiredError}
6899
6905
  */
6900
- operationsControllerRunCompositeV1V1: (compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6906
+ operationsControllerRunCompositeV1V1: (compositeV1Request: CompositeV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6901
6907
  /**
6902
6908
  *
6903
- * @param {CutV1ControllerInput} cutV1ControllerInput
6909
+ * @param {CutV1Request} cutV1Request
6904
6910
  * @param {*} [options] Override http request option.
6905
6911
  * @throws {RequiredError}
6906
6912
  */
6907
- operationsControllerRunCutV1V1: (cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6913
+ operationsControllerRunCutV1V1: (cutV1Request: CutV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6908
6914
  /**
6909
6915
  *
6910
- * @param {GPTV1ControllerInput} gPTV1ControllerInput
6916
+ * @param {GptV1Request} gptV1Request
6911
6917
  * @param {*} [options] Override http request option.
6912
6918
  * @throws {RequiredError}
6913
6919
  */
6914
- operationsControllerRunGptV1V1: (gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6920
+ operationsControllerRunGptV1V1: (gptV1Request: GptV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6915
6921
  /**
6916
6922
  *
6917
- * @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
6923
+ * @param {HauteLindaV1Request} hauteLindaV1Request
6918
6924
  * @param {*} [options] Override http request option.
6919
6925
  * @throws {RequiredError}
6920
6926
  */
6921
- operationsControllerRunHauteLindaV1V1: (lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6927
+ operationsControllerRunHauteLindaV1V1: (hauteLindaV1Request: HauteLindaV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6922
6928
  /**
6923
6929
  *
6924
- * @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
6930
+ * @param {HauteNaomiV1Request} hauteNaomiV1Request
6925
6931
  * @param {*} [options] Override http request option.
6926
6932
  * @throws {RequiredError}
6927
6933
  */
6928
- operationsControllerRunHauteNaomiV1V1: (naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6934
+ operationsControllerRunHauteNaomiV1V1: (hauteNaomiV1Request: HauteNaomiV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6929
6935
  /**
6930
6936
  *
6931
- * @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
6937
+ * @param {ImagineKateV1Request} imagineKateV1Request
6932
6938
  * @param {*} [options] Override http request option.
6933
6939
  * @throws {RequiredError}
6934
6940
  */
6935
- operationsControllerRunImagineKateV1V1: (kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6941
+ operationsControllerRunImagineKateV1V1: (imagineKateV1Request: ImagineKateV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6936
6942
  /**
6937
6943
  *
6938
- * @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
6944
+ * @param {InpaintKateV1Request} inpaintKateV1Request
6939
6945
  * @param {*} [options] Override http request option.
6940
6946
  * @throws {RequiredError}
6941
6947
  */
6942
- operationsControllerRunInpaintKateV1V1: (kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6948
+ operationsControllerRunInpaintKateV1V1: (inpaintKateV1Request: InpaintKateV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6943
6949
  /**
6944
6950
  *
6945
- * @param {NegateImageV1ControllerInput} negateImageV1ControllerInput
6951
+ * @param {NegateImageV1Request} negateImageV1Request
6946
6952
  * @param {*} [options] Override http request option.
6947
6953
  * @throws {RequiredError}
6948
6954
  */
6949
- operationsControllerRunNegateImageV1V1: (negateImageV1ControllerInput: NegateImageV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6955
+ operationsControllerRunNegateImageV1V1: (negateImageV1Request: NegateImageV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6950
6956
  /**
6951
6957
  *
6952
- * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
6958
+ * @param {ObjectDetectionV1Request} objectDetectionV1Request
6953
6959
  * @param {*} [options] Override http request option.
6954
6960
  * @throws {RequiredError}
6955
6961
  */
6956
- operationsControllerRunObjectDetectionV1V1: (objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6962
+ operationsControllerRunObjectDetectionV1V1: (objectDetectionV1Request: ObjectDetectionV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6957
6963
  /**
6958
6964
  *
6959
- * @param {PoseEstimationV1ControllerInput} poseEstimationV1ControllerInput
6965
+ * @param {PoseEstimationV1Request} poseEstimationV1Request
6960
6966
  * @param {*} [options] Override http request option.
6961
6967
  * @throws {RequiredError}
6962
6968
  */
6963
- operationsControllerRunPoseEstimationV1V1: (poseEstimationV1ControllerInput: PoseEstimationV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6969
+ operationsControllerRunPoseEstimationV1V1: (poseEstimationV1Request: PoseEstimationV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6964
6970
  /**
6965
6971
  *
6966
- * @param {SegmentAnythingEmbeddingsV1ControllerInput} segmentAnythingEmbeddingsV1ControllerInput
6972
+ * @param {SegmentAnythingEmbeddingsV1Request} segmentAnythingEmbeddingsV1Request
6967
6973
  * @param {*} [options] Override http request option.
6968
6974
  * @throws {RequiredError}
6969
6975
  */
6970
- operationsControllerRunSegmentAnythingEmbeddingsV1V1: (segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6976
+ operationsControllerRunSegmentAnythingEmbeddingsV1V1: (segmentAnythingEmbeddingsV1Request: SegmentAnythingEmbeddingsV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6971
6977
  /**
6972
6978
  *
6973
- * @param {SegmentAnythingMaskV1ControllerInput} segmentAnythingMaskV1ControllerInput
6979
+ * @param {SegmentAnythingMaskV1Request} segmentAnythingMaskV1Request
6974
6980
  * @param {*} [options] Override http request option.
6975
6981
  * @throws {RequiredError}
6976
6982
  */
6977
- operationsControllerRunSegmentAnythingMaskV1V1: (segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6983
+ operationsControllerRunSegmentAnythingMaskV1V1: (segmentAnythingMaskV1Request: SegmentAnythingMaskV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6978
6984
  /**
6979
6985
  *
6980
- * @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
6986
+ * @param {UpscaleV1Request} upscaleV1Request
6981
6987
  * @param {*} [options] Override http request option.
6982
6988
  * @throws {RequiredError}
6983
6989
  */
6984
- operationsControllerRunUpscaleV1V1: (upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6990
+ operationsControllerRunUpscaleV1V1: (upscaleV1Request: UpscaleV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6985
6991
  /**
6986
6992
  *
6987
- * @param {GiseleVtonV1ControllerInput} giseleVtonV1ControllerInput
6993
+ * @param {VtonGiseleV1Request} vtonGiseleV1Request
6988
6994
  * @param {*} [options] Override http request option.
6989
6995
  * @throws {RequiredError}
6990
6996
  */
6991
- operationsControllerRunVtonGiseleV1V1: (giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6997
+ operationsControllerRunVtonGiseleV1V1: (vtonGiseleV1Request: VtonGiseleV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6992
6998
  /**
6993
6999
  *
6994
7000
  * @param {string} id
@@ -7028,102 +7034,102 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
7028
7034
  operationsControllerListOperationsV1(orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListOperationsDto>>;
7029
7035
  /**
7030
7036
  *
7031
- * @param {CompositeV1ControllerInput} compositeV1ControllerInput
7037
+ * @param {CompositeV1Request} compositeV1Request
7032
7038
  * @param {*} [options] Override http request option.
7033
7039
  * @throws {RequiredError}
7034
7040
  */
7035
- operationsControllerRunCompositeV1V1(compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CompositeV1Response>>;
7041
+ operationsControllerRunCompositeV1V1(compositeV1Request: CompositeV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CompositeV1Response>>;
7036
7042
  /**
7037
7043
  *
7038
- * @param {CutV1ControllerInput} cutV1ControllerInput
7044
+ * @param {CutV1Request} cutV1Request
7039
7045
  * @param {*} [options] Override http request option.
7040
7046
  * @throws {RequiredError}
7041
7047
  */
7042
- operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CutV1Response>>;
7048
+ operationsControllerRunCutV1V1(cutV1Request: CutV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CutV1Response>>;
7043
7049
  /**
7044
7050
  *
7045
- * @param {GPTV1ControllerInput} gPTV1ControllerInput
7051
+ * @param {GptV1Request} gptV1Request
7046
7052
  * @param {*} [options] Override http request option.
7047
7053
  * @throws {RequiredError}
7048
7054
  */
7049
- operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GptV1Response>>;
7055
+ operationsControllerRunGptV1V1(gptV1Request: GptV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GptV1Response>>;
7050
7056
  /**
7051
7057
  *
7052
- * @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
7058
+ * @param {HauteLindaV1Request} hauteLindaV1Request
7053
7059
  * @param {*} [options] Override http request option.
7054
7060
  * @throws {RequiredError}
7055
7061
  */
7056
- operationsControllerRunHauteLindaV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HauteLindaV1Response>>;
7062
+ operationsControllerRunHauteLindaV1V1(hauteLindaV1Request: HauteLindaV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HauteLindaV1Response>>;
7057
7063
  /**
7058
7064
  *
7059
- * @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
7065
+ * @param {HauteNaomiV1Request} hauteNaomiV1Request
7060
7066
  * @param {*} [options] Override http request option.
7061
7067
  * @throws {RequiredError}
7062
7068
  */
7063
- operationsControllerRunHauteNaomiV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HauteNaomiV1Response>>;
7069
+ operationsControllerRunHauteNaomiV1V1(hauteNaomiV1Request: HauteNaomiV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HauteNaomiV1Response>>;
7064
7070
  /**
7065
7071
  *
7066
- * @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
7072
+ * @param {ImagineKateV1Request} imagineKateV1Request
7067
7073
  * @param {*} [options] Override http request option.
7068
7074
  * @throws {RequiredError}
7069
7075
  */
7070
- operationsControllerRunImagineKateV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImagineKateV1Response>>;
7076
+ operationsControllerRunImagineKateV1V1(imagineKateV1Request: ImagineKateV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImagineKateV1Response>>;
7071
7077
  /**
7072
7078
  *
7073
- * @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
7079
+ * @param {InpaintKateV1Request} inpaintKateV1Request
7074
7080
  * @param {*} [options] Override http request option.
7075
7081
  * @throws {RequiredError}
7076
7082
  */
7077
- operationsControllerRunInpaintKateV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InpaintKateV1Response>>;
7083
+ operationsControllerRunInpaintKateV1V1(inpaintKateV1Request: InpaintKateV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InpaintKateV1Response>>;
7078
7084
  /**
7079
7085
  *
7080
- * @param {NegateImageV1ControllerInput} negateImageV1ControllerInput
7086
+ * @param {NegateImageV1Request} negateImageV1Request
7081
7087
  * @param {*} [options] Override http request option.
7082
7088
  * @throws {RequiredError}
7083
7089
  */
7084
- operationsControllerRunNegateImageV1V1(negateImageV1ControllerInput: NegateImageV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NegateImageV1Response>>;
7090
+ operationsControllerRunNegateImageV1V1(negateImageV1Request: NegateImageV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NegateImageV1Response>>;
7085
7091
  /**
7086
7092
  *
7087
- * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
7093
+ * @param {ObjectDetectionV1Request} objectDetectionV1Request
7088
7094
  * @param {*} [options] Override http request option.
7089
7095
  * @throws {RequiredError}
7090
7096
  */
7091
- operationsControllerRunObjectDetectionV1V1(objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ObjectDetectionV1Response>>;
7097
+ operationsControllerRunObjectDetectionV1V1(objectDetectionV1Request: ObjectDetectionV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ObjectDetectionV1Response>>;
7092
7098
  /**
7093
7099
  *
7094
- * @param {PoseEstimationV1ControllerInput} poseEstimationV1ControllerInput
7100
+ * @param {PoseEstimationV1Request} poseEstimationV1Request
7095
7101
  * @param {*} [options] Override http request option.
7096
7102
  * @throws {RequiredError}
7097
7103
  */
7098
- operationsControllerRunPoseEstimationV1V1(poseEstimationV1ControllerInput: PoseEstimationV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoseEstimationV1Response>>;
7104
+ operationsControllerRunPoseEstimationV1V1(poseEstimationV1Request: PoseEstimationV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoseEstimationV1Response>>;
7099
7105
  /**
7100
7106
  *
7101
- * @param {SegmentAnythingEmbeddingsV1ControllerInput} segmentAnythingEmbeddingsV1ControllerInput
7107
+ * @param {SegmentAnythingEmbeddingsV1Request} segmentAnythingEmbeddingsV1Request
7102
7108
  * @param {*} [options] Override http request option.
7103
7109
  * @throws {RequiredError}
7104
7110
  */
7105
- operationsControllerRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SegmentAnythingEmbeddingsV1Response>>;
7111
+ operationsControllerRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1Request: SegmentAnythingEmbeddingsV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SegmentAnythingEmbeddingsV1Response>>;
7106
7112
  /**
7107
7113
  *
7108
- * @param {SegmentAnythingMaskV1ControllerInput} segmentAnythingMaskV1ControllerInput
7114
+ * @param {SegmentAnythingMaskV1Request} segmentAnythingMaskV1Request
7109
7115
  * @param {*} [options] Override http request option.
7110
7116
  * @throws {RequiredError}
7111
7117
  */
7112
- operationsControllerRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SegmentAnythingMaskV1Response>>;
7118
+ operationsControllerRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1Request: SegmentAnythingMaskV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SegmentAnythingMaskV1Response>>;
7113
7119
  /**
7114
7120
  *
7115
- * @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
7121
+ * @param {UpscaleV1Request} upscaleV1Request
7116
7122
  * @param {*} [options] Override http request option.
7117
7123
  * @throws {RequiredError}
7118
7124
  */
7119
- operationsControllerRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpscaleV1Response>>;
7125
+ operationsControllerRunUpscaleV1V1(upscaleV1Request: UpscaleV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpscaleV1Response>>;
7120
7126
  /**
7121
7127
  *
7122
- * @param {GiseleVtonV1ControllerInput} giseleVtonV1ControllerInput
7128
+ * @param {VtonGiseleV1Request} vtonGiseleV1Request
7123
7129
  * @param {*} [options] Override http request option.
7124
7130
  * @throws {RequiredError}
7125
7131
  */
7126
- operationsControllerRunVtonGiseleV1V1(giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VtonGiseleV1Response>>;
7132
+ operationsControllerRunVtonGiseleV1V1(vtonGiseleV1Request: VtonGiseleV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VtonGiseleV1Response>>;
7127
7133
  /**
7128
7134
  *
7129
7135
  * @param {string} id
@@ -7163,102 +7169,102 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
7163
7169
  operationsControllerListOperationsV1(orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListOperationsDto>;
7164
7170
  /**
7165
7171
  *
7166
- * @param {CompositeV1ControllerInput} compositeV1ControllerInput
7172
+ * @param {CompositeV1Request} compositeV1Request
7167
7173
  * @param {*} [options] Override http request option.
7168
7174
  * @throws {RequiredError}
7169
7175
  */
7170
- operationsControllerRunCompositeV1V1(compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<CompositeV1Response>;
7176
+ operationsControllerRunCompositeV1V1(compositeV1Request: CompositeV1Request, options?: RawAxiosRequestConfig): AxiosPromise<CompositeV1Response>;
7171
7177
  /**
7172
7178
  *
7173
- * @param {CutV1ControllerInput} cutV1ControllerInput
7179
+ * @param {CutV1Request} cutV1Request
7174
7180
  * @param {*} [options] Override http request option.
7175
7181
  * @throws {RequiredError}
7176
7182
  */
7177
- operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<CutV1Response>;
7183
+ operationsControllerRunCutV1V1(cutV1Request: CutV1Request, options?: RawAxiosRequestConfig): AxiosPromise<CutV1Response>;
7178
7184
  /**
7179
7185
  *
7180
- * @param {GPTV1ControllerInput} gPTV1ControllerInput
7186
+ * @param {GptV1Request} gptV1Request
7181
7187
  * @param {*} [options] Override http request option.
7182
7188
  * @throws {RequiredError}
7183
7189
  */
7184
- operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<GptV1Response>;
7190
+ operationsControllerRunGptV1V1(gptV1Request: GptV1Request, options?: RawAxiosRequestConfig): AxiosPromise<GptV1Response>;
7185
7191
  /**
7186
7192
  *
7187
- * @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
7193
+ * @param {HauteLindaV1Request} hauteLindaV1Request
7188
7194
  * @param {*} [options] Override http request option.
7189
7195
  * @throws {RequiredError}
7190
7196
  */
7191
- operationsControllerRunHauteLindaV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<HauteLindaV1Response>;
7197
+ operationsControllerRunHauteLindaV1V1(hauteLindaV1Request: HauteLindaV1Request, options?: RawAxiosRequestConfig): AxiosPromise<HauteLindaV1Response>;
7192
7198
  /**
7193
7199
  *
7194
- * @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
7200
+ * @param {HauteNaomiV1Request} hauteNaomiV1Request
7195
7201
  * @param {*} [options] Override http request option.
7196
7202
  * @throws {RequiredError}
7197
7203
  */
7198
- operationsControllerRunHauteNaomiV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<HauteNaomiV1Response>;
7204
+ operationsControllerRunHauteNaomiV1V1(hauteNaomiV1Request: HauteNaomiV1Request, options?: RawAxiosRequestConfig): AxiosPromise<HauteNaomiV1Response>;
7199
7205
  /**
7200
7206
  *
7201
- * @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
7207
+ * @param {ImagineKateV1Request} imagineKateV1Request
7202
7208
  * @param {*} [options] Override http request option.
7203
7209
  * @throws {RequiredError}
7204
7210
  */
7205
- operationsControllerRunImagineKateV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<ImagineKateV1Response>;
7211
+ operationsControllerRunImagineKateV1V1(imagineKateV1Request: ImagineKateV1Request, options?: RawAxiosRequestConfig): AxiosPromise<ImagineKateV1Response>;
7206
7212
  /**
7207
7213
  *
7208
- * @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
7214
+ * @param {InpaintKateV1Request} inpaintKateV1Request
7209
7215
  * @param {*} [options] Override http request option.
7210
7216
  * @throws {RequiredError}
7211
7217
  */
7212
- operationsControllerRunInpaintKateV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<InpaintKateV1Response>;
7218
+ operationsControllerRunInpaintKateV1V1(inpaintKateV1Request: InpaintKateV1Request, options?: RawAxiosRequestConfig): AxiosPromise<InpaintKateV1Response>;
7213
7219
  /**
7214
7220
  *
7215
- * @param {NegateImageV1ControllerInput} negateImageV1ControllerInput
7221
+ * @param {NegateImageV1Request} negateImageV1Request
7216
7222
  * @param {*} [options] Override http request option.
7217
7223
  * @throws {RequiredError}
7218
7224
  */
7219
- operationsControllerRunNegateImageV1V1(negateImageV1ControllerInput: NegateImageV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<NegateImageV1Response>;
7225
+ operationsControllerRunNegateImageV1V1(negateImageV1Request: NegateImageV1Request, options?: RawAxiosRequestConfig): AxiosPromise<NegateImageV1Response>;
7220
7226
  /**
7221
7227
  *
7222
- * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
7228
+ * @param {ObjectDetectionV1Request} objectDetectionV1Request
7223
7229
  * @param {*} [options] Override http request option.
7224
7230
  * @throws {RequiredError}
7225
7231
  */
7226
- operationsControllerRunObjectDetectionV1V1(objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<ObjectDetectionV1Response>;
7232
+ operationsControllerRunObjectDetectionV1V1(objectDetectionV1Request: ObjectDetectionV1Request, options?: RawAxiosRequestConfig): AxiosPromise<ObjectDetectionV1Response>;
7227
7233
  /**
7228
7234
  *
7229
- * @param {PoseEstimationV1ControllerInput} poseEstimationV1ControllerInput
7235
+ * @param {PoseEstimationV1Request} poseEstimationV1Request
7230
7236
  * @param {*} [options] Override http request option.
7231
7237
  * @throws {RequiredError}
7232
7238
  */
7233
- operationsControllerRunPoseEstimationV1V1(poseEstimationV1ControllerInput: PoseEstimationV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<PoseEstimationV1Response>;
7239
+ operationsControllerRunPoseEstimationV1V1(poseEstimationV1Request: PoseEstimationV1Request, options?: RawAxiosRequestConfig): AxiosPromise<PoseEstimationV1Response>;
7234
7240
  /**
7235
7241
  *
7236
- * @param {SegmentAnythingEmbeddingsV1ControllerInput} segmentAnythingEmbeddingsV1ControllerInput
7242
+ * @param {SegmentAnythingEmbeddingsV1Request} segmentAnythingEmbeddingsV1Request
7237
7243
  * @param {*} [options] Override http request option.
7238
7244
  * @throws {RequiredError}
7239
7245
  */
7240
- operationsControllerRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<SegmentAnythingEmbeddingsV1Response>;
7246
+ operationsControllerRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1Request: SegmentAnythingEmbeddingsV1Request, options?: RawAxiosRequestConfig): AxiosPromise<SegmentAnythingEmbeddingsV1Response>;
7241
7247
  /**
7242
7248
  *
7243
- * @param {SegmentAnythingMaskV1ControllerInput} segmentAnythingMaskV1ControllerInput
7249
+ * @param {SegmentAnythingMaskV1Request} segmentAnythingMaskV1Request
7244
7250
  * @param {*} [options] Override http request option.
7245
7251
  * @throws {RequiredError}
7246
7252
  */
7247
- operationsControllerRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<SegmentAnythingMaskV1Response>;
7253
+ operationsControllerRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1Request: SegmentAnythingMaskV1Request, options?: RawAxiosRequestConfig): AxiosPromise<SegmentAnythingMaskV1Response>;
7248
7254
  /**
7249
7255
  *
7250
- * @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
7256
+ * @param {UpscaleV1Request} upscaleV1Request
7251
7257
  * @param {*} [options] Override http request option.
7252
7258
  * @throws {RequiredError}
7253
7259
  */
7254
- operationsControllerRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<UpscaleV1Response>;
7260
+ operationsControllerRunUpscaleV1V1(upscaleV1Request: UpscaleV1Request, options?: RawAxiosRequestConfig): AxiosPromise<UpscaleV1Response>;
7255
7261
  /**
7256
7262
  *
7257
- * @param {GiseleVtonV1ControllerInput} giseleVtonV1ControllerInput
7263
+ * @param {VtonGiseleV1Request} vtonGiseleV1Request
7258
7264
  * @param {*} [options] Override http request option.
7259
7265
  * @throws {RequiredError}
7260
7266
  */
7261
- operationsControllerRunVtonGiseleV1V1(giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<VtonGiseleV1Response>;
7267
+ operationsControllerRunVtonGiseleV1V1(vtonGiseleV1Request: VtonGiseleV1Request, options?: RawAxiosRequestConfig): AxiosPromise<VtonGiseleV1Response>;
7262
7268
  /**
7263
7269
  *
7264
7270
  * @param {string} id
@@ -7303,116 +7309,116 @@ export declare class OperationsApi extends BaseAPI {
7303
7309
  operationsControllerListOperationsV1(orderBy?: OperationsControllerListOperationsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListOperationsDto, any>>;
7304
7310
  /**
7305
7311
  *
7306
- * @param {CompositeV1ControllerInput} compositeV1ControllerInput
7312
+ * @param {CompositeV1Request} compositeV1Request
7307
7313
  * @param {*} [options] Override http request option.
7308
7314
  * @throws {RequiredError}
7309
7315
  * @memberof OperationsApi
7310
7316
  */
7311
- operationsControllerRunCompositeV1V1(compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompositeV1Response, any>>;
7317
+ operationsControllerRunCompositeV1V1(compositeV1Request: CompositeV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompositeV1Response, any>>;
7312
7318
  /**
7313
7319
  *
7314
- * @param {CutV1ControllerInput} cutV1ControllerInput
7320
+ * @param {CutV1Request} cutV1Request
7315
7321
  * @param {*} [options] Override http request option.
7316
7322
  * @throws {RequiredError}
7317
7323
  * @memberof OperationsApi
7318
7324
  */
7319
- operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CutV1Response, any>>;
7325
+ operationsControllerRunCutV1V1(cutV1Request: CutV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CutV1Response, any>>;
7320
7326
  /**
7321
7327
  *
7322
- * @param {GPTV1ControllerInput} gPTV1ControllerInput
7328
+ * @param {GptV1Request} gptV1Request
7323
7329
  * @param {*} [options] Override http request option.
7324
7330
  * @throws {RequiredError}
7325
7331
  * @memberof OperationsApi
7326
7332
  */
7327
- operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GptV1Response, any>>;
7333
+ operationsControllerRunGptV1V1(gptV1Request: GptV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GptV1Response, any>>;
7328
7334
  /**
7329
7335
  *
7330
- * @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
7336
+ * @param {HauteLindaV1Request} hauteLindaV1Request
7331
7337
  * @param {*} [options] Override http request option.
7332
7338
  * @throws {RequiredError}
7333
7339
  * @memberof OperationsApi
7334
7340
  */
7335
- operationsControllerRunHauteLindaV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HauteLindaV1Response, any>>;
7341
+ operationsControllerRunHauteLindaV1V1(hauteLindaV1Request: HauteLindaV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HauteLindaV1Response, any>>;
7336
7342
  /**
7337
7343
  *
7338
- * @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
7344
+ * @param {HauteNaomiV1Request} hauteNaomiV1Request
7339
7345
  * @param {*} [options] Override http request option.
7340
7346
  * @throws {RequiredError}
7341
7347
  * @memberof OperationsApi
7342
7348
  */
7343
- operationsControllerRunHauteNaomiV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HauteNaomiV1Response, any>>;
7349
+ operationsControllerRunHauteNaomiV1V1(hauteNaomiV1Request: HauteNaomiV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HauteNaomiV1Response, any>>;
7344
7350
  /**
7345
7351
  *
7346
- * @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
7352
+ * @param {ImagineKateV1Request} imagineKateV1Request
7347
7353
  * @param {*} [options] Override http request option.
7348
7354
  * @throws {RequiredError}
7349
7355
  * @memberof OperationsApi
7350
7356
  */
7351
- operationsControllerRunImagineKateV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImagineKateV1Response, any>>;
7357
+ operationsControllerRunImagineKateV1V1(imagineKateV1Request: ImagineKateV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImagineKateV1Response, any>>;
7352
7358
  /**
7353
7359
  *
7354
- * @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
7360
+ * @param {InpaintKateV1Request} inpaintKateV1Request
7355
7361
  * @param {*} [options] Override http request option.
7356
7362
  * @throws {RequiredError}
7357
7363
  * @memberof OperationsApi
7358
7364
  */
7359
- operationsControllerRunInpaintKateV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InpaintKateV1Response, any>>;
7365
+ operationsControllerRunInpaintKateV1V1(inpaintKateV1Request: InpaintKateV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InpaintKateV1Response, any>>;
7360
7366
  /**
7361
7367
  *
7362
- * @param {NegateImageV1ControllerInput} negateImageV1ControllerInput
7368
+ * @param {NegateImageV1Request} negateImageV1Request
7363
7369
  * @param {*} [options] Override http request option.
7364
7370
  * @throws {RequiredError}
7365
7371
  * @memberof OperationsApi
7366
7372
  */
7367
- operationsControllerRunNegateImageV1V1(negateImageV1ControllerInput: NegateImageV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NegateImageV1Response, any>>;
7373
+ operationsControllerRunNegateImageV1V1(negateImageV1Request: NegateImageV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NegateImageV1Response, any>>;
7368
7374
  /**
7369
7375
  *
7370
- * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
7376
+ * @param {ObjectDetectionV1Request} objectDetectionV1Request
7371
7377
  * @param {*} [options] Override http request option.
7372
7378
  * @throws {RequiredError}
7373
7379
  * @memberof OperationsApi
7374
7380
  */
7375
- operationsControllerRunObjectDetectionV1V1(objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ObjectDetectionV1Response, any>>;
7381
+ operationsControllerRunObjectDetectionV1V1(objectDetectionV1Request: ObjectDetectionV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ObjectDetectionV1Response, any>>;
7376
7382
  /**
7377
7383
  *
7378
- * @param {PoseEstimationV1ControllerInput} poseEstimationV1ControllerInput
7384
+ * @param {PoseEstimationV1Request} poseEstimationV1Request
7379
7385
  * @param {*} [options] Override http request option.
7380
7386
  * @throws {RequiredError}
7381
7387
  * @memberof OperationsApi
7382
7388
  */
7383
- operationsControllerRunPoseEstimationV1V1(poseEstimationV1ControllerInput: PoseEstimationV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PoseEstimationV1Response, any>>;
7389
+ operationsControllerRunPoseEstimationV1V1(poseEstimationV1Request: PoseEstimationV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PoseEstimationV1Response, any>>;
7384
7390
  /**
7385
7391
  *
7386
- * @param {SegmentAnythingEmbeddingsV1ControllerInput} segmentAnythingEmbeddingsV1ControllerInput
7392
+ * @param {SegmentAnythingEmbeddingsV1Request} segmentAnythingEmbeddingsV1Request
7387
7393
  * @param {*} [options] Override http request option.
7388
7394
  * @throws {RequiredError}
7389
7395
  * @memberof OperationsApi
7390
7396
  */
7391
- operationsControllerRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SegmentAnythingEmbeddingsV1Response, any>>;
7397
+ operationsControllerRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1Request: SegmentAnythingEmbeddingsV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SegmentAnythingEmbeddingsV1Response, any>>;
7392
7398
  /**
7393
7399
  *
7394
- * @param {SegmentAnythingMaskV1ControllerInput} segmentAnythingMaskV1ControllerInput
7400
+ * @param {SegmentAnythingMaskV1Request} segmentAnythingMaskV1Request
7395
7401
  * @param {*} [options] Override http request option.
7396
7402
  * @throws {RequiredError}
7397
7403
  * @memberof OperationsApi
7398
7404
  */
7399
- operationsControllerRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SegmentAnythingMaskV1Response, any>>;
7405
+ operationsControllerRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1Request: SegmentAnythingMaskV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SegmentAnythingMaskV1Response, any>>;
7400
7406
  /**
7401
7407
  *
7402
- * @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
7408
+ * @param {UpscaleV1Request} upscaleV1Request
7403
7409
  * @param {*} [options] Override http request option.
7404
7410
  * @throws {RequiredError}
7405
7411
  * @memberof OperationsApi
7406
7412
  */
7407
- operationsControllerRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpscaleV1Response, any>>;
7413
+ operationsControllerRunUpscaleV1V1(upscaleV1Request: UpscaleV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpscaleV1Response, any>>;
7408
7414
  /**
7409
7415
  *
7410
- * @param {GiseleVtonV1ControllerInput} giseleVtonV1ControllerInput
7416
+ * @param {VtonGiseleV1Request} vtonGiseleV1Request
7411
7417
  * @param {*} [options] Override http request option.
7412
7418
  * @throws {RequiredError}
7413
7419
  * @memberof OperationsApi
7414
7420
  */
7415
- operationsControllerRunVtonGiseleV1V1(giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VtonGiseleV1Response, any>>;
7421
+ operationsControllerRunVtonGiseleV1V1(vtonGiseleV1Request: VtonGiseleV1Request, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VtonGiseleV1Response, any>>;
7416
7422
  /**
7417
7423
  *
7418
7424
  * @param {string} id