@hautechai/sdk 0.1.5 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -25,6 +25,30 @@ export interface AccountEntity {
25
25
  * @memberof AccountEntity
26
26
  */
27
27
  'id': string;
28
+ /**
29
+ *
30
+ * @type {string}
31
+ * @memberof AccountEntity
32
+ */
33
+ 'applicationId': string;
34
+ /**
35
+ *
36
+ * @type {object}
37
+ * @memberof AccountEntity
38
+ */
39
+ 'balance': object;
40
+ /**
41
+ *
42
+ * @type {string}
43
+ * @memberof AccountEntity
44
+ */
45
+ 'createdAt': string;
46
+ /**
47
+ *
48
+ * @type {string}
49
+ * @memberof AccountEntity
50
+ */
51
+ 'alias'?: string;
28
52
  /**
29
53
  *
30
54
  * @type {string}
@@ -246,12 +270,24 @@ export interface CollectionEntity {
246
270
  * @memberof CollectionEntity
247
271
  */
248
272
  'kind': number;
273
+ /**
274
+ *
275
+ * @type {Array<ResourceEntity>}
276
+ * @memberof CollectionEntity
277
+ */
278
+ 'items': Array<ResourceEntity>;
249
279
  /**
250
280
  *
251
281
  * @type {string}
252
282
  * @memberof CollectionEntity
253
283
  */
254
284
  'id': string;
285
+ /**
286
+ *
287
+ * @type {AccountEntity}
288
+ * @memberof CollectionEntity
289
+ */
290
+ 'creator': AccountEntity;
255
291
  /**
256
292
  *
257
293
  * @type {string}
@@ -276,6 +312,18 @@ export interface CollectionEntity {
276
312
  * @memberof CollectionEntity
277
313
  */
278
314
  'updatedAt': string;
315
+ /**
316
+ *
317
+ * @type {Array<CollectionEntity>}
318
+ * @memberof CollectionEntity
319
+ */
320
+ 'collections': Array<CollectionEntity>;
321
+ /**
322
+ *
323
+ * @type {Array<RepresentationEntity>}
324
+ * @memberof CollectionEntity
325
+ */
326
+ 'representations': Array<RepresentationEntity>;
279
327
  }
280
328
  /**
281
329
  *
@@ -420,6 +468,12 @@ export interface CompositeV1Response {
420
468
  * @memberof CompositeV1Response
421
469
  */
422
470
  'id': string;
471
+ /**
472
+ *
473
+ * @type {AccountEntity}
474
+ * @memberof CompositeV1Response
475
+ */
476
+ 'creator': AccountEntity;
423
477
  /**
424
478
  *
425
479
  * @type {string}
@@ -444,6 +498,18 @@ export interface CompositeV1Response {
444
498
  * @memberof CompositeV1Response
445
499
  */
446
500
  'updatedAt': string;
501
+ /**
502
+ *
503
+ * @type {Array<CollectionEntity>}
504
+ * @memberof CompositeV1Response
505
+ */
506
+ 'collections': Array<CollectionEntity>;
507
+ /**
508
+ *
509
+ * @type {Array<RepresentationEntity>}
510
+ * @memberof CompositeV1Response
511
+ */
512
+ 'representations': Array<RepresentationEntity>;
447
513
  }
448
514
  export declare const CompositeV1ResponseKindEnum: {
449
515
  readonly Operation: "operation";
@@ -625,6 +691,12 @@ export interface CutV1Response {
625
691
  * @memberof CutV1Response
626
692
  */
627
693
  'id': string;
694
+ /**
695
+ *
696
+ * @type {AccountEntity}
697
+ * @memberof CutV1Response
698
+ */
699
+ 'creator': AccountEntity;
628
700
  /**
629
701
  *
630
702
  * @type {string}
@@ -649,6 +721,18 @@ export interface CutV1Response {
649
721
  * @memberof CutV1Response
650
722
  */
651
723
  'updatedAt': string;
724
+ /**
725
+ *
726
+ * @type {Array<CollectionEntity>}
727
+ * @memberof CutV1Response
728
+ */
729
+ 'collections': Array<CollectionEntity>;
730
+ /**
731
+ *
732
+ * @type {Array<RepresentationEntity>}
733
+ * @memberof CutV1Response
734
+ */
735
+ 'representations': Array<RepresentationEntity>;
652
736
  }
653
737
  export declare const CutV1ResponseKindEnum: {
654
738
  readonly Operation: "operation";
@@ -1010,6 +1094,12 @@ export interface GptV1Response {
1010
1094
  * @memberof GptV1Response
1011
1095
  */
1012
1096
  'id': string;
1097
+ /**
1098
+ *
1099
+ * @type {AccountEntity}
1100
+ * @memberof GptV1Response
1101
+ */
1102
+ 'creator': AccountEntity;
1013
1103
  /**
1014
1104
  *
1015
1105
  * @type {string}
@@ -1034,6 +1124,18 @@ export interface GptV1Response {
1034
1124
  * @memberof GptV1Response
1035
1125
  */
1036
1126
  'updatedAt': string;
1127
+ /**
1128
+ *
1129
+ * @type {Array<CollectionEntity>}
1130
+ * @memberof GptV1Response
1131
+ */
1132
+ 'collections': Array<CollectionEntity>;
1133
+ /**
1134
+ *
1135
+ * @type {Array<RepresentationEntity>}
1136
+ * @memberof GptV1Response
1137
+ */
1138
+ 'representations': Array<RepresentationEntity>;
1037
1139
  }
1038
1140
  export declare const GptV1ResponseKindEnum: {
1039
1141
  readonly Operation: "operation";
@@ -1123,6 +1225,24 @@ export interface GroupEntity {
1123
1225
  * @memberof GroupEntity
1124
1226
  */
1125
1227
  'id': string;
1228
+ /**
1229
+ *
1230
+ * @type {string}
1231
+ * @memberof GroupEntity
1232
+ */
1233
+ 'applicationId': string;
1234
+ /**
1235
+ *
1236
+ * @type {AccountEntity}
1237
+ * @memberof GroupEntity
1238
+ */
1239
+ 'creator': AccountEntity;
1240
+ /**
1241
+ *
1242
+ * @type {string}
1243
+ * @memberof GroupEntity
1244
+ */
1245
+ 'creatorId': string;
1126
1246
  /**
1127
1247
  *
1128
1248
  * @type {string}
@@ -1172,6 +1292,12 @@ export interface HauteLindaV1Response {
1172
1292
  * @memberof HauteLindaV1Response
1173
1293
  */
1174
1294
  'id': string;
1295
+ /**
1296
+ *
1297
+ * @type {AccountEntity}
1298
+ * @memberof HauteLindaV1Response
1299
+ */
1300
+ 'creator': AccountEntity;
1175
1301
  /**
1176
1302
  *
1177
1303
  * @type {string}
@@ -1196,6 +1322,18 @@ export interface HauteLindaV1Response {
1196
1322
  * @memberof HauteLindaV1Response
1197
1323
  */
1198
1324
  'updatedAt': string;
1325
+ /**
1326
+ *
1327
+ * @type {Array<CollectionEntity>}
1328
+ * @memberof HauteLindaV1Response
1329
+ */
1330
+ 'collections': Array<CollectionEntity>;
1331
+ /**
1332
+ *
1333
+ * @type {Array<RepresentationEntity>}
1334
+ * @memberof HauteLindaV1Response
1335
+ */
1336
+ 'representations': Array<RepresentationEntity>;
1199
1337
  }
1200
1338
  export declare const HauteLindaV1ResponseKindEnum: {
1201
1339
  readonly Operation: "operation";
@@ -1249,6 +1387,12 @@ export interface HauteNaomiV1Response {
1249
1387
  * @memberof HauteNaomiV1Response
1250
1388
  */
1251
1389
  'id': string;
1390
+ /**
1391
+ *
1392
+ * @type {AccountEntity}
1393
+ * @memberof HauteNaomiV1Response
1394
+ */
1395
+ 'creator': AccountEntity;
1252
1396
  /**
1253
1397
  *
1254
1398
  * @type {string}
@@ -1273,6 +1417,18 @@ export interface HauteNaomiV1Response {
1273
1417
  * @memberof HauteNaomiV1Response
1274
1418
  */
1275
1419
  'updatedAt': string;
1420
+ /**
1421
+ *
1422
+ * @type {Array<CollectionEntity>}
1423
+ * @memberof HauteNaomiV1Response
1424
+ */
1425
+ 'collections': Array<CollectionEntity>;
1426
+ /**
1427
+ *
1428
+ * @type {Array<RepresentationEntity>}
1429
+ * @memberof HauteNaomiV1Response
1430
+ */
1431
+ 'representations': Array<RepresentationEntity>;
1276
1432
  }
1277
1433
  export declare const HauteNaomiV1ResponseKindEnum: {
1278
1434
  readonly Operation: "operation";
@@ -1302,6 +1458,12 @@ export interface ImageEntity {
1302
1458
  * @memberof ImageEntity
1303
1459
  */
1304
1460
  'id': string;
1461
+ /**
1462
+ *
1463
+ * @type {AccountEntity}
1464
+ * @memberof ImageEntity
1465
+ */
1466
+ 'creator': AccountEntity;
1305
1467
  /**
1306
1468
  *
1307
1469
  * @type {string}
@@ -1326,6 +1488,24 @@ export interface ImageEntity {
1326
1488
  * @memberof ImageEntity
1327
1489
  */
1328
1490
  'updatedAt': string;
1491
+ /**
1492
+ *
1493
+ * @type {Array<CollectionEntity>}
1494
+ * @memberof ImageEntity
1495
+ */
1496
+ 'collections': Array<CollectionEntity>;
1497
+ /**
1498
+ *
1499
+ * @type {Array<RepresentationEntity>}
1500
+ * @memberof ImageEntity
1501
+ */
1502
+ 'representations': Array<RepresentationEntity>;
1503
+ /**
1504
+ *
1505
+ * @type {string}
1506
+ * @memberof ImageEntity
1507
+ */
1508
+ 'uri': string;
1329
1509
  /**
1330
1510
  *
1331
1511
  * @type {number}
@@ -1447,6 +1627,12 @@ export interface ImagineKateV1Response {
1447
1627
  * @memberof ImagineKateV1Response
1448
1628
  */
1449
1629
  'id': string;
1630
+ /**
1631
+ *
1632
+ * @type {AccountEntity}
1633
+ * @memberof ImagineKateV1Response
1634
+ */
1635
+ 'creator': AccountEntity;
1450
1636
  /**
1451
1637
  *
1452
1638
  * @type {string}
@@ -1471,6 +1657,18 @@ export interface ImagineKateV1Response {
1471
1657
  * @memberof ImagineKateV1Response
1472
1658
  */
1473
1659
  'updatedAt': string;
1660
+ /**
1661
+ *
1662
+ * @type {Array<CollectionEntity>}
1663
+ * @memberof ImagineKateV1Response
1664
+ */
1665
+ 'collections': Array<CollectionEntity>;
1666
+ /**
1667
+ *
1668
+ * @type {Array<RepresentationEntity>}
1669
+ * @memberof ImagineKateV1Response
1670
+ */
1671
+ 'representations': Array<RepresentationEntity>;
1474
1672
  }
1475
1673
  export declare const ImagineKateV1ResponseKindEnum: {
1476
1674
  readonly Operation: "operation";
@@ -1537,6 +1735,12 @@ export interface InpaintKateV1Response {
1537
1735
  * @memberof InpaintKateV1Response
1538
1736
  */
1539
1737
  'id': string;
1738
+ /**
1739
+ *
1740
+ * @type {AccountEntity}
1741
+ * @memberof InpaintKateV1Response
1742
+ */
1743
+ 'creator': AccountEntity;
1540
1744
  /**
1541
1745
  *
1542
1746
  * @type {string}
@@ -1561,6 +1765,18 @@ export interface InpaintKateV1Response {
1561
1765
  * @memberof InpaintKateV1Response
1562
1766
  */
1563
1767
  'updatedAt': string;
1768
+ /**
1769
+ *
1770
+ * @type {Array<CollectionEntity>}
1771
+ * @memberof InpaintKateV1Response
1772
+ */
1773
+ 'collections': Array<CollectionEntity>;
1774
+ /**
1775
+ *
1776
+ * @type {Array<RepresentationEntity>}
1777
+ * @memberof InpaintKateV1Response
1778
+ */
1779
+ 'representations': Array<RepresentationEntity>;
1564
1780
  }
1565
1781
  export declare const InpaintKateV1ResponseKindEnum: {
1566
1782
  readonly Operation: "operation";
@@ -2322,6 +2538,12 @@ export interface NegateImageV1Response {
2322
2538
  * @memberof NegateImageV1Response
2323
2539
  */
2324
2540
  'id': string;
2541
+ /**
2542
+ *
2543
+ * @type {AccountEntity}
2544
+ * @memberof NegateImageV1Response
2545
+ */
2546
+ 'creator': AccountEntity;
2325
2547
  /**
2326
2548
  *
2327
2549
  * @type {string}
@@ -2346,6 +2568,18 @@ export interface NegateImageV1Response {
2346
2568
  * @memberof NegateImageV1Response
2347
2569
  */
2348
2570
  'updatedAt': string;
2571
+ /**
2572
+ *
2573
+ * @type {Array<CollectionEntity>}
2574
+ * @memberof NegateImageV1Response
2575
+ */
2576
+ 'collections': Array<CollectionEntity>;
2577
+ /**
2578
+ *
2579
+ * @type {Array<RepresentationEntity>}
2580
+ * @memberof NegateImageV1Response
2581
+ */
2582
+ 'representations': Array<RepresentationEntity>;
2349
2583
  }
2350
2584
  export declare const NegateImageV1ResponseKindEnum: {
2351
2585
  readonly Operation: "operation";
@@ -2437,6 +2671,12 @@ export interface ObjectDetectionV1Response {
2437
2671
  * @memberof ObjectDetectionV1Response
2438
2672
  */
2439
2673
  'id': string;
2674
+ /**
2675
+ *
2676
+ * @type {AccountEntity}
2677
+ * @memberof ObjectDetectionV1Response
2678
+ */
2679
+ 'creator': AccountEntity;
2440
2680
  /**
2441
2681
  *
2442
2682
  * @type {string}
@@ -2461,6 +2701,18 @@ export interface ObjectDetectionV1Response {
2461
2701
  * @memberof ObjectDetectionV1Response
2462
2702
  */
2463
2703
  'updatedAt': string;
2704
+ /**
2705
+ *
2706
+ * @type {Array<CollectionEntity>}
2707
+ * @memberof ObjectDetectionV1Response
2708
+ */
2709
+ 'collections': Array<CollectionEntity>;
2710
+ /**
2711
+ *
2712
+ * @type {Array<RepresentationEntity>}
2713
+ * @memberof ObjectDetectionV1Response
2714
+ */
2715
+ 'representations': Array<RepresentationEntity>;
2464
2716
  }
2465
2717
  export declare const ObjectDetectionV1ResponseKindEnum: {
2466
2718
  readonly Operation: "operation";
@@ -2514,6 +2766,12 @@ export interface OperationEntity {
2514
2766
  * @memberof OperationEntity
2515
2767
  */
2516
2768
  'id': string;
2769
+ /**
2770
+ *
2771
+ * @type {AccountEntity}
2772
+ * @memberof OperationEntity
2773
+ */
2774
+ 'creator': AccountEntity;
2517
2775
  /**
2518
2776
  *
2519
2777
  * @type {string}
@@ -2538,6 +2796,18 @@ export interface OperationEntity {
2538
2796
  * @memberof OperationEntity
2539
2797
  */
2540
2798
  'updatedAt': string;
2799
+ /**
2800
+ *
2801
+ * @type {Array<CollectionEntity>}
2802
+ * @memberof OperationEntity
2803
+ */
2804
+ 'collections': Array<CollectionEntity>;
2805
+ /**
2806
+ *
2807
+ * @type {Array<RepresentationEntity>}
2808
+ * @memberof OperationEntity
2809
+ */
2810
+ 'representations': Array<RepresentationEntity>;
2541
2811
  }
2542
2812
  export declare const OperationEntityKindEnum: {
2543
2813
  readonly Operation: "operation";
@@ -2650,16 +2920,22 @@ export interface PipelineEntity {
2650
2920
  'status': PipelineEntityStatusEnum;
2651
2921
  /**
2652
2922
  *
2653
- * @type {object}
2923
+ * @type {Array<object>}
2654
2924
  * @memberof PipelineEntity
2655
2925
  */
2656
- 'tasks': object;
2926
+ 'tasks': Array<object>;
2657
2927
  /**
2658
2928
  *
2659
2929
  * @type {string}
2660
2930
  * @memberof PipelineEntity
2661
2931
  */
2662
2932
  'id': string;
2933
+ /**
2934
+ *
2935
+ * @type {AccountEntity}
2936
+ * @memberof PipelineEntity
2937
+ */
2938
+ 'creator': AccountEntity;
2663
2939
  /**
2664
2940
  *
2665
2941
  * @type {string}
@@ -2684,6 +2960,18 @@ export interface PipelineEntity {
2684
2960
  * @memberof PipelineEntity
2685
2961
  */
2686
2962
  'updatedAt': string;
2963
+ /**
2964
+ *
2965
+ * @type {Array<CollectionEntity>}
2966
+ * @memberof PipelineEntity
2967
+ */
2968
+ 'collections': Array<CollectionEntity>;
2969
+ /**
2970
+ *
2971
+ * @type {Array<RepresentationEntity>}
2972
+ * @memberof PipelineEntity
2973
+ */
2974
+ 'representations': Array<RepresentationEntity>;
2687
2975
  }
2688
2976
  export declare const PipelineEntityKindEnum: {
2689
2977
  readonly Pipeline: "pipeline";
@@ -2713,6 +3001,12 @@ export interface PoseEntity {
2713
3001
  * @memberof PoseEntity
2714
3002
  */
2715
3003
  'sourceImage': ImageEntity;
3004
+ /**
3005
+ *
3006
+ * @type {string}
3007
+ * @memberof PoseEntity
3008
+ */
3009
+ 'sourceImageId': string;
2716
3010
  /**
2717
3011
  *
2718
3012
  * @type {ImageEntity}
@@ -2731,6 +3025,12 @@ export interface PoseEntity {
2731
3025
  * @memberof PoseEntity
2732
3026
  */
2733
3027
  'id': string;
3028
+ /**
3029
+ *
3030
+ * @type {AccountEntity}
3031
+ * @memberof PoseEntity
3032
+ */
3033
+ 'creator': AccountEntity;
2734
3034
  /**
2735
3035
  *
2736
3036
  * @type {string}
@@ -2755,6 +3055,18 @@ export interface PoseEntity {
2755
3055
  * @memberof PoseEntity
2756
3056
  */
2757
3057
  'updatedAt': string;
3058
+ /**
3059
+ *
3060
+ * @type {Array<CollectionEntity>}
3061
+ * @memberof PoseEntity
3062
+ */
3063
+ 'collections': Array<CollectionEntity>;
3064
+ /**
3065
+ *
3066
+ * @type {Array<RepresentationEntity>}
3067
+ * @memberof PoseEntity
3068
+ */
3069
+ 'representations': Array<RepresentationEntity>;
2758
3070
  }
2759
3071
  export declare const PoseEntityKindEnum: {
2760
3072
  readonly Pose: "pose";
@@ -2834,6 +3146,12 @@ export interface PoseEstimationV1Response {
2834
3146
  * @memberof PoseEstimationV1Response
2835
3147
  */
2836
3148
  'id': string;
3149
+ /**
3150
+ *
3151
+ * @type {AccountEntity}
3152
+ * @memberof PoseEstimationV1Response
3153
+ */
3154
+ 'creator': AccountEntity;
2837
3155
  /**
2838
3156
  *
2839
3157
  * @type {string}
@@ -2858,6 +3176,18 @@ export interface PoseEstimationV1Response {
2858
3176
  * @memberof PoseEstimationV1Response
2859
3177
  */
2860
3178
  'updatedAt': string;
3179
+ /**
3180
+ *
3181
+ * @type {Array<CollectionEntity>}
3182
+ * @memberof PoseEstimationV1Response
3183
+ */
3184
+ 'collections': Array<CollectionEntity>;
3185
+ /**
3186
+ *
3187
+ * @type {Array<RepresentationEntity>}
3188
+ * @memberof PoseEstimationV1Response
3189
+ */
3190
+ 'representations': Array<RepresentationEntity>;
2861
3191
  }
2862
3192
  export declare const PoseEstimationV1ResponseKindEnum: {
2863
3193
  readonly Operation: "operation";
@@ -2979,21 +3309,75 @@ export interface RemoveItemsFromStackParamsDto {
2979
3309
  /**
2980
3310
  *
2981
3311
  * @export
2982
- * @interface ResourceEntity
3312
+ * @interface RepresentationEntity
2983
3313
  */
2984
- export interface ResourceEntity {
3314
+ export interface RepresentationEntity {
2985
3315
  /**
2986
3316
  *
2987
3317
  * @type {string}
2988
- * @memberof ResourceEntity
3318
+ * @memberof RepresentationEntity
2989
3319
  */
2990
- 'kind': ResourceEntityKindEnum;
3320
+ 'id': string;
2991
3321
  /**
2992
3322
  *
2993
- * @type {string}
2994
- * @memberof ResourceEntity
3323
+ * @type {ResourceEntity}
3324
+ * @memberof RepresentationEntity
3325
+ */
3326
+ 'resource': ResourceEntity;
3327
+ /**
3328
+ *
3329
+ * @type {string}
3330
+ * @memberof RepresentationEntity
3331
+ */
3332
+ 'resourceId': string;
3333
+ /**
3334
+ *
3335
+ * @type {string}
3336
+ * @memberof RepresentationEntity
3337
+ */
3338
+ 'createdAt': string;
3339
+ /**
3340
+ *
3341
+ * @type {string}
3342
+ * @memberof RepresentationEntity
3343
+ */
3344
+ 'type': RepresentationEntityTypeEnum;
3345
+ /**
3346
+ *
3347
+ * @type {string}
3348
+ * @memberof RepresentationEntity
3349
+ */
3350
+ 'uri': string;
3351
+ }
3352
+ export declare const RepresentationEntityTypeEnum: {
3353
+ readonly SamV1: "sam.v1";
3354
+ readonly PoseV1: "pose.v1";
3355
+ };
3356
+ export type RepresentationEntityTypeEnum = typeof RepresentationEntityTypeEnum[keyof typeof RepresentationEntityTypeEnum];
3357
+ /**
3358
+ *
3359
+ * @export
3360
+ * @interface ResourceEntity
3361
+ */
3362
+ export interface ResourceEntity {
3363
+ /**
3364
+ *
3365
+ * @type {string}
3366
+ * @memberof ResourceEntity
3367
+ */
3368
+ 'kind': ResourceEntityKindEnum;
3369
+ /**
3370
+ *
3371
+ * @type {string}
3372
+ * @memberof ResourceEntity
2995
3373
  */
2996
3374
  'id': string;
3375
+ /**
3376
+ *
3377
+ * @type {AccountEntity}
3378
+ * @memberof ResourceEntity
3379
+ */
3380
+ 'creator': AccountEntity;
2997
3381
  /**
2998
3382
  *
2999
3383
  * @type {string}
@@ -3018,6 +3402,18 @@ export interface ResourceEntity {
3018
3402
  * @memberof ResourceEntity
3019
3403
  */
3020
3404
  'updatedAt': string;
3405
+ /**
3406
+ *
3407
+ * @type {Array<CollectionEntity>}
3408
+ * @memberof ResourceEntity
3409
+ */
3410
+ 'collections': Array<CollectionEntity>;
3411
+ /**
3412
+ *
3413
+ * @type {Array<RepresentationEntity>}
3414
+ * @memberof ResourceEntity
3415
+ */
3416
+ 'representations': Array<RepresentationEntity>;
3021
3417
  }
3022
3418
  export declare const ResourceEntityKindEnum: {
3023
3419
  readonly Collection: "collection";
@@ -3103,6 +3499,12 @@ export interface SegmentAnythingEmbeddingsV1Response {
3103
3499
  * @memberof SegmentAnythingEmbeddingsV1Response
3104
3500
  */
3105
3501
  'id': string;
3502
+ /**
3503
+ *
3504
+ * @type {AccountEntity}
3505
+ * @memberof SegmentAnythingEmbeddingsV1Response
3506
+ */
3507
+ 'creator': AccountEntity;
3106
3508
  /**
3107
3509
  *
3108
3510
  * @type {string}
@@ -3127,6 +3529,18 @@ export interface SegmentAnythingEmbeddingsV1Response {
3127
3529
  * @memberof SegmentAnythingEmbeddingsV1Response
3128
3530
  */
3129
3531
  'updatedAt': string;
3532
+ /**
3533
+ *
3534
+ * @type {Array<CollectionEntity>}
3535
+ * @memberof SegmentAnythingEmbeddingsV1Response
3536
+ */
3537
+ 'collections': Array<CollectionEntity>;
3538
+ /**
3539
+ *
3540
+ * @type {Array<RepresentationEntity>}
3541
+ * @memberof SegmentAnythingEmbeddingsV1Response
3542
+ */
3543
+ 'representations': Array<RepresentationEntity>;
3130
3544
  }
3131
3545
  export declare const SegmentAnythingEmbeddingsV1ResponseKindEnum: {
3132
3546
  readonly Operation: "operation";
@@ -3218,6 +3632,12 @@ export interface SegmentAnythingMaskV1Response {
3218
3632
  * @memberof SegmentAnythingMaskV1Response
3219
3633
  */
3220
3634
  'id': string;
3635
+ /**
3636
+ *
3637
+ * @type {AccountEntity}
3638
+ * @memberof SegmentAnythingMaskV1Response
3639
+ */
3640
+ 'creator': AccountEntity;
3221
3641
  /**
3222
3642
  *
3223
3643
  * @type {string}
@@ -3242,6 +3662,18 @@ export interface SegmentAnythingMaskV1Response {
3242
3662
  * @memberof SegmentAnythingMaskV1Response
3243
3663
  */
3244
3664
  'updatedAt': string;
3665
+ /**
3666
+ *
3667
+ * @type {Array<CollectionEntity>}
3668
+ * @memberof SegmentAnythingMaskV1Response
3669
+ */
3670
+ 'collections': Array<CollectionEntity>;
3671
+ /**
3672
+ *
3673
+ * @type {Array<RepresentationEntity>}
3674
+ * @memberof SegmentAnythingMaskV1Response
3675
+ */
3676
+ 'representations': Array<RepresentationEntity>;
3245
3677
  }
3246
3678
  export declare const SegmentAnythingMaskV1ResponseKindEnum: {
3247
3679
  readonly Operation: "operation";
@@ -3309,6 +3741,12 @@ export interface StackEntity {
3309
3741
  * @memberof StackEntity
3310
3742
  */
3311
3743
  'id': string;
3744
+ /**
3745
+ *
3746
+ * @type {AccountEntity}
3747
+ * @memberof StackEntity
3748
+ */
3749
+ 'creator': AccountEntity;
3312
3750
  /**
3313
3751
  *
3314
3752
  * @type {string}
@@ -3333,6 +3771,18 @@ export interface StackEntity {
3333
3771
  * @memberof StackEntity
3334
3772
  */
3335
3773
  'updatedAt': string;
3774
+ /**
3775
+ *
3776
+ * @type {Array<CollectionEntity>}
3777
+ * @memberof StackEntity
3778
+ */
3779
+ 'collections': Array<CollectionEntity>;
3780
+ /**
3781
+ *
3782
+ * @type {Array<RepresentationEntity>}
3783
+ * @memberof StackEntity
3784
+ */
3785
+ 'representations': Array<RepresentationEntity>;
3336
3786
  }
3337
3787
  export declare const StackEntityKindEnum: {
3338
3788
  readonly Stack: "stack";
@@ -3355,6 +3805,12 @@ export interface StorageEntity {
3355
3805
  * @memberof StorageEntity
3356
3806
  */
3357
3807
  'kind': StorageEntityKindEnum;
3808
+ /**
3809
+ *
3810
+ * @type {string}
3811
+ * @memberof StorageEntity
3812
+ */
3813
+ 'applicationId': string;
3358
3814
  /**
3359
3815
  *
3360
3816
  * @type {string}
@@ -3373,6 +3829,12 @@ export interface StorageEntity {
3373
3829
  * @memberof StorageEntity
3374
3830
  */
3375
3831
  'id': string;
3832
+ /**
3833
+ *
3834
+ * @type {AccountEntity}
3835
+ * @memberof StorageEntity
3836
+ */
3837
+ 'creator': AccountEntity;
3376
3838
  /**
3377
3839
  *
3378
3840
  * @type {string}
@@ -3397,6 +3859,18 @@ export interface StorageEntity {
3397
3859
  * @memberof StorageEntity
3398
3860
  */
3399
3861
  'updatedAt': string;
3862
+ /**
3863
+ *
3864
+ * @type {Array<CollectionEntity>}
3865
+ * @memberof StorageEntity
3866
+ */
3867
+ 'collections': Array<CollectionEntity>;
3868
+ /**
3869
+ *
3870
+ * @type {Array<RepresentationEntity>}
3871
+ * @memberof StorageEntity
3872
+ */
3873
+ 'representations': Array<RepresentationEntity>;
3400
3874
  }
3401
3875
  export declare const StorageEntityKindEnum: {
3402
3876
  readonly Storage: "storage";
@@ -3546,6 +4020,12 @@ export interface UpscaleV1Response {
3546
4020
  * @memberof UpscaleV1Response
3547
4021
  */
3548
4022
  'id': string;
4023
+ /**
4024
+ *
4025
+ * @type {AccountEntity}
4026
+ * @memberof UpscaleV1Response
4027
+ */
4028
+ 'creator': AccountEntity;
3549
4029
  /**
3550
4030
  *
3551
4031
  * @type {string}
@@ -3570,6 +4050,18 @@ export interface UpscaleV1Response {
3570
4050
  * @memberof UpscaleV1Response
3571
4051
  */
3572
4052
  'updatedAt': string;
4053
+ /**
4054
+ *
4055
+ * @type {Array<CollectionEntity>}
4056
+ * @memberof UpscaleV1Response
4057
+ */
4058
+ 'collections': Array<CollectionEntity>;
4059
+ /**
4060
+ *
4061
+ * @type {Array<RepresentationEntity>}
4062
+ * @memberof UpscaleV1Response
4063
+ */
4064
+ 'representations': Array<RepresentationEntity>;
3573
4065
  }
3574
4066
  export declare const UpscaleV1ResponseKindEnum: {
3575
4067
  readonly Operation: "operation";
@@ -3623,6 +4115,12 @@ export interface VtonGiseleV1Response {
3623
4115
  * @memberof VtonGiseleV1Response
3624
4116
  */
3625
4117
  'id': string;
4118
+ /**
4119
+ *
4120
+ * @type {AccountEntity}
4121
+ * @memberof VtonGiseleV1Response
4122
+ */
4123
+ 'creator': AccountEntity;
3626
4124
  /**
3627
4125
  *
3628
4126
  * @type {string}
@@ -3647,6 +4145,18 @@ export interface VtonGiseleV1Response {
3647
4145
  * @memberof VtonGiseleV1Response
3648
4146
  */
3649
4147
  'updatedAt': string;
4148
+ /**
4149
+ *
4150
+ * @type {Array<CollectionEntity>}
4151
+ * @memberof VtonGiseleV1Response
4152
+ */
4153
+ 'collections': Array<CollectionEntity>;
4154
+ /**
4155
+ *
4156
+ * @type {Array<RepresentationEntity>}
4157
+ * @memberof VtonGiseleV1Response
4158
+ */
4159
+ 'representations': Array<RepresentationEntity>;
3650
4160
  }
3651
4161
  export declare const VtonGiseleV1ResponseKindEnum: {
3652
4162
  readonly Operation: "operation";
@@ -3658,6 +4168,19 @@ export declare const VtonGiseleV1ResponseStatusEnum: {
3658
4168
  readonly Failed: "failed";
3659
4169
  };
3660
4170
  export type VtonGiseleV1ResponseStatusEnum = typeof VtonGiseleV1ResponseStatusEnum[keyof typeof VtonGiseleV1ResponseStatusEnum];
4171
+ /**
4172
+ *
4173
+ * @export
4174
+ * @interface WaitOperationParamsDto
4175
+ */
4176
+ export interface WaitOperationParamsDto {
4177
+ /**
4178
+ *
4179
+ * @type {string}
4180
+ * @memberof WaitOperationParamsDto
4181
+ */
4182
+ 'id': string;
4183
+ }
3661
4184
  /**
3662
4185
  * AccessApi - axios parameter creator
3663
4186
  * @export
@@ -4233,6 +4756,111 @@ export declare const CallApiAxiosParamCreator: (configuration?: Configuration) =
4233
4756
  * @throws {RequiredError}
4234
4757
  */
4235
4758
  callControllerCallOperationsMetadataUpdateV1: (updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4759
+ /**
4760
+ *
4761
+ * @param {CompositeV1ControllerInput} compositeV1ControllerInput
4762
+ * @param {*} [options] Override http request option.
4763
+ * @throws {RequiredError}
4764
+ */
4765
+ callControllerCallOperationsRunCompositeV1V1: (compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4766
+ /**
4767
+ *
4768
+ * @param {CutV1ControllerInput} cutV1ControllerInput
4769
+ * @param {*} [options] Override http request option.
4770
+ * @throws {RequiredError}
4771
+ */
4772
+ callControllerCallOperationsRunCutV1V1: (cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4773
+ /**
4774
+ *
4775
+ * @param {GPTV1ControllerInput} gPTV1ControllerInput
4776
+ * @param {*} [options] Override http request option.
4777
+ * @throws {RequiredError}
4778
+ */
4779
+ callControllerCallOperationsRunGptV1V1: (gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4780
+ /**
4781
+ *
4782
+ * @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
4783
+ * @param {*} [options] Override http request option.
4784
+ * @throws {RequiredError}
4785
+ */
4786
+ callControllerCallOperationsRunHauteLindaV1V1: (lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4787
+ /**
4788
+ *
4789
+ * @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
4790
+ * @param {*} [options] Override http request option.
4791
+ * @throws {RequiredError}
4792
+ */
4793
+ callControllerCallOperationsRunHauteNaomiV1V1: (naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4794
+ /**
4795
+ *
4796
+ * @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
4797
+ * @param {*} [options] Override http request option.
4798
+ * @throws {RequiredError}
4799
+ */
4800
+ callControllerCallOperationsRunImagineKateV1V1: (kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4801
+ /**
4802
+ *
4803
+ * @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
4804
+ * @param {*} [options] Override http request option.
4805
+ * @throws {RequiredError}
4806
+ */
4807
+ callControllerCallOperationsRunInpaintKateV1V1: (kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4808
+ /**
4809
+ *
4810
+ * @param {NegateImageV1ControllerInput} negateImageV1ControllerInput
4811
+ * @param {*} [options] Override http request option.
4812
+ * @throws {RequiredError}
4813
+ */
4814
+ callControllerCallOperationsRunNegateImageV1V1: (negateImageV1ControllerInput: NegateImageV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4815
+ /**
4816
+ *
4817
+ * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
4818
+ * @param {*} [options] Override http request option.
4819
+ * @throws {RequiredError}
4820
+ */
4821
+ callControllerCallOperationsRunObjectDetectionV1V1: (objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4822
+ /**
4823
+ *
4824
+ * @param {PoseEstimationV1ControllerInput} poseEstimationV1ControllerInput
4825
+ * @param {*} [options] Override http request option.
4826
+ * @throws {RequiredError}
4827
+ */
4828
+ callControllerCallOperationsRunPoseEstimationV1V1: (poseEstimationV1ControllerInput: PoseEstimationV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4829
+ /**
4830
+ *
4831
+ * @param {SegmentAnythingEmbeddingsV1ControllerInput} segmentAnythingEmbeddingsV1ControllerInput
4832
+ * @param {*} [options] Override http request option.
4833
+ * @throws {RequiredError}
4834
+ */
4835
+ callControllerCallOperationsRunSegmentAnythingEmbeddingsV1V1: (segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4836
+ /**
4837
+ *
4838
+ * @param {SegmentAnythingMaskV1ControllerInput} segmentAnythingMaskV1ControllerInput
4839
+ * @param {*} [options] Override http request option.
4840
+ * @throws {RequiredError}
4841
+ */
4842
+ callControllerCallOperationsRunSegmentAnythingMaskV1V1: (segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4843
+ /**
4844
+ *
4845
+ * @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
4846
+ * @param {*} [options] Override http request option.
4847
+ * @throws {RequiredError}
4848
+ */
4849
+ callControllerCallOperationsRunUpscaleV1V1: (upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4850
+ /**
4851
+ *
4852
+ * @param {GiseleVtonV1ControllerInput} giseleVtonV1ControllerInput
4853
+ * @param {*} [options] Override http request option.
4854
+ * @throws {RequiredError}
4855
+ */
4856
+ callControllerCallOperationsRunVtonGiseleV1V1: (giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4857
+ /**
4858
+ *
4859
+ * @param {WaitOperationParamsDto} waitOperationParamsDto
4860
+ * @param {*} [options] Override http request option.
4861
+ * @throws {RequiredError}
4862
+ */
4863
+ callControllerCallOperationsWaitV1: (waitOperationParamsDto: WaitOperationParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4236
4864
  /**
4237
4865
  *
4238
4866
  * @param {GetPoseParamsDto} getPoseParamsDto
@@ -4528,56 +5156,161 @@ export declare const CallApiFp: (configuration?: Configuration) => {
4528
5156
  callControllerCallOperationsMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
4529
5157
  /**
4530
5158
  *
4531
- * @param {GetPoseParamsDto} getPoseParamsDto
5159
+ * @param {CompositeV1ControllerInput} compositeV1ControllerInput
4532
5160
  * @param {*} [options] Override http request option.
4533
5161
  * @throws {RequiredError}
4534
5162
  */
4535
- callControllerCallPosesGetV1(getPoseParamsDto: GetPoseParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoseEntity>>;
5163
+ callControllerCallOperationsRunCompositeV1V1(compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CompositeV1Response>>;
4536
5164
  /**
4537
5165
  *
4538
- * @param {ListPosesParamsDto} listPosesParamsDto
5166
+ * @param {CutV1ControllerInput} cutV1ControllerInput
4539
5167
  * @param {*} [options] Override http request option.
4540
5168
  * @throws {RequiredError}
4541
5169
  */
4542
- callControllerCallPosesListV1(listPosesParamsDto: ListPosesParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPosesDto>>;
5170
+ callControllerCallOperationsRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CutV1Response>>;
4543
5171
  /**
4544
5172
  *
4545
- * @param {SetPosePreviewDto} setPosePreviewDto
5173
+ * @param {GPTV1ControllerInput} gPTV1ControllerInput
4546
5174
  * @param {*} [options] Override http request option.
4547
5175
  * @throws {RequiredError}
4548
5176
  */
4549
- callControllerCallPosesPreviewSetV1(setPosePreviewDto: SetPosePreviewDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5177
+ callControllerCallOperationsRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GptV1Response>>;
4550
5178
  /**
4551
5179
  *
4552
- * @param {AttachAccessParamsDto} attachAccessParamsDto
5180
+ * @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
4553
5181
  * @param {*} [options] Override http request option.
4554
5182
  * @throws {RequiredError}
4555
5183
  */
4556
- callControllerCallResourceAccessAttachV1(attachAccessParamsDto: AttachAccessParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5184
+ callControllerCallOperationsRunHauteLindaV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HauteLindaV1Response>>;
4557
5185
  /**
4558
5186
  *
4559
- * @param {GrantAccessParamsDto} grantAccessParamsDto
5187
+ * @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
4560
5188
  * @param {*} [options] Override http request option.
4561
5189
  * @throws {RequiredError}
4562
5190
  */
4563
- callControllerCallResourceAccessGrantV1(grantAccessParamsDto: GrantAccessParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5191
+ callControllerCallOperationsRunHauteNaomiV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HauteNaomiV1Response>>;
4564
5192
  /**
4565
5193
  *
4566
- * @param {CreateStackParamsDto} createStackParamsDto
5194
+ * @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
4567
5195
  * @param {*} [options] Override http request option.
4568
5196
  * @throws {RequiredError}
4569
5197
  */
4570
- callControllerCallStacksCreateV1(createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StackEntity>>;
5198
+ callControllerCallOperationsRunImagineKateV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImagineKateV1Response>>;
4571
5199
  /**
4572
5200
  *
4573
- * @param {GetStackParamsDto} getStackParamsDto
5201
+ * @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
4574
5202
  * @param {*} [options] Override http request option.
4575
5203
  * @throws {RequiredError}
4576
5204
  */
4577
- callControllerCallStacksGetV1(getStackParamsDto: GetStackParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StackEntity>>;
5205
+ callControllerCallOperationsRunInpaintKateV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InpaintKateV1Response>>;
4578
5206
  /**
4579
5207
  *
4580
- * @param {AddItemsToStackParamsDto} addItemsToStackParamsDto
5208
+ * @param {NegateImageV1ControllerInput} negateImageV1ControllerInput
5209
+ * @param {*} [options] Override http request option.
5210
+ * @throws {RequiredError}
5211
+ */
5212
+ callControllerCallOperationsRunNegateImageV1V1(negateImageV1ControllerInput: NegateImageV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NegateImageV1Response>>;
5213
+ /**
5214
+ *
5215
+ * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
5216
+ * @param {*} [options] Override http request option.
5217
+ * @throws {RequiredError}
5218
+ */
5219
+ callControllerCallOperationsRunObjectDetectionV1V1(objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ObjectDetectionV1Response>>;
5220
+ /**
5221
+ *
5222
+ * @param {PoseEstimationV1ControllerInput} poseEstimationV1ControllerInput
5223
+ * @param {*} [options] Override http request option.
5224
+ * @throws {RequiredError}
5225
+ */
5226
+ callControllerCallOperationsRunPoseEstimationV1V1(poseEstimationV1ControllerInput: PoseEstimationV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoseEstimationV1Response>>;
5227
+ /**
5228
+ *
5229
+ * @param {SegmentAnythingEmbeddingsV1ControllerInput} segmentAnythingEmbeddingsV1ControllerInput
5230
+ * @param {*} [options] Override http request option.
5231
+ * @throws {RequiredError}
5232
+ */
5233
+ callControllerCallOperationsRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SegmentAnythingEmbeddingsV1Response>>;
5234
+ /**
5235
+ *
5236
+ * @param {SegmentAnythingMaskV1ControllerInput} segmentAnythingMaskV1ControllerInput
5237
+ * @param {*} [options] Override http request option.
5238
+ * @throws {RequiredError}
5239
+ */
5240
+ callControllerCallOperationsRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SegmentAnythingMaskV1Response>>;
5241
+ /**
5242
+ *
5243
+ * @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
5244
+ * @param {*} [options] Override http request option.
5245
+ * @throws {RequiredError}
5246
+ */
5247
+ callControllerCallOperationsRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpscaleV1Response>>;
5248
+ /**
5249
+ *
5250
+ * @param {GiseleVtonV1ControllerInput} giseleVtonV1ControllerInput
5251
+ * @param {*} [options] Override http request option.
5252
+ * @throws {RequiredError}
5253
+ */
5254
+ callControllerCallOperationsRunVtonGiseleV1V1(giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VtonGiseleV1Response>>;
5255
+ /**
5256
+ *
5257
+ * @param {WaitOperationParamsDto} waitOperationParamsDto
5258
+ * @param {*} [options] Override http request option.
5259
+ * @throws {RequiredError}
5260
+ */
5261
+ callControllerCallOperationsWaitV1(waitOperationParamsDto: WaitOperationParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
5262
+ /**
5263
+ *
5264
+ * @param {GetPoseParamsDto} getPoseParamsDto
5265
+ * @param {*} [options] Override http request option.
5266
+ * @throws {RequiredError}
5267
+ */
5268
+ callControllerCallPosesGetV1(getPoseParamsDto: GetPoseParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoseEntity>>;
5269
+ /**
5270
+ *
5271
+ * @param {ListPosesParamsDto} listPosesParamsDto
5272
+ * @param {*} [options] Override http request option.
5273
+ * @throws {RequiredError}
5274
+ */
5275
+ callControllerCallPosesListV1(listPosesParamsDto: ListPosesParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPosesDto>>;
5276
+ /**
5277
+ *
5278
+ * @param {SetPosePreviewDto} setPosePreviewDto
5279
+ * @param {*} [options] Override http request option.
5280
+ * @throws {RequiredError}
5281
+ */
5282
+ callControllerCallPosesPreviewSetV1(setPosePreviewDto: SetPosePreviewDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5283
+ /**
5284
+ *
5285
+ * @param {AttachAccessParamsDto} attachAccessParamsDto
5286
+ * @param {*} [options] Override http request option.
5287
+ * @throws {RequiredError}
5288
+ */
5289
+ callControllerCallResourceAccessAttachV1(attachAccessParamsDto: AttachAccessParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5290
+ /**
5291
+ *
5292
+ * @param {GrantAccessParamsDto} grantAccessParamsDto
5293
+ * @param {*} [options] Override http request option.
5294
+ * @throws {RequiredError}
5295
+ */
5296
+ callControllerCallResourceAccessGrantV1(grantAccessParamsDto: GrantAccessParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5297
+ /**
5298
+ *
5299
+ * @param {CreateStackParamsDto} createStackParamsDto
5300
+ * @param {*} [options] Override http request option.
5301
+ * @throws {RequiredError}
5302
+ */
5303
+ callControllerCallStacksCreateV1(createStackParamsDto: CreateStackParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StackEntity>>;
5304
+ /**
5305
+ *
5306
+ * @param {GetStackParamsDto} getStackParamsDto
5307
+ * @param {*} [options] Override http request option.
5308
+ * @throws {RequiredError}
5309
+ */
5310
+ callControllerCallStacksGetV1(getStackParamsDto: GetStackParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StackEntity>>;
5311
+ /**
5312
+ *
5313
+ * @param {AddItemsToStackParamsDto} addItemsToStackParamsDto
4581
5314
  * @param {*} [options] Override http request option.
4582
5315
  * @throws {RequiredError}
4583
5316
  */
@@ -4819,6 +5552,111 @@ export declare const CallApiFactory: (configuration?: Configuration, basePath?:
4819
5552
  * @throws {RequiredError}
4820
5553
  */
4821
5554
  callControllerCallOperationsMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
5555
+ /**
5556
+ *
5557
+ * @param {CompositeV1ControllerInput} compositeV1ControllerInput
5558
+ * @param {*} [options] Override http request option.
5559
+ * @throws {RequiredError}
5560
+ */
5561
+ callControllerCallOperationsRunCompositeV1V1(compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<CompositeV1Response>;
5562
+ /**
5563
+ *
5564
+ * @param {CutV1ControllerInput} cutV1ControllerInput
5565
+ * @param {*} [options] Override http request option.
5566
+ * @throws {RequiredError}
5567
+ */
5568
+ callControllerCallOperationsRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<CutV1Response>;
5569
+ /**
5570
+ *
5571
+ * @param {GPTV1ControllerInput} gPTV1ControllerInput
5572
+ * @param {*} [options] Override http request option.
5573
+ * @throws {RequiredError}
5574
+ */
5575
+ callControllerCallOperationsRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<GptV1Response>;
5576
+ /**
5577
+ *
5578
+ * @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
5579
+ * @param {*} [options] Override http request option.
5580
+ * @throws {RequiredError}
5581
+ */
5582
+ callControllerCallOperationsRunHauteLindaV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<HauteLindaV1Response>;
5583
+ /**
5584
+ *
5585
+ * @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
5586
+ * @param {*} [options] Override http request option.
5587
+ * @throws {RequiredError}
5588
+ */
5589
+ callControllerCallOperationsRunHauteNaomiV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<HauteNaomiV1Response>;
5590
+ /**
5591
+ *
5592
+ * @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
5593
+ * @param {*} [options] Override http request option.
5594
+ * @throws {RequiredError}
5595
+ */
5596
+ callControllerCallOperationsRunImagineKateV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<ImagineKateV1Response>;
5597
+ /**
5598
+ *
5599
+ * @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
5600
+ * @param {*} [options] Override http request option.
5601
+ * @throws {RequiredError}
5602
+ */
5603
+ callControllerCallOperationsRunInpaintKateV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<InpaintKateV1Response>;
5604
+ /**
5605
+ *
5606
+ * @param {NegateImageV1ControllerInput} negateImageV1ControllerInput
5607
+ * @param {*} [options] Override http request option.
5608
+ * @throws {RequiredError}
5609
+ */
5610
+ callControllerCallOperationsRunNegateImageV1V1(negateImageV1ControllerInput: NegateImageV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<NegateImageV1Response>;
5611
+ /**
5612
+ *
5613
+ * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
5614
+ * @param {*} [options] Override http request option.
5615
+ * @throws {RequiredError}
5616
+ */
5617
+ callControllerCallOperationsRunObjectDetectionV1V1(objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<ObjectDetectionV1Response>;
5618
+ /**
5619
+ *
5620
+ * @param {PoseEstimationV1ControllerInput} poseEstimationV1ControllerInput
5621
+ * @param {*} [options] Override http request option.
5622
+ * @throws {RequiredError}
5623
+ */
5624
+ callControllerCallOperationsRunPoseEstimationV1V1(poseEstimationV1ControllerInput: PoseEstimationV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<PoseEstimationV1Response>;
5625
+ /**
5626
+ *
5627
+ * @param {SegmentAnythingEmbeddingsV1ControllerInput} segmentAnythingEmbeddingsV1ControllerInput
5628
+ * @param {*} [options] Override http request option.
5629
+ * @throws {RequiredError}
5630
+ */
5631
+ callControllerCallOperationsRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<SegmentAnythingEmbeddingsV1Response>;
5632
+ /**
5633
+ *
5634
+ * @param {SegmentAnythingMaskV1ControllerInput} segmentAnythingMaskV1ControllerInput
5635
+ * @param {*} [options] Override http request option.
5636
+ * @throws {RequiredError}
5637
+ */
5638
+ callControllerCallOperationsRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<SegmentAnythingMaskV1Response>;
5639
+ /**
5640
+ *
5641
+ * @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
5642
+ * @param {*} [options] Override http request option.
5643
+ * @throws {RequiredError}
5644
+ */
5645
+ callControllerCallOperationsRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<UpscaleV1Response>;
5646
+ /**
5647
+ *
5648
+ * @param {GiseleVtonV1ControllerInput} giseleVtonV1ControllerInput
5649
+ * @param {*} [options] Override http request option.
5650
+ * @throws {RequiredError}
5651
+ */
5652
+ callControllerCallOperationsRunVtonGiseleV1V1(giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<VtonGiseleV1Response>;
5653
+ /**
5654
+ *
5655
+ * @param {WaitOperationParamsDto} waitOperationParamsDto
5656
+ * @param {*} [options] Override http request option.
5657
+ * @throws {RequiredError}
5658
+ */
5659
+ callControllerCallOperationsWaitV1(waitOperationParamsDto: WaitOperationParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
4822
5660
  /**
4823
5661
  *
4824
5662
  * @param {GetPoseParamsDto} getPoseParamsDto
@@ -5140,6 +5978,126 @@ export declare class CallApi extends BaseAPI {
5140
5978
  * @memberof CallApi
5141
5979
  */
5142
5980
  callControllerCallOperationsMetadataUpdateV1(updateResourceMetadataDto: UpdateResourceMetadataDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
5981
+ /**
5982
+ *
5983
+ * @param {CompositeV1ControllerInput} compositeV1ControllerInput
5984
+ * @param {*} [options] Override http request option.
5985
+ * @throws {RequiredError}
5986
+ * @memberof CallApi
5987
+ */
5988
+ callControllerCallOperationsRunCompositeV1V1(compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompositeV1Response, any>>;
5989
+ /**
5990
+ *
5991
+ * @param {CutV1ControllerInput} cutV1ControllerInput
5992
+ * @param {*} [options] Override http request option.
5993
+ * @throws {RequiredError}
5994
+ * @memberof CallApi
5995
+ */
5996
+ callControllerCallOperationsRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CutV1Response, any>>;
5997
+ /**
5998
+ *
5999
+ * @param {GPTV1ControllerInput} gPTV1ControllerInput
6000
+ * @param {*} [options] Override http request option.
6001
+ * @throws {RequiredError}
6002
+ * @memberof CallApi
6003
+ */
6004
+ callControllerCallOperationsRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GptV1Response, any>>;
6005
+ /**
6006
+ *
6007
+ * @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
6008
+ * @param {*} [options] Override http request option.
6009
+ * @throws {RequiredError}
6010
+ * @memberof CallApi
6011
+ */
6012
+ callControllerCallOperationsRunHauteLindaV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HauteLindaV1Response, any>>;
6013
+ /**
6014
+ *
6015
+ * @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
6016
+ * @param {*} [options] Override http request option.
6017
+ * @throws {RequiredError}
6018
+ * @memberof CallApi
6019
+ */
6020
+ callControllerCallOperationsRunHauteNaomiV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HauteNaomiV1Response, any>>;
6021
+ /**
6022
+ *
6023
+ * @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
6024
+ * @param {*} [options] Override http request option.
6025
+ * @throws {RequiredError}
6026
+ * @memberof CallApi
6027
+ */
6028
+ callControllerCallOperationsRunImagineKateV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImagineKateV1Response, any>>;
6029
+ /**
6030
+ *
6031
+ * @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
6032
+ * @param {*} [options] Override http request option.
6033
+ * @throws {RequiredError}
6034
+ * @memberof CallApi
6035
+ */
6036
+ callControllerCallOperationsRunInpaintKateV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InpaintKateV1Response, any>>;
6037
+ /**
6038
+ *
6039
+ * @param {NegateImageV1ControllerInput} negateImageV1ControllerInput
6040
+ * @param {*} [options] Override http request option.
6041
+ * @throws {RequiredError}
6042
+ * @memberof CallApi
6043
+ */
6044
+ callControllerCallOperationsRunNegateImageV1V1(negateImageV1ControllerInput: NegateImageV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NegateImageV1Response, any>>;
6045
+ /**
6046
+ *
6047
+ * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
6048
+ * @param {*} [options] Override http request option.
6049
+ * @throws {RequiredError}
6050
+ * @memberof CallApi
6051
+ */
6052
+ callControllerCallOperationsRunObjectDetectionV1V1(objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ObjectDetectionV1Response, any>>;
6053
+ /**
6054
+ *
6055
+ * @param {PoseEstimationV1ControllerInput} poseEstimationV1ControllerInput
6056
+ * @param {*} [options] Override http request option.
6057
+ * @throws {RequiredError}
6058
+ * @memberof CallApi
6059
+ */
6060
+ callControllerCallOperationsRunPoseEstimationV1V1(poseEstimationV1ControllerInput: PoseEstimationV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PoseEstimationV1Response, any>>;
6061
+ /**
6062
+ *
6063
+ * @param {SegmentAnythingEmbeddingsV1ControllerInput} segmentAnythingEmbeddingsV1ControllerInput
6064
+ * @param {*} [options] Override http request option.
6065
+ * @throws {RequiredError}
6066
+ * @memberof CallApi
6067
+ */
6068
+ callControllerCallOperationsRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SegmentAnythingEmbeddingsV1Response, any>>;
6069
+ /**
6070
+ *
6071
+ * @param {SegmentAnythingMaskV1ControllerInput} segmentAnythingMaskV1ControllerInput
6072
+ * @param {*} [options] Override http request option.
6073
+ * @throws {RequiredError}
6074
+ * @memberof CallApi
6075
+ */
6076
+ callControllerCallOperationsRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SegmentAnythingMaskV1Response, any>>;
6077
+ /**
6078
+ *
6079
+ * @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
6080
+ * @param {*} [options] Override http request option.
6081
+ * @throws {RequiredError}
6082
+ * @memberof CallApi
6083
+ */
6084
+ callControllerCallOperationsRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpscaleV1Response, any>>;
6085
+ /**
6086
+ *
6087
+ * @param {GiseleVtonV1ControllerInput} giseleVtonV1ControllerInput
6088
+ * @param {*} [options] Override http request option.
6089
+ * @throws {RequiredError}
6090
+ * @memberof CallApi
6091
+ */
6092
+ callControllerCallOperationsRunVtonGiseleV1V1(giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VtonGiseleV1Response, any>>;
6093
+ /**
6094
+ *
6095
+ * @param {WaitOperationParamsDto} waitOperationParamsDto
6096
+ * @param {*} [options] Override http request option.
6097
+ * @throws {RequiredError}
6098
+ * @memberof CallApi
6099
+ */
6100
+ callControllerCallOperationsWaitV1(waitOperationParamsDto: WaitOperationParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
5143
6101
  /**
5144
6102
  *
5145
6103
  * @param {GetPoseParamsDto} getPoseParamsDto