@hautechai/sdk 0.0.24 → 0.0.26

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.
@@ -378,6 +378,83 @@ export interface CompositeV1Input {
378
378
  */
379
379
  'elements': Array<CompositeElement>;
380
380
  }
381
+ /**
382
+ *
383
+ * @export
384
+ * @interface CompositeV1Response
385
+ */
386
+ export interface CompositeV1Response {
387
+ /**
388
+ *
389
+ * @type {string}
390
+ * @memberof CompositeV1Response
391
+ */
392
+ 'kind': CompositeV1ResponseKindEnum;
393
+ /**
394
+ *
395
+ * @type {OperationOutputImageSingle}
396
+ * @memberof CompositeV1Response
397
+ */
398
+ 'output'?: OperationOutputImageSingle | null;
399
+ /**
400
+ *
401
+ * @type {object}
402
+ * @memberof CompositeV1Response
403
+ */
404
+ 'input': object;
405
+ /**
406
+ *
407
+ * @type {string}
408
+ * @memberof CompositeV1Response
409
+ */
410
+ 'status': CompositeV1ResponseStatusEnum;
411
+ /**
412
+ *
413
+ * @type {string}
414
+ * @memberof CompositeV1Response
415
+ */
416
+ 'type': string;
417
+ /**
418
+ *
419
+ * @type {string}
420
+ * @memberof CompositeV1Response
421
+ */
422
+ 'id': string;
423
+ /**
424
+ *
425
+ * @type {string}
426
+ * @memberof CompositeV1Response
427
+ */
428
+ 'creatorId': string;
429
+ /**
430
+ *
431
+ * @type {object}
432
+ * @memberof CompositeV1Response
433
+ */
434
+ 'metadata': object;
435
+ /**
436
+ *
437
+ * @type {string}
438
+ * @memberof CompositeV1Response
439
+ */
440
+ 'createdAt': string;
441
+ /**
442
+ *
443
+ * @type {string}
444
+ * @memberof CompositeV1Response
445
+ */
446
+ 'updatedAt': string;
447
+ }
448
+ export declare const CompositeV1ResponseKindEnum: {
449
+ readonly Operation: "operation";
450
+ };
451
+ export type CompositeV1ResponseKindEnum = typeof CompositeV1ResponseKindEnum[keyof typeof CompositeV1ResponseKindEnum];
452
+ export declare const CompositeV1ResponseStatusEnum: {
453
+ readonly Pending: "pending";
454
+ readonly Finished: "finished";
455
+ readonly Failed: "failed";
456
+ };
457
+ export type CompositeV1ResponseStatusEnum = typeof CompositeV1ResponseStatusEnum[keyof typeof CompositeV1ResponseStatusEnum];
381
458
  /**
382
459
  *
383
460
  * @export
@@ -506,6 +583,83 @@ export interface CutV1Input {
506
583
  */
507
584
  'maskImageId': string;
508
585
  }
586
+ /**
587
+ *
588
+ * @export
589
+ * @interface CutV1Response
590
+ */
591
+ export interface CutV1Response {
592
+ /**
593
+ *
594
+ * @type {string}
595
+ * @memberof CutV1Response
596
+ */
597
+ 'kind': CutV1ResponseKindEnum;
598
+ /**
599
+ *
600
+ * @type {OperationOutputImageSingle}
601
+ * @memberof CutV1Response
602
+ */
603
+ 'output'?: OperationOutputImageSingle | null;
604
+ /**
605
+ *
606
+ * @type {object}
607
+ * @memberof CutV1Response
608
+ */
609
+ 'input': object;
610
+ /**
611
+ *
612
+ * @type {string}
613
+ * @memberof CutV1Response
614
+ */
615
+ 'status': CutV1ResponseStatusEnum;
616
+ /**
617
+ *
618
+ * @type {string}
619
+ * @memberof CutV1Response
620
+ */
621
+ 'type': string;
622
+ /**
623
+ *
624
+ * @type {string}
625
+ * @memberof CutV1Response
626
+ */
627
+ 'id': string;
628
+ /**
629
+ *
630
+ * @type {string}
631
+ * @memberof CutV1Response
632
+ */
633
+ 'creatorId': string;
634
+ /**
635
+ *
636
+ * @type {object}
637
+ * @memberof CutV1Response
638
+ */
639
+ 'metadata': object;
640
+ /**
641
+ *
642
+ * @type {string}
643
+ * @memberof CutV1Response
644
+ */
645
+ 'createdAt': string;
646
+ /**
647
+ *
648
+ * @type {string}
649
+ * @memberof CutV1Response
650
+ */
651
+ 'updatedAt': string;
652
+ }
653
+ export declare const CutV1ResponseKindEnum: {
654
+ readonly Operation: "operation";
655
+ };
656
+ export type CutV1ResponseKindEnum = typeof CutV1ResponseKindEnum[keyof typeof CutV1ResponseKindEnum];
657
+ export declare const CutV1ResponseStatusEnum: {
658
+ readonly Pending: "pending";
659
+ readonly Finished: "finished";
660
+ readonly Failed: "failed";
661
+ };
662
+ export type CutV1ResponseStatusEnum = typeof CutV1ResponseStatusEnum[keyof typeof CutV1ResponseStatusEnum];
509
663
  /**
510
664
  *
511
665
  * @export
@@ -814,6 +968,83 @@ export declare const GiseleVtonV1InputCategoryEnum: {
814
968
  readonly UpperBody: "upper_body";
815
969
  };
816
970
  export type GiseleVtonV1InputCategoryEnum = typeof GiseleVtonV1InputCategoryEnum[keyof typeof GiseleVtonV1InputCategoryEnum];
971
+ /**
972
+ *
973
+ * @export
974
+ * @interface GptV1Response
975
+ */
976
+ export interface GptV1Response {
977
+ /**
978
+ *
979
+ * @type {string}
980
+ * @memberof GptV1Response
981
+ */
982
+ 'kind': GptV1ResponseKindEnum;
983
+ /**
984
+ *
985
+ * @type {OperationOutputJSON}
986
+ * @memberof GptV1Response
987
+ */
988
+ 'output'?: OperationOutputJSON | null;
989
+ /**
990
+ *
991
+ * @type {object}
992
+ * @memberof GptV1Response
993
+ */
994
+ 'input': object;
995
+ /**
996
+ *
997
+ * @type {string}
998
+ * @memberof GptV1Response
999
+ */
1000
+ 'status': GptV1ResponseStatusEnum;
1001
+ /**
1002
+ *
1003
+ * @type {string}
1004
+ * @memberof GptV1Response
1005
+ */
1006
+ 'type': string;
1007
+ /**
1008
+ *
1009
+ * @type {string}
1010
+ * @memberof GptV1Response
1011
+ */
1012
+ 'id': string;
1013
+ /**
1014
+ *
1015
+ * @type {string}
1016
+ * @memberof GptV1Response
1017
+ */
1018
+ 'creatorId': string;
1019
+ /**
1020
+ *
1021
+ * @type {object}
1022
+ * @memberof GptV1Response
1023
+ */
1024
+ 'metadata': object;
1025
+ /**
1026
+ *
1027
+ * @type {string}
1028
+ * @memberof GptV1Response
1029
+ */
1030
+ 'createdAt': string;
1031
+ /**
1032
+ *
1033
+ * @type {string}
1034
+ * @memberof GptV1Response
1035
+ */
1036
+ 'updatedAt': string;
1037
+ }
1038
+ export declare const GptV1ResponseKindEnum: {
1039
+ readonly Operation: "operation";
1040
+ };
1041
+ export type GptV1ResponseKindEnum = typeof GptV1ResponseKindEnum[keyof typeof GptV1ResponseKindEnum];
1042
+ export declare const GptV1ResponseStatusEnum: {
1043
+ readonly Pending: "pending";
1044
+ readonly Finished: "finished";
1045
+ readonly Failed: "failed";
1046
+ };
1047
+ export type GptV1ResponseStatusEnum = typeof GptV1ResponseStatusEnum[keyof typeof GptV1ResponseStatusEnum];
817
1048
  /**
818
1049
  *
819
1050
  * @export
@@ -902,137 +1133,445 @@ export interface GroupEntity {
902
1133
  /**
903
1134
  *
904
1135
  * @export
905
- * @interface ImageEntity
1136
+ * @interface HauteLindaV1Response
906
1137
  */
907
- export interface ImageEntity {
1138
+ export interface HauteLindaV1Response {
908
1139
  /**
909
1140
  *
910
1141
  * @type {string}
911
- * @memberof ImageEntity
1142
+ * @memberof HauteLindaV1Response
912
1143
  */
913
- 'kind': ImageEntityKindEnum;
1144
+ 'kind': HauteLindaV1ResponseKindEnum;
914
1145
  /**
915
1146
  *
916
- * @type {string}
917
- * @memberof ImageEntity
1147
+ * @type {OperationOutputImageMultiple}
1148
+ * @memberof HauteLindaV1Response
918
1149
  */
919
- 'id': string;
1150
+ 'output'?: OperationOutputImageMultiple | null;
920
1151
  /**
921
1152
  *
922
- * @type {string}
923
- * @memberof ImageEntity
1153
+ * @type {object}
1154
+ * @memberof HauteLindaV1Response
924
1155
  */
925
- 'creatorId': string;
1156
+ 'input': object;
926
1157
  /**
927
1158
  *
928
- * @type {object}
929
- * @memberof ImageEntity
1159
+ * @type {string}
1160
+ * @memberof HauteLindaV1Response
930
1161
  */
931
- 'metadata': object;
1162
+ 'status': HauteLindaV1ResponseStatusEnum;
932
1163
  /**
933
1164
  *
934
1165
  * @type {string}
935
- * @memberof ImageEntity
1166
+ * @memberof HauteLindaV1Response
936
1167
  */
937
- 'createdAt': string;
1168
+ 'type': string;
938
1169
  /**
939
1170
  *
940
1171
  * @type {string}
941
- * @memberof ImageEntity
1172
+ * @memberof HauteLindaV1Response
942
1173
  */
943
- 'updatedAt': string;
1174
+ 'id': string;
944
1175
  /**
945
1176
  *
946
- * @type {number}
947
- * @memberof ImageEntity
1177
+ * @type {string}
1178
+ * @memberof HauteLindaV1Response
948
1179
  */
949
- 'width': number;
1180
+ 'creatorId': string;
950
1181
  /**
951
1182
  *
952
- * @type {number}
953
- * @memberof ImageEntity
1183
+ * @type {object}
1184
+ * @memberof HauteLindaV1Response
954
1185
  */
955
- 'height': number;
1186
+ 'metadata': object;
956
1187
  /**
957
1188
  *
958
1189
  * @type {string}
959
- * @memberof ImageEntity
1190
+ * @memberof HauteLindaV1Response
960
1191
  */
961
- 'format': string;
1192
+ 'createdAt': string;
962
1193
  /**
963
1194
  *
964
1195
  * @type {string}
965
- * @memberof ImageEntity
1196
+ * @memberof HauteLindaV1Response
966
1197
  */
967
- 'url': string;
1198
+ 'updatedAt': string;
968
1199
  }
969
- export declare const ImageEntityKindEnum: {
970
- readonly Collection: "collection";
1200
+ export declare const HauteLindaV1ResponseKindEnum: {
971
1201
  readonly Operation: "operation";
972
- readonly Stack: "stack";
973
- readonly Image: "image";
974
- readonly Pose: "pose";
975
- readonly Storage: "storage";
976
- readonly Pipeline: "pipeline";
977
1202
  };
978
- export type ImageEntityKindEnum = typeof ImageEntityKindEnum[keyof typeof ImageEntityKindEnum];
1203
+ export type HauteLindaV1ResponseKindEnum = typeof HauteLindaV1ResponseKindEnum[keyof typeof HauteLindaV1ResponseKindEnum];
1204
+ export declare const HauteLindaV1ResponseStatusEnum: {
1205
+ readonly Pending: "pending";
1206
+ readonly Finished: "finished";
1207
+ readonly Failed: "failed";
1208
+ };
1209
+ export type HauteLindaV1ResponseStatusEnum = typeof HauteLindaV1ResponseStatusEnum[keyof typeof HauteLindaV1ResponseStatusEnum];
979
1210
  /**
980
1211
  *
981
1212
  * @export
982
- * @interface ImageRepresentationResponseDto
1213
+ * @interface HauteNaomiV1Response
983
1214
  */
984
- export interface ImageRepresentationResponseDto {
1215
+ export interface HauteNaomiV1Response {
985
1216
  /**
986
1217
  *
987
1218
  * @type {string}
988
- * @memberof ImageRepresentationResponseDto
1219
+ * @memberof HauteNaomiV1Response
989
1220
  */
990
- 'imageId': string;
1221
+ 'kind': HauteNaomiV1ResponseKindEnum;
991
1222
  /**
992
1223
  *
993
- * @type {string}
994
- * @memberof ImageRepresentationResponseDto
1224
+ * @type {OperationOutputImageSingle}
1225
+ * @memberof HauteNaomiV1Response
995
1226
  */
996
- 'type': string;
1227
+ 'output'?: OperationOutputImageSingle | null;
1228
+ /**
1229
+ *
1230
+ * @type {object}
1231
+ * @memberof HauteNaomiV1Response
1232
+ */
1233
+ 'input': object;
997
1234
  /**
998
1235
  *
999
1236
  * @type {string}
1000
- * @memberof ImageRepresentationResponseDto
1237
+ * @memberof HauteNaomiV1Response
1001
1238
  */
1002
- 'url': string;
1003
- }
1004
- /**
1005
- *
1006
- * @export
1007
- * @interface ImageUrlResponseDto
1008
- */
1009
- export interface ImageUrlResponseDto {
1239
+ 'status': HauteNaomiV1ResponseStatusEnum;
1010
1240
  /**
1011
1241
  *
1012
1242
  * @type {string}
1013
- * @memberof ImageUrlResponseDto
1243
+ * @memberof HauteNaomiV1Response
1014
1244
  */
1015
- 'id': string;
1245
+ 'type': string;
1016
1246
  /**
1017
1247
  *
1018
1248
  * @type {string}
1019
- * @memberof ImageUrlResponseDto
1249
+ * @memberof HauteNaomiV1Response
1020
1250
  */
1021
- 'url': string;
1022
- }
1023
- /**
1024
- *
1025
- * @export
1026
- * @interface InitializeImageUploadResultDto
1027
- */
1028
- export interface InitializeImageUploadResultDto {
1251
+ 'id': string;
1029
1252
  /**
1030
1253
  *
1031
1254
  * @type {string}
1032
- * @memberof InitializeImageUploadResultDto
1255
+ * @memberof HauteNaomiV1Response
1256
+ */
1257
+ 'creatorId': string;
1258
+ /**
1259
+ *
1260
+ * @type {object}
1261
+ * @memberof HauteNaomiV1Response
1262
+ */
1263
+ 'metadata': object;
1264
+ /**
1265
+ *
1266
+ * @type {string}
1267
+ * @memberof HauteNaomiV1Response
1268
+ */
1269
+ 'createdAt': string;
1270
+ /**
1271
+ *
1272
+ * @type {string}
1273
+ * @memberof HauteNaomiV1Response
1274
+ */
1275
+ 'updatedAt': string;
1276
+ }
1277
+ export declare const HauteNaomiV1ResponseKindEnum: {
1278
+ readonly Operation: "operation";
1279
+ };
1280
+ export type HauteNaomiV1ResponseKindEnum = typeof HauteNaomiV1ResponseKindEnum[keyof typeof HauteNaomiV1ResponseKindEnum];
1281
+ export declare const HauteNaomiV1ResponseStatusEnum: {
1282
+ readonly Pending: "pending";
1283
+ readonly Finished: "finished";
1284
+ readonly Failed: "failed";
1285
+ };
1286
+ export type HauteNaomiV1ResponseStatusEnum = typeof HauteNaomiV1ResponseStatusEnum[keyof typeof HauteNaomiV1ResponseStatusEnum];
1287
+ /**
1288
+ *
1289
+ * @export
1290
+ * @interface ImageEntity
1291
+ */
1292
+ export interface ImageEntity {
1293
+ /**
1294
+ *
1295
+ * @type {string}
1296
+ * @memberof ImageEntity
1297
+ */
1298
+ 'kind': ImageEntityKindEnum;
1299
+ /**
1300
+ *
1301
+ * @type {string}
1302
+ * @memberof ImageEntity
1303
+ */
1304
+ 'id': string;
1305
+ /**
1306
+ *
1307
+ * @type {string}
1308
+ * @memberof ImageEntity
1309
+ */
1310
+ 'creatorId': string;
1311
+ /**
1312
+ *
1313
+ * @type {object}
1314
+ * @memberof ImageEntity
1315
+ */
1316
+ 'metadata': object;
1317
+ /**
1318
+ *
1319
+ * @type {string}
1320
+ * @memberof ImageEntity
1321
+ */
1322
+ 'createdAt': string;
1323
+ /**
1324
+ *
1325
+ * @type {string}
1326
+ * @memberof ImageEntity
1327
+ */
1328
+ 'updatedAt': string;
1329
+ /**
1330
+ *
1331
+ * @type {number}
1332
+ * @memberof ImageEntity
1333
+ */
1334
+ 'width': number;
1335
+ /**
1336
+ *
1337
+ * @type {number}
1338
+ * @memberof ImageEntity
1339
+ */
1340
+ 'height': number;
1341
+ /**
1342
+ *
1343
+ * @type {string}
1344
+ * @memberof ImageEntity
1345
+ */
1346
+ 'format': string;
1347
+ /**
1348
+ *
1349
+ * @type {string}
1350
+ * @memberof ImageEntity
1351
+ */
1352
+ 'url': string;
1353
+ }
1354
+ export declare const ImageEntityKindEnum: {
1355
+ readonly Collection: "collection";
1356
+ readonly Operation: "operation";
1357
+ readonly Stack: "stack";
1358
+ readonly Image: "image";
1359
+ readonly Pose: "pose";
1360
+ readonly Storage: "storage";
1361
+ readonly Pipeline: "pipeline";
1362
+ };
1363
+ export type ImageEntityKindEnum = typeof ImageEntityKindEnum[keyof typeof ImageEntityKindEnum];
1364
+ /**
1365
+ *
1366
+ * @export
1367
+ * @interface ImageRepresentationResponseDto
1368
+ */
1369
+ export interface ImageRepresentationResponseDto {
1370
+ /**
1371
+ *
1372
+ * @type {string}
1373
+ * @memberof ImageRepresentationResponseDto
1374
+ */
1375
+ 'imageId': string;
1376
+ /**
1377
+ *
1378
+ * @type {string}
1379
+ * @memberof ImageRepresentationResponseDto
1380
+ */
1381
+ 'type': string;
1382
+ /**
1383
+ *
1384
+ * @type {string}
1385
+ * @memberof ImageRepresentationResponseDto
1386
+ */
1387
+ 'url': string;
1388
+ }
1389
+ /**
1390
+ *
1391
+ * @export
1392
+ * @interface ImageUrlResponseDto
1393
+ */
1394
+ export interface ImageUrlResponseDto {
1395
+ /**
1396
+ *
1397
+ * @type {string}
1398
+ * @memberof ImageUrlResponseDto
1399
+ */
1400
+ 'id': string;
1401
+ /**
1402
+ *
1403
+ * @type {string}
1404
+ * @memberof ImageUrlResponseDto
1405
+ */
1406
+ 'url': string;
1407
+ }
1408
+ /**
1409
+ *
1410
+ * @export
1411
+ * @interface ImagineKateV1Response
1412
+ */
1413
+ export interface ImagineKateV1Response {
1414
+ /**
1415
+ *
1416
+ * @type {string}
1417
+ * @memberof ImagineKateV1Response
1418
+ */
1419
+ 'kind': ImagineKateV1ResponseKindEnum;
1420
+ /**
1421
+ *
1422
+ * @type {OperationOutputImageSingle}
1423
+ * @memberof ImagineKateV1Response
1424
+ */
1425
+ 'output'?: OperationOutputImageSingle | null;
1426
+ /**
1427
+ *
1428
+ * @type {object}
1429
+ * @memberof ImagineKateV1Response
1430
+ */
1431
+ 'input': object;
1432
+ /**
1433
+ *
1434
+ * @type {string}
1435
+ * @memberof ImagineKateV1Response
1436
+ */
1437
+ 'status': ImagineKateV1ResponseStatusEnum;
1438
+ /**
1439
+ *
1440
+ * @type {string}
1441
+ * @memberof ImagineKateV1Response
1442
+ */
1443
+ 'type': string;
1444
+ /**
1445
+ *
1446
+ * @type {string}
1447
+ * @memberof ImagineKateV1Response
1448
+ */
1449
+ 'id': string;
1450
+ /**
1451
+ *
1452
+ * @type {string}
1453
+ * @memberof ImagineKateV1Response
1454
+ */
1455
+ 'creatorId': string;
1456
+ /**
1457
+ *
1458
+ * @type {object}
1459
+ * @memberof ImagineKateV1Response
1460
+ */
1461
+ 'metadata': object;
1462
+ /**
1463
+ *
1464
+ * @type {string}
1465
+ * @memberof ImagineKateV1Response
1466
+ */
1467
+ 'createdAt': string;
1468
+ /**
1469
+ *
1470
+ * @type {string}
1471
+ * @memberof ImagineKateV1Response
1472
+ */
1473
+ 'updatedAt': string;
1474
+ }
1475
+ export declare const ImagineKateV1ResponseKindEnum: {
1476
+ readonly Operation: "operation";
1477
+ };
1478
+ export type ImagineKateV1ResponseKindEnum = typeof ImagineKateV1ResponseKindEnum[keyof typeof ImagineKateV1ResponseKindEnum];
1479
+ export declare const ImagineKateV1ResponseStatusEnum: {
1480
+ readonly Pending: "pending";
1481
+ readonly Finished: "finished";
1482
+ readonly Failed: "failed";
1483
+ };
1484
+ export type ImagineKateV1ResponseStatusEnum = typeof ImagineKateV1ResponseStatusEnum[keyof typeof ImagineKateV1ResponseStatusEnum];
1485
+ /**
1486
+ *
1487
+ * @export
1488
+ * @interface InitializeImageUploadResultDto
1489
+ */
1490
+ export interface InitializeImageUploadResultDto {
1491
+ /**
1492
+ *
1493
+ * @type {string}
1494
+ * @memberof InitializeImageUploadResultDto
1033
1495
  */
1034
1496
  'uploadUrl': string;
1035
1497
  }
1498
+ /**
1499
+ *
1500
+ * @export
1501
+ * @interface InpaintKateV1Response
1502
+ */
1503
+ export interface InpaintKateV1Response {
1504
+ /**
1505
+ *
1506
+ * @type {string}
1507
+ * @memberof InpaintKateV1Response
1508
+ */
1509
+ 'kind': InpaintKateV1ResponseKindEnum;
1510
+ /**
1511
+ *
1512
+ * @type {OperationOutputImageSingle}
1513
+ * @memberof InpaintKateV1Response
1514
+ */
1515
+ 'output'?: OperationOutputImageSingle | null;
1516
+ /**
1517
+ *
1518
+ * @type {object}
1519
+ * @memberof InpaintKateV1Response
1520
+ */
1521
+ 'input': object;
1522
+ /**
1523
+ *
1524
+ * @type {string}
1525
+ * @memberof InpaintKateV1Response
1526
+ */
1527
+ 'status': InpaintKateV1ResponseStatusEnum;
1528
+ /**
1529
+ *
1530
+ * @type {string}
1531
+ * @memberof InpaintKateV1Response
1532
+ */
1533
+ 'type': string;
1534
+ /**
1535
+ *
1536
+ * @type {string}
1537
+ * @memberof InpaintKateV1Response
1538
+ */
1539
+ 'id': string;
1540
+ /**
1541
+ *
1542
+ * @type {string}
1543
+ * @memberof InpaintKateV1Response
1544
+ */
1545
+ 'creatorId': string;
1546
+ /**
1547
+ *
1548
+ * @type {object}
1549
+ * @memberof InpaintKateV1Response
1550
+ */
1551
+ 'metadata': object;
1552
+ /**
1553
+ *
1554
+ * @type {string}
1555
+ * @memberof InpaintKateV1Response
1556
+ */
1557
+ 'createdAt': string;
1558
+ /**
1559
+ *
1560
+ * @type {string}
1561
+ * @memberof InpaintKateV1Response
1562
+ */
1563
+ 'updatedAt': string;
1564
+ }
1565
+ export declare const InpaintKateV1ResponseKindEnum: {
1566
+ readonly Operation: "operation";
1567
+ };
1568
+ export type InpaintKateV1ResponseKindEnum = typeof InpaintKateV1ResponseKindEnum[keyof typeof InpaintKateV1ResponseKindEnum];
1569
+ export declare const InpaintKateV1ResponseStatusEnum: {
1570
+ readonly Pending: "pending";
1571
+ readonly Finished: "finished";
1572
+ readonly Failed: "failed";
1573
+ };
1574
+ export type InpaintKateV1ResponseStatusEnum = typeof InpaintKateV1ResponseStatusEnum[keyof typeof InpaintKateV1ResponseStatusEnum];
1036
1575
  /**
1037
1576
  *
1038
1577
  * @export
@@ -1119,13 +1658,13 @@ export interface KateInpaintV1Input {
1119
1658
  * @type {string}
1120
1659
  * @memberof KateInpaintV1Input
1121
1660
  */
1122
- 'image': string;
1661
+ 'imageId': string;
1123
1662
  /**
1124
1663
  *
1125
1664
  * @type {string}
1126
1665
  * @memberof KateInpaintV1Input
1127
1666
  */
1128
- 'mask': string;
1667
+ 'maskImageId'?: string;
1129
1668
  /**
1130
1669
  *
1131
1670
  * @type {number}
@@ -1155,13 +1694,13 @@ export interface KateInpaintV1Input {
1155
1694
  * @type {number}
1156
1695
  * @memberof KateInpaintV1Input
1157
1696
  */
1158
- 'height': number;
1697
+ 'height'?: number;
1159
1698
  /**
1160
1699
  *
1161
1700
  * @type {number}
1162
1701
  * @memberof KateInpaintV1Input
1163
1702
  */
1164
- 'width': number;
1703
+ 'width'?: number;
1165
1704
  /**
1166
1705
  *
1167
1706
  * @type {number}
@@ -1709,6 +2248,115 @@ export interface NaomiHauteV1Input {
1709
2248
  */
1710
2249
  'numInferenceSteps'?: number;
1711
2250
  }
2251
+ /**
2252
+ *
2253
+ * @export
2254
+ * @interface NegateImageV1ControllerInput
2255
+ */
2256
+ export interface NegateImageV1ControllerInput {
2257
+ /**
2258
+ *
2259
+ * @type {NegateImageV1Input}
2260
+ * @memberof NegateImageV1ControllerInput
2261
+ */
2262
+ 'input': NegateImageV1Input;
2263
+ /**
2264
+ *
2265
+ * @type {object}
2266
+ * @memberof NegateImageV1ControllerInput
2267
+ */
2268
+ 'metadata'?: object;
2269
+ }
2270
+ /**
2271
+ *
2272
+ * @export
2273
+ * @interface NegateImageV1Input
2274
+ */
2275
+ export interface NegateImageV1Input {
2276
+ /**
2277
+ *
2278
+ * @type {string}
2279
+ * @memberof NegateImageV1Input
2280
+ */
2281
+ 'imageId': string;
2282
+ }
2283
+ /**
2284
+ *
2285
+ * @export
2286
+ * @interface NegateImageV1Response
2287
+ */
2288
+ export interface NegateImageV1Response {
2289
+ /**
2290
+ *
2291
+ * @type {string}
2292
+ * @memberof NegateImageV1Response
2293
+ */
2294
+ 'kind': NegateImageV1ResponseKindEnum;
2295
+ /**
2296
+ *
2297
+ * @type {OperationOutputImageSingle}
2298
+ * @memberof NegateImageV1Response
2299
+ */
2300
+ 'output'?: OperationOutputImageSingle | null;
2301
+ /**
2302
+ *
2303
+ * @type {object}
2304
+ * @memberof NegateImageV1Response
2305
+ */
2306
+ 'input': object;
2307
+ /**
2308
+ *
2309
+ * @type {string}
2310
+ * @memberof NegateImageV1Response
2311
+ */
2312
+ 'status': NegateImageV1ResponseStatusEnum;
2313
+ /**
2314
+ *
2315
+ * @type {string}
2316
+ * @memberof NegateImageV1Response
2317
+ */
2318
+ 'type': string;
2319
+ /**
2320
+ *
2321
+ * @type {string}
2322
+ * @memberof NegateImageV1Response
2323
+ */
2324
+ 'id': string;
2325
+ /**
2326
+ *
2327
+ * @type {string}
2328
+ * @memberof NegateImageV1Response
2329
+ */
2330
+ 'creatorId': string;
2331
+ /**
2332
+ *
2333
+ * @type {object}
2334
+ * @memberof NegateImageV1Response
2335
+ */
2336
+ 'metadata': object;
2337
+ /**
2338
+ *
2339
+ * @type {string}
2340
+ * @memberof NegateImageV1Response
2341
+ */
2342
+ 'createdAt': string;
2343
+ /**
2344
+ *
2345
+ * @type {string}
2346
+ * @memberof NegateImageV1Response
2347
+ */
2348
+ 'updatedAt': string;
2349
+ }
2350
+ export declare const NegateImageV1ResponseKindEnum: {
2351
+ readonly Operation: "operation";
2352
+ };
2353
+ export type NegateImageV1ResponseKindEnum = typeof NegateImageV1ResponseKindEnum[keyof typeof NegateImageV1ResponseKindEnum];
2354
+ export declare const NegateImageV1ResponseStatusEnum: {
2355
+ readonly Pending: "pending";
2356
+ readonly Finished: "finished";
2357
+ readonly Failed: "failed";
2358
+ };
2359
+ export type NegateImageV1ResponseStatusEnum = typeof NegateImageV1ResponseStatusEnum[keyof typeof NegateImageV1ResponseStatusEnum];
1712
2360
  /**
1713
2361
  *
1714
2362
  * @export
@@ -1747,6 +2395,83 @@ export interface ObjectDetectionV1Input {
1747
2395
  */
1748
2396
  'imageId': string;
1749
2397
  }
2398
+ /**
2399
+ *
2400
+ * @export
2401
+ * @interface ObjectDetectionV1Response
2402
+ */
2403
+ export interface ObjectDetectionV1Response {
2404
+ /**
2405
+ *
2406
+ * @type {string}
2407
+ * @memberof ObjectDetectionV1Response
2408
+ */
2409
+ 'kind': ObjectDetectionV1ResponseKindEnum;
2410
+ /**
2411
+ *
2412
+ * @type {OperationOutputJSON}
2413
+ * @memberof ObjectDetectionV1Response
2414
+ */
2415
+ 'output'?: OperationOutputJSON | null;
2416
+ /**
2417
+ *
2418
+ * @type {object}
2419
+ * @memberof ObjectDetectionV1Response
2420
+ */
2421
+ 'input': object;
2422
+ /**
2423
+ *
2424
+ * @type {string}
2425
+ * @memberof ObjectDetectionV1Response
2426
+ */
2427
+ 'status': ObjectDetectionV1ResponseStatusEnum;
2428
+ /**
2429
+ *
2430
+ * @type {string}
2431
+ * @memberof ObjectDetectionV1Response
2432
+ */
2433
+ 'type': string;
2434
+ /**
2435
+ *
2436
+ * @type {string}
2437
+ * @memberof ObjectDetectionV1Response
2438
+ */
2439
+ 'id': string;
2440
+ /**
2441
+ *
2442
+ * @type {string}
2443
+ * @memberof ObjectDetectionV1Response
2444
+ */
2445
+ 'creatorId': string;
2446
+ /**
2447
+ *
2448
+ * @type {object}
2449
+ * @memberof ObjectDetectionV1Response
2450
+ */
2451
+ 'metadata': object;
2452
+ /**
2453
+ *
2454
+ * @type {string}
2455
+ * @memberof ObjectDetectionV1Response
2456
+ */
2457
+ 'createdAt': string;
2458
+ /**
2459
+ *
2460
+ * @type {string}
2461
+ * @memberof ObjectDetectionV1Response
2462
+ */
2463
+ 'updatedAt': string;
2464
+ }
2465
+ export declare const ObjectDetectionV1ResponseKindEnum: {
2466
+ readonly Operation: "operation";
2467
+ };
2468
+ export type ObjectDetectionV1ResponseKindEnum = typeof ObjectDetectionV1ResponseKindEnum[keyof typeof ObjectDetectionV1ResponseKindEnum];
2469
+ export declare const ObjectDetectionV1ResponseStatusEnum: {
2470
+ readonly Pending: "pending";
2471
+ readonly Finished: "finished";
2472
+ readonly Failed: "failed";
2473
+ };
2474
+ export type ObjectDetectionV1ResponseStatusEnum = typeof ObjectDetectionV1ResponseStatusEnum[keyof typeof ObjectDetectionV1ResponseStatusEnum];
1750
2475
  /**
1751
2476
  *
1752
2477
  * @export
@@ -1761,67 +2486,61 @@ export interface OperationEntity {
1761
2486
  'kind': OperationEntityKindEnum;
1762
2487
  /**
1763
2488
  *
1764
- * @type {string}
2489
+ * @type {object}
1765
2490
  * @memberof OperationEntity
1766
2491
  */
1767
- 'id': string;
2492
+ 'input': object;
1768
2493
  /**
1769
2494
  *
1770
- * @type {string}
2495
+ * @type {object}
1771
2496
  * @memberof OperationEntity
1772
2497
  */
1773
- 'creatorId': string;
2498
+ 'output': object | null;
1774
2499
  /**
1775
2500
  *
1776
- * @type {object}
2501
+ * @type {string}
1777
2502
  * @memberof OperationEntity
1778
2503
  */
1779
- 'metadata': object;
2504
+ 'status': OperationEntityStatusEnum;
1780
2505
  /**
1781
2506
  *
1782
2507
  * @type {string}
1783
2508
  * @memberof OperationEntity
1784
2509
  */
1785
- 'createdAt': string;
2510
+ 'type': string;
1786
2511
  /**
1787
2512
  *
1788
2513
  * @type {string}
1789
2514
  * @memberof OperationEntity
1790
2515
  */
1791
- 'updatedAt': string;
2516
+ 'id': string;
1792
2517
  /**
1793
2518
  *
1794
- * @type {object}
2519
+ * @type {string}
1795
2520
  * @memberof OperationEntity
1796
2521
  */
1797
- 'input': object;
2522
+ 'creatorId': string;
1798
2523
  /**
1799
2524
  *
1800
2525
  * @type {object}
1801
2526
  * @memberof OperationEntity
1802
2527
  */
1803
- 'output': object | null;
2528
+ 'metadata': object;
1804
2529
  /**
1805
2530
  *
1806
2531
  * @type {string}
1807
2532
  * @memberof OperationEntity
1808
2533
  */
1809
- 'status': OperationEntityStatusEnum;
2534
+ 'createdAt': string;
1810
2535
  /**
1811
2536
  *
1812
2537
  * @type {string}
1813
2538
  * @memberof OperationEntity
1814
2539
  */
1815
- 'type': string;
2540
+ 'updatedAt': string;
1816
2541
  }
1817
2542
  export declare const OperationEntityKindEnum: {
1818
- readonly Collection: "collection";
1819
2543
  readonly Operation: "operation";
1820
- readonly Stack: "stack";
1821
- readonly Image: "image";
1822
- readonly Pose: "pose";
1823
- readonly Storage: "storage";
1824
- readonly Pipeline: "pipeline";
1825
2544
  };
1826
2545
  export type OperationEntityKindEnum = typeof OperationEntityKindEnum[keyof typeof OperationEntityKindEnum];
1827
2546
  export declare const OperationEntityStatusEnum: {
@@ -1833,45 +2552,84 @@ export type OperationEntityStatusEnum = typeof OperationEntityStatusEnum[keyof t
1833
2552
  /**
1834
2553
  *
1835
2554
  * @export
1836
- * @interface PipelineEntity
2555
+ * @interface OperationOutputImageMultiple
1837
2556
  */
1838
- export interface PipelineEntity {
2557
+ export interface OperationOutputImageMultiple {
1839
2558
  /**
1840
2559
  *
1841
2560
  * @type {string}
1842
- * @memberof PipelineEntity
2561
+ * @memberof OperationOutputImageMultiple
1843
2562
  */
1844
- 'kind': PipelineEntityKindEnum;
2563
+ 'kind': OperationOutputImageMultipleKindEnum;
1845
2564
  /**
1846
2565
  *
1847
- * @type {string}
1848
- * @memberof PipelineEntity
2566
+ * @type {Array<string>}
2567
+ * @memberof OperationOutputImageMultiple
1849
2568
  */
1850
- 'id': string;
2569
+ 'imageIds': Array<string>;
2570
+ }
2571
+ export declare const OperationOutputImageMultipleKindEnum: {
2572
+ readonly ImageMultiple: "image/multiple";
2573
+ };
2574
+ export type OperationOutputImageMultipleKindEnum = typeof OperationOutputImageMultipleKindEnum[keyof typeof OperationOutputImageMultipleKindEnum];
2575
+ /**
2576
+ *
2577
+ * @export
2578
+ * @interface OperationOutputImageSingle
2579
+ */
2580
+ export interface OperationOutputImageSingle {
1851
2581
  /**
1852
2582
  *
1853
2583
  * @type {string}
1854
- * @memberof PipelineEntity
2584
+ * @memberof OperationOutputImageSingle
1855
2585
  */
1856
- 'creatorId': string;
2586
+ 'kind': OperationOutputImageSingleKindEnum;
1857
2587
  /**
1858
2588
  *
1859
- * @type {object}
1860
- * @memberof PipelineEntity
2589
+ * @type {string}
2590
+ * @memberof OperationOutputImageSingle
1861
2591
  */
1862
- 'metadata': object;
2592
+ 'imageId': string;
2593
+ }
2594
+ export declare const OperationOutputImageSingleKindEnum: {
2595
+ readonly ImageSingle: "image/single";
2596
+ };
2597
+ export type OperationOutputImageSingleKindEnum = typeof OperationOutputImageSingleKindEnum[keyof typeof OperationOutputImageSingleKindEnum];
2598
+ /**
2599
+ *
2600
+ * @export
2601
+ * @interface OperationOutputJSON
2602
+ */
2603
+ export interface OperationOutputJSON {
1863
2604
  /**
1864
2605
  *
1865
2606
  * @type {string}
1866
- * @memberof PipelineEntity
2607
+ * @memberof OperationOutputJSON
1867
2608
  */
1868
- 'createdAt': string;
2609
+ 'kind': OperationOutputJSONKindEnum;
2610
+ /**
2611
+ *
2612
+ * @type {object}
2613
+ * @memberof OperationOutputJSON
2614
+ */
2615
+ 'data': object;
2616
+ }
2617
+ export declare const OperationOutputJSONKindEnum: {
2618
+ readonly Json: "json";
2619
+ };
2620
+ export type OperationOutputJSONKindEnum = typeof OperationOutputJSONKindEnum[keyof typeof OperationOutputJSONKindEnum];
2621
+ /**
2622
+ *
2623
+ * @export
2624
+ * @interface PipelineEntity
2625
+ */
2626
+ export interface PipelineEntity {
1869
2627
  /**
1870
2628
  *
1871
2629
  * @type {string}
1872
2630
  * @memberof PipelineEntity
1873
2631
  */
1874
- 'updatedAt': string;
2632
+ 'kind': PipelineEntityKindEnum;
1875
2633
  /**
1876
2634
  *
1877
2635
  * @type {object}
@@ -1896,14 +2654,38 @@ export interface PipelineEntity {
1896
2654
  * @memberof PipelineEntity
1897
2655
  */
1898
2656
  'tasks': object;
2657
+ /**
2658
+ *
2659
+ * @type {string}
2660
+ * @memberof PipelineEntity
2661
+ */
2662
+ 'id': string;
2663
+ /**
2664
+ *
2665
+ * @type {string}
2666
+ * @memberof PipelineEntity
2667
+ */
2668
+ 'creatorId': string;
2669
+ /**
2670
+ *
2671
+ * @type {object}
2672
+ * @memberof PipelineEntity
2673
+ */
2674
+ 'metadata': object;
2675
+ /**
2676
+ *
2677
+ * @type {string}
2678
+ * @memberof PipelineEntity
2679
+ */
2680
+ 'createdAt': string;
2681
+ /**
2682
+ *
2683
+ * @type {string}
2684
+ * @memberof PipelineEntity
2685
+ */
2686
+ 'updatedAt': string;
1899
2687
  }
1900
2688
  export declare const PipelineEntityKindEnum: {
1901
- readonly Collection: "collection";
1902
- readonly Operation: "operation";
1903
- readonly Stack: "stack";
1904
- readonly Image: "image";
1905
- readonly Pose: "pose";
1906
- readonly Storage: "storage";
1907
2689
  readonly Pipeline: "pipeline";
1908
2690
  };
1909
2691
  export type PipelineEntityKindEnum = typeof PipelineEntityKindEnum[keyof typeof PipelineEntityKindEnum];
@@ -1927,61 +2709,55 @@ export interface PoseEntity {
1927
2709
  'kind': PoseEntityKindEnum;
1928
2710
  /**
1929
2711
  *
1930
- * @type {string}
2712
+ * @type {ImageEntity}
1931
2713
  * @memberof PoseEntity
1932
2714
  */
1933
- 'id': string;
2715
+ 'sourceImage': ImageEntity;
1934
2716
  /**
1935
2717
  *
1936
- * @type {string}
2718
+ * @type {ImageEntity}
1937
2719
  * @memberof PoseEntity
1938
2720
  */
1939
- 'creatorId': string;
2721
+ 'previewImage'?: ImageEntity;
1940
2722
  /**
1941
2723
  *
1942
- * @type {object}
2724
+ * @type {string}
1943
2725
  * @memberof PoseEntity
1944
2726
  */
1945
- 'metadata': object;
2727
+ 'previewImageId'?: string;
1946
2728
  /**
1947
2729
  *
1948
2730
  * @type {string}
1949
2731
  * @memberof PoseEntity
1950
2732
  */
1951
- 'createdAt': string;
2733
+ 'id': string;
1952
2734
  /**
1953
2735
  *
1954
2736
  * @type {string}
1955
2737
  * @memberof PoseEntity
1956
2738
  */
1957
- 'updatedAt': string;
2739
+ 'creatorId': string;
1958
2740
  /**
1959
2741
  *
1960
- * @type {ImageEntity}
2742
+ * @type {object}
1961
2743
  * @memberof PoseEntity
1962
2744
  */
1963
- 'sourceImage': ImageEntity;
2745
+ 'metadata': object;
1964
2746
  /**
1965
2747
  *
1966
- * @type {ImageEntity}
2748
+ * @type {string}
1967
2749
  * @memberof PoseEntity
1968
2750
  */
1969
- 'previewImage'?: ImageEntity;
2751
+ 'createdAt': string;
1970
2752
  /**
1971
2753
  *
1972
2754
  * @type {string}
1973
2755
  * @memberof PoseEntity
1974
2756
  */
1975
- 'previewImageId'?: string;
2757
+ 'updatedAt': string;
1976
2758
  }
1977
2759
  export declare const PoseEntityKindEnum: {
1978
- readonly Collection: "collection";
1979
- readonly Operation: "operation";
1980
- readonly Stack: "stack";
1981
- readonly Image: "image";
1982
2760
  readonly Pose: "pose";
1983
- readonly Storage: "storage";
1984
- readonly Pipeline: "pipeline";
1985
2761
  };
1986
2762
  export type PoseEntityKindEnum = typeof PoseEntityKindEnum[keyof typeof PoseEntityKindEnum];
1987
2763
  /**
@@ -2016,6 +2792,83 @@ export interface PoseEstimationV1Input {
2016
2792
  */
2017
2793
  'imageId': string;
2018
2794
  }
2795
+ /**
2796
+ *
2797
+ * @export
2798
+ * @interface PoseEstimationV1Response
2799
+ */
2800
+ export interface PoseEstimationV1Response {
2801
+ /**
2802
+ *
2803
+ * @type {string}
2804
+ * @memberof PoseEstimationV1Response
2805
+ */
2806
+ 'kind': PoseEstimationV1ResponseKindEnum;
2807
+ /**
2808
+ *
2809
+ * @type {OperationOutputJSON}
2810
+ * @memberof PoseEstimationV1Response
2811
+ */
2812
+ 'output'?: OperationOutputJSON | null;
2813
+ /**
2814
+ *
2815
+ * @type {object}
2816
+ * @memberof PoseEstimationV1Response
2817
+ */
2818
+ 'input': object;
2819
+ /**
2820
+ *
2821
+ * @type {string}
2822
+ * @memberof PoseEstimationV1Response
2823
+ */
2824
+ 'status': PoseEstimationV1ResponseStatusEnum;
2825
+ /**
2826
+ *
2827
+ * @type {string}
2828
+ * @memberof PoseEstimationV1Response
2829
+ */
2830
+ 'type': string;
2831
+ /**
2832
+ *
2833
+ * @type {string}
2834
+ * @memberof PoseEstimationV1Response
2835
+ */
2836
+ 'id': string;
2837
+ /**
2838
+ *
2839
+ * @type {string}
2840
+ * @memberof PoseEstimationV1Response
2841
+ */
2842
+ 'creatorId': string;
2843
+ /**
2844
+ *
2845
+ * @type {object}
2846
+ * @memberof PoseEstimationV1Response
2847
+ */
2848
+ 'metadata': object;
2849
+ /**
2850
+ *
2851
+ * @type {string}
2852
+ * @memberof PoseEstimationV1Response
2853
+ */
2854
+ 'createdAt': string;
2855
+ /**
2856
+ *
2857
+ * @type {string}
2858
+ * @memberof PoseEstimationV1Response
2859
+ */
2860
+ 'updatedAt': string;
2861
+ }
2862
+ export declare const PoseEstimationV1ResponseKindEnum: {
2863
+ readonly Operation: "operation";
2864
+ };
2865
+ export type PoseEstimationV1ResponseKindEnum = typeof PoseEstimationV1ResponseKindEnum[keyof typeof PoseEstimationV1ResponseKindEnum];
2866
+ export declare const PoseEstimationV1ResponseStatusEnum: {
2867
+ readonly Pending: "pending";
2868
+ readonly Finished: "finished";
2869
+ readonly Failed: "failed";
2870
+ };
2871
+ export type PoseEstimationV1ResponseStatusEnum = typeof PoseEstimationV1ResponseStatusEnum[keyof typeof PoseEstimationV1ResponseStatusEnum];
2019
2872
  /**
2020
2873
  *
2021
2874
  * @export
@@ -2184,30 +3037,107 @@ export type ResourceEntityKindEnum = typeof ResourceEntityKindEnum[keyof typeof
2184
3037
  export interface SegmentAnythingEmbeddingsV1ControllerInput {
2185
3038
  /**
2186
3039
  *
2187
- * @type {SegmentAnythingEmbeddingsV1Input}
2188
- * @memberof SegmentAnythingEmbeddingsV1ControllerInput
3040
+ * @type {SegmentAnythingEmbeddingsV1Input}
3041
+ * @memberof SegmentAnythingEmbeddingsV1ControllerInput
3042
+ */
3043
+ 'input': SegmentAnythingEmbeddingsV1Input;
3044
+ /**
3045
+ *
3046
+ * @type {object}
3047
+ * @memberof SegmentAnythingEmbeddingsV1ControllerInput
3048
+ */
3049
+ 'metadata'?: object;
3050
+ }
3051
+ /**
3052
+ *
3053
+ * @export
3054
+ * @interface SegmentAnythingEmbeddingsV1Input
3055
+ */
3056
+ export interface SegmentAnythingEmbeddingsV1Input {
3057
+ /**
3058
+ *
3059
+ * @type {string}
3060
+ * @memberof SegmentAnythingEmbeddingsV1Input
3061
+ */
3062
+ 'imageId': string;
3063
+ }
3064
+ /**
3065
+ *
3066
+ * @export
3067
+ * @interface SegmentAnythingEmbeddingsV1Response
3068
+ */
3069
+ export interface SegmentAnythingEmbeddingsV1Response {
3070
+ /**
3071
+ *
3072
+ * @type {string}
3073
+ * @memberof SegmentAnythingEmbeddingsV1Response
3074
+ */
3075
+ 'kind': SegmentAnythingEmbeddingsV1ResponseKindEnum;
3076
+ /**
3077
+ *
3078
+ * @type {OperationOutputJSON}
3079
+ * @memberof SegmentAnythingEmbeddingsV1Response
3080
+ */
3081
+ 'output'?: OperationOutputJSON | null;
3082
+ /**
3083
+ *
3084
+ * @type {object}
3085
+ * @memberof SegmentAnythingEmbeddingsV1Response
3086
+ */
3087
+ 'input': object;
3088
+ /**
3089
+ *
3090
+ * @type {string}
3091
+ * @memberof SegmentAnythingEmbeddingsV1Response
3092
+ */
3093
+ 'status': SegmentAnythingEmbeddingsV1ResponseStatusEnum;
3094
+ /**
3095
+ *
3096
+ * @type {string}
3097
+ * @memberof SegmentAnythingEmbeddingsV1Response
3098
+ */
3099
+ 'type': string;
3100
+ /**
3101
+ *
3102
+ * @type {string}
3103
+ * @memberof SegmentAnythingEmbeddingsV1Response
2189
3104
  */
2190
- 'input': SegmentAnythingEmbeddingsV1Input;
3105
+ 'id': string;
3106
+ /**
3107
+ *
3108
+ * @type {string}
3109
+ * @memberof SegmentAnythingEmbeddingsV1Response
3110
+ */
3111
+ 'creatorId': string;
2191
3112
  /**
2192
3113
  *
2193
3114
  * @type {object}
2194
- * @memberof SegmentAnythingEmbeddingsV1ControllerInput
3115
+ * @memberof SegmentAnythingEmbeddingsV1Response
2195
3116
  */
2196
- 'metadata'?: object;
2197
- }
2198
- /**
2199
- *
2200
- * @export
2201
- * @interface SegmentAnythingEmbeddingsV1Input
2202
- */
2203
- export interface SegmentAnythingEmbeddingsV1Input {
3117
+ 'metadata': object;
2204
3118
  /**
2205
3119
  *
2206
3120
  * @type {string}
2207
- * @memberof SegmentAnythingEmbeddingsV1Input
3121
+ * @memberof SegmentAnythingEmbeddingsV1Response
2208
3122
  */
2209
- 'imageId': string;
3123
+ 'createdAt': string;
3124
+ /**
3125
+ *
3126
+ * @type {string}
3127
+ * @memberof SegmentAnythingEmbeddingsV1Response
3128
+ */
3129
+ 'updatedAt': string;
2210
3130
  }
3131
+ export declare const SegmentAnythingEmbeddingsV1ResponseKindEnum: {
3132
+ readonly Operation: "operation";
3133
+ };
3134
+ export type SegmentAnythingEmbeddingsV1ResponseKindEnum = typeof SegmentAnythingEmbeddingsV1ResponseKindEnum[keyof typeof SegmentAnythingEmbeddingsV1ResponseKindEnum];
3135
+ export declare const SegmentAnythingEmbeddingsV1ResponseStatusEnum: {
3136
+ readonly Pending: "pending";
3137
+ readonly Finished: "finished";
3138
+ readonly Failed: "failed";
3139
+ };
3140
+ export type SegmentAnythingEmbeddingsV1ResponseStatusEnum = typeof SegmentAnythingEmbeddingsV1ResponseStatusEnum[keyof typeof SegmentAnythingEmbeddingsV1ResponseStatusEnum];
2211
3141
  /**
2212
3142
  *
2213
3143
  * @export
@@ -2246,6 +3176,83 @@ export interface SegmentAnythingMaskV1Input {
2246
3176
  */
2247
3177
  'box': Array<number>;
2248
3178
  }
3179
+ /**
3180
+ *
3181
+ * @export
3182
+ * @interface SegmentAnythingMaskV1Response
3183
+ */
3184
+ export interface SegmentAnythingMaskV1Response {
3185
+ /**
3186
+ *
3187
+ * @type {string}
3188
+ * @memberof SegmentAnythingMaskV1Response
3189
+ */
3190
+ 'kind': SegmentAnythingMaskV1ResponseKindEnum;
3191
+ /**
3192
+ *
3193
+ * @type {OperationOutputImageSingle}
3194
+ * @memberof SegmentAnythingMaskV1Response
3195
+ */
3196
+ 'output'?: OperationOutputImageSingle | null;
3197
+ /**
3198
+ *
3199
+ * @type {object}
3200
+ * @memberof SegmentAnythingMaskV1Response
3201
+ */
3202
+ 'input': object;
3203
+ /**
3204
+ *
3205
+ * @type {string}
3206
+ * @memberof SegmentAnythingMaskV1Response
3207
+ */
3208
+ 'status': SegmentAnythingMaskV1ResponseStatusEnum;
3209
+ /**
3210
+ *
3211
+ * @type {string}
3212
+ * @memberof SegmentAnythingMaskV1Response
3213
+ */
3214
+ 'type': string;
3215
+ /**
3216
+ *
3217
+ * @type {string}
3218
+ * @memberof SegmentAnythingMaskV1Response
3219
+ */
3220
+ 'id': string;
3221
+ /**
3222
+ *
3223
+ * @type {string}
3224
+ * @memberof SegmentAnythingMaskV1Response
3225
+ */
3226
+ 'creatorId': string;
3227
+ /**
3228
+ *
3229
+ * @type {object}
3230
+ * @memberof SegmentAnythingMaskV1Response
3231
+ */
3232
+ 'metadata': object;
3233
+ /**
3234
+ *
3235
+ * @type {string}
3236
+ * @memberof SegmentAnythingMaskV1Response
3237
+ */
3238
+ 'createdAt': string;
3239
+ /**
3240
+ *
3241
+ * @type {string}
3242
+ * @memberof SegmentAnythingMaskV1Response
3243
+ */
3244
+ 'updatedAt': string;
3245
+ }
3246
+ export declare const SegmentAnythingMaskV1ResponseKindEnum: {
3247
+ readonly Operation: "operation";
3248
+ };
3249
+ export type SegmentAnythingMaskV1ResponseKindEnum = typeof SegmentAnythingMaskV1ResponseKindEnum[keyof typeof SegmentAnythingMaskV1ResponseKindEnum];
3250
+ export declare const SegmentAnythingMaskV1ResponseStatusEnum: {
3251
+ readonly Pending: "pending";
3252
+ readonly Finished: "finished";
3253
+ readonly Failed: "failed";
3254
+ };
3255
+ export type SegmentAnythingMaskV1ResponseStatusEnum = typeof SegmentAnythingMaskV1ResponseStatusEnum[keyof typeof SegmentAnythingMaskV1ResponseStatusEnum];
2249
3256
  /**
2250
3257
  *
2251
3258
  * @export
@@ -2353,52 +3360,46 @@ export interface StorageEntity {
2353
3360
  * @type {string}
2354
3361
  * @memberof StorageEntity
2355
3362
  */
2356
- 'id': string;
3363
+ 'key': string;
2357
3364
  /**
2358
3365
  *
2359
- * @type {string}
3366
+ * @type {object}
2360
3367
  * @memberof StorageEntity
2361
3368
  */
2362
- 'creatorId': string;
3369
+ 'value': object;
2363
3370
  /**
2364
3371
  *
2365
- * @type {object}
3372
+ * @type {string}
2366
3373
  * @memberof StorageEntity
2367
3374
  */
2368
- 'metadata': object;
3375
+ 'id': string;
2369
3376
  /**
2370
3377
  *
2371
3378
  * @type {string}
2372
3379
  * @memberof StorageEntity
2373
3380
  */
2374
- 'createdAt': string;
3381
+ 'creatorId': string;
2375
3382
  /**
2376
3383
  *
2377
- * @type {string}
3384
+ * @type {object}
2378
3385
  * @memberof StorageEntity
2379
3386
  */
2380
- 'updatedAt': string;
3387
+ 'metadata': object;
2381
3388
  /**
2382
3389
  *
2383
3390
  * @type {string}
2384
3391
  * @memberof StorageEntity
2385
3392
  */
2386
- 'key': string;
3393
+ 'createdAt': string;
2387
3394
  /**
2388
3395
  *
2389
- * @type {object}
3396
+ * @type {string}
2390
3397
  * @memberof StorageEntity
2391
3398
  */
2392
- 'value': object;
3399
+ 'updatedAt': string;
2393
3400
  }
2394
3401
  export declare const StorageEntityKindEnum: {
2395
- readonly Collection: "collection";
2396
- readonly Operation: "operation";
2397
- readonly Stack: "stack";
2398
- readonly Image: "image";
2399
- readonly Pose: "pose";
2400
3402
  readonly Storage: "storage";
2401
- readonly Pipeline: "pipeline";
2402
3403
  };
2403
3404
  export type StorageEntityKindEnum = typeof StorageEntityKindEnum[keyof typeof StorageEntityKindEnum];
2404
3405
  /**
@@ -2503,6 +3504,160 @@ export interface UpscaleV1Input {
2503
3504
  */
2504
3505
  'imageId': string;
2505
3506
  }
3507
+ /**
3508
+ *
3509
+ * @export
3510
+ * @interface UpscaleV1Response
3511
+ */
3512
+ export interface UpscaleV1Response {
3513
+ /**
3514
+ *
3515
+ * @type {string}
3516
+ * @memberof UpscaleV1Response
3517
+ */
3518
+ 'kind': UpscaleV1ResponseKindEnum;
3519
+ /**
3520
+ *
3521
+ * @type {OperationOutputImageSingle}
3522
+ * @memberof UpscaleV1Response
3523
+ */
3524
+ 'output'?: OperationOutputImageSingle | null;
3525
+ /**
3526
+ *
3527
+ * @type {object}
3528
+ * @memberof UpscaleV1Response
3529
+ */
3530
+ 'input': object;
3531
+ /**
3532
+ *
3533
+ * @type {string}
3534
+ * @memberof UpscaleV1Response
3535
+ */
3536
+ 'status': UpscaleV1ResponseStatusEnum;
3537
+ /**
3538
+ *
3539
+ * @type {string}
3540
+ * @memberof UpscaleV1Response
3541
+ */
3542
+ 'type': string;
3543
+ /**
3544
+ *
3545
+ * @type {string}
3546
+ * @memberof UpscaleV1Response
3547
+ */
3548
+ 'id': string;
3549
+ /**
3550
+ *
3551
+ * @type {string}
3552
+ * @memberof UpscaleV1Response
3553
+ */
3554
+ 'creatorId': string;
3555
+ /**
3556
+ *
3557
+ * @type {object}
3558
+ * @memberof UpscaleV1Response
3559
+ */
3560
+ 'metadata': object;
3561
+ /**
3562
+ *
3563
+ * @type {string}
3564
+ * @memberof UpscaleV1Response
3565
+ */
3566
+ 'createdAt': string;
3567
+ /**
3568
+ *
3569
+ * @type {string}
3570
+ * @memberof UpscaleV1Response
3571
+ */
3572
+ 'updatedAt': string;
3573
+ }
3574
+ export declare const UpscaleV1ResponseKindEnum: {
3575
+ readonly Operation: "operation";
3576
+ };
3577
+ export type UpscaleV1ResponseKindEnum = typeof UpscaleV1ResponseKindEnum[keyof typeof UpscaleV1ResponseKindEnum];
3578
+ export declare const UpscaleV1ResponseStatusEnum: {
3579
+ readonly Pending: "pending";
3580
+ readonly Finished: "finished";
3581
+ readonly Failed: "failed";
3582
+ };
3583
+ export type UpscaleV1ResponseStatusEnum = typeof UpscaleV1ResponseStatusEnum[keyof typeof UpscaleV1ResponseStatusEnum];
3584
+ /**
3585
+ *
3586
+ * @export
3587
+ * @interface VtonGiseleV1Response
3588
+ */
3589
+ export interface VtonGiseleV1Response {
3590
+ /**
3591
+ *
3592
+ * @type {string}
3593
+ * @memberof VtonGiseleV1Response
3594
+ */
3595
+ 'kind': VtonGiseleV1ResponseKindEnum;
3596
+ /**
3597
+ *
3598
+ * @type {OperationOutputImageSingle}
3599
+ * @memberof VtonGiseleV1Response
3600
+ */
3601
+ 'output'?: OperationOutputImageSingle | null;
3602
+ /**
3603
+ *
3604
+ * @type {object}
3605
+ * @memberof VtonGiseleV1Response
3606
+ */
3607
+ 'input': object;
3608
+ /**
3609
+ *
3610
+ * @type {string}
3611
+ * @memberof VtonGiseleV1Response
3612
+ */
3613
+ 'status': VtonGiseleV1ResponseStatusEnum;
3614
+ /**
3615
+ *
3616
+ * @type {string}
3617
+ * @memberof VtonGiseleV1Response
3618
+ */
3619
+ 'type': string;
3620
+ /**
3621
+ *
3622
+ * @type {string}
3623
+ * @memberof VtonGiseleV1Response
3624
+ */
3625
+ 'id': string;
3626
+ /**
3627
+ *
3628
+ * @type {string}
3629
+ * @memberof VtonGiseleV1Response
3630
+ */
3631
+ 'creatorId': string;
3632
+ /**
3633
+ *
3634
+ * @type {object}
3635
+ * @memberof VtonGiseleV1Response
3636
+ */
3637
+ 'metadata': object;
3638
+ /**
3639
+ *
3640
+ * @type {string}
3641
+ * @memberof VtonGiseleV1Response
3642
+ */
3643
+ 'createdAt': string;
3644
+ /**
3645
+ *
3646
+ * @type {string}
3647
+ * @memberof VtonGiseleV1Response
3648
+ */
3649
+ 'updatedAt': string;
3650
+ }
3651
+ export declare const VtonGiseleV1ResponseKindEnum: {
3652
+ readonly Operation: "operation";
3653
+ };
3654
+ export type VtonGiseleV1ResponseKindEnum = typeof VtonGiseleV1ResponseKindEnum[keyof typeof VtonGiseleV1ResponseKindEnum];
3655
+ export declare const VtonGiseleV1ResponseStatusEnum: {
3656
+ readonly Pending: "pending";
3657
+ readonly Finished: "finished";
3658
+ readonly Failed: "failed";
3659
+ };
3660
+ export type VtonGiseleV1ResponseStatusEnum = typeof VtonGiseleV1ResponseStatusEnum[keyof typeof VtonGiseleV1ResponseStatusEnum];
2506
3661
  /**
2507
3662
  * AccessApi - axios parameter creator
2508
3663
  * @export
@@ -4827,6 +5982,13 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
4827
5982
  * @throws {RequiredError}
4828
5983
  */
4829
5984
  operationsControllerRunInpaintKateV1V1: (kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5985
+ /**
5986
+ *
5987
+ * @param {NegateImageV1ControllerInput} negateImageV1ControllerInput
5988
+ * @param {*} [options] Override http request option.
5989
+ * @throws {RequiredError}
5990
+ */
5991
+ operationsControllerRunNegateImageV1V1: (negateImageV1ControllerInput: NegateImageV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4830
5992
  /**
4831
5993
  *
4832
5994
  * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
@@ -4912,91 +6074,98 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
4912
6074
  * @param {*} [options] Override http request option.
4913
6075
  * @throws {RequiredError}
4914
6076
  */
4915
- operationsControllerRunCompositeV1V1(compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
6077
+ operationsControllerRunCompositeV1V1(compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CompositeV1Response>>;
4916
6078
  /**
4917
6079
  *
4918
6080
  * @param {CutV1ControllerInput} cutV1ControllerInput
4919
6081
  * @param {*} [options] Override http request option.
4920
6082
  * @throws {RequiredError}
4921
6083
  */
4922
- operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
6084
+ operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CutV1Response>>;
4923
6085
  /**
4924
6086
  *
4925
6087
  * @param {GPTV1ControllerInput} gPTV1ControllerInput
4926
6088
  * @param {*} [options] Override http request option.
4927
6089
  * @throws {RequiredError}
4928
6090
  */
4929
- operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
6091
+ operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GptV1Response>>;
4930
6092
  /**
4931
6093
  *
4932
6094
  * @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
4933
6095
  * @param {*} [options] Override http request option.
4934
6096
  * @throws {RequiredError}
4935
6097
  */
4936
- operationsControllerRunHauteLindaV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
6098
+ operationsControllerRunHauteLindaV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HauteLindaV1Response>>;
4937
6099
  /**
4938
6100
  *
4939
6101
  * @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
4940
6102
  * @param {*} [options] Override http request option.
4941
6103
  * @throws {RequiredError}
4942
6104
  */
4943
- operationsControllerRunHauteNaomiV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
6105
+ operationsControllerRunHauteNaomiV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HauteNaomiV1Response>>;
4944
6106
  /**
4945
6107
  *
4946
6108
  * @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
4947
6109
  * @param {*} [options] Override http request option.
4948
6110
  * @throws {RequiredError}
4949
6111
  */
4950
- operationsControllerRunImagineKateV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
6112
+ operationsControllerRunImagineKateV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImagineKateV1Response>>;
4951
6113
  /**
4952
6114
  *
4953
6115
  * @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
4954
6116
  * @param {*} [options] Override http request option.
4955
6117
  * @throws {RequiredError}
4956
6118
  */
4957
- operationsControllerRunInpaintKateV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
6119
+ operationsControllerRunInpaintKateV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InpaintKateV1Response>>;
6120
+ /**
6121
+ *
6122
+ * @param {NegateImageV1ControllerInput} negateImageV1ControllerInput
6123
+ * @param {*} [options] Override http request option.
6124
+ * @throws {RequiredError}
6125
+ */
6126
+ operationsControllerRunNegateImageV1V1(negateImageV1ControllerInput: NegateImageV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NegateImageV1Response>>;
4958
6127
  /**
4959
6128
  *
4960
6129
  * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
4961
6130
  * @param {*} [options] Override http request option.
4962
6131
  * @throws {RequiredError}
4963
6132
  */
4964
- operationsControllerRunObjectDetectionV1V1(objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
6133
+ operationsControllerRunObjectDetectionV1V1(objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ObjectDetectionV1Response>>;
4965
6134
  /**
4966
6135
  *
4967
6136
  * @param {PoseEstimationV1ControllerInput} poseEstimationV1ControllerInput
4968
6137
  * @param {*} [options] Override http request option.
4969
6138
  * @throws {RequiredError}
4970
6139
  */
4971
- operationsControllerRunPoseEstimationV1V1(poseEstimationV1ControllerInput: PoseEstimationV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
6140
+ operationsControllerRunPoseEstimationV1V1(poseEstimationV1ControllerInput: PoseEstimationV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoseEstimationV1Response>>;
4972
6141
  /**
4973
6142
  *
4974
6143
  * @param {SegmentAnythingEmbeddingsV1ControllerInput} segmentAnythingEmbeddingsV1ControllerInput
4975
6144
  * @param {*} [options] Override http request option.
4976
6145
  * @throws {RequiredError}
4977
6146
  */
4978
- operationsControllerRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
6147
+ operationsControllerRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SegmentAnythingEmbeddingsV1Response>>;
4979
6148
  /**
4980
6149
  *
4981
6150
  * @param {SegmentAnythingMaskV1ControllerInput} segmentAnythingMaskV1ControllerInput
4982
6151
  * @param {*} [options] Override http request option.
4983
6152
  * @throws {RequiredError}
4984
6153
  */
4985
- operationsControllerRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
6154
+ operationsControllerRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SegmentAnythingMaskV1Response>>;
4986
6155
  /**
4987
6156
  *
4988
6157
  * @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
4989
6158
  * @param {*} [options] Override http request option.
4990
6159
  * @throws {RequiredError}
4991
6160
  */
4992
- operationsControllerRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
6161
+ operationsControllerRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpscaleV1Response>>;
4993
6162
  /**
4994
6163
  *
4995
6164
  * @param {GiseleVtonV1ControllerInput} giseleVtonV1ControllerInput
4996
6165
  * @param {*} [options] Override http request option.
4997
6166
  * @throws {RequiredError}
4998
6167
  */
4999
- operationsControllerRunVtonGiseleV1V1(giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
6168
+ operationsControllerRunVtonGiseleV1V1(giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VtonGiseleV1Response>>;
5000
6169
  /**
5001
6170
  *
5002
6171
  * @param {string} id
@@ -5040,91 +6209,98 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
5040
6209
  * @param {*} [options] Override http request option.
5041
6210
  * @throws {RequiredError}
5042
6211
  */
5043
- operationsControllerRunCompositeV1V1(compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
6212
+ operationsControllerRunCompositeV1V1(compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<CompositeV1Response>;
5044
6213
  /**
5045
6214
  *
5046
6215
  * @param {CutV1ControllerInput} cutV1ControllerInput
5047
6216
  * @param {*} [options] Override http request option.
5048
6217
  * @throws {RequiredError}
5049
6218
  */
5050
- operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
6219
+ operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<CutV1Response>;
5051
6220
  /**
5052
6221
  *
5053
6222
  * @param {GPTV1ControllerInput} gPTV1ControllerInput
5054
6223
  * @param {*} [options] Override http request option.
5055
6224
  * @throws {RequiredError}
5056
6225
  */
5057
- operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
6226
+ operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<GptV1Response>;
5058
6227
  /**
5059
6228
  *
5060
6229
  * @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
5061
6230
  * @param {*} [options] Override http request option.
5062
6231
  * @throws {RequiredError}
5063
6232
  */
5064
- operationsControllerRunHauteLindaV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
6233
+ operationsControllerRunHauteLindaV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<HauteLindaV1Response>;
5065
6234
  /**
5066
6235
  *
5067
6236
  * @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
5068
6237
  * @param {*} [options] Override http request option.
5069
6238
  * @throws {RequiredError}
5070
6239
  */
5071
- operationsControllerRunHauteNaomiV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
6240
+ operationsControllerRunHauteNaomiV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<HauteNaomiV1Response>;
5072
6241
  /**
5073
6242
  *
5074
6243
  * @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
5075
6244
  * @param {*} [options] Override http request option.
5076
6245
  * @throws {RequiredError}
5077
6246
  */
5078
- operationsControllerRunImagineKateV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
6247
+ operationsControllerRunImagineKateV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<ImagineKateV1Response>;
5079
6248
  /**
5080
6249
  *
5081
6250
  * @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
5082
6251
  * @param {*} [options] Override http request option.
5083
6252
  * @throws {RequiredError}
5084
6253
  */
5085
- operationsControllerRunInpaintKateV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
6254
+ operationsControllerRunInpaintKateV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<InpaintKateV1Response>;
6255
+ /**
6256
+ *
6257
+ * @param {NegateImageV1ControllerInput} negateImageV1ControllerInput
6258
+ * @param {*} [options] Override http request option.
6259
+ * @throws {RequiredError}
6260
+ */
6261
+ operationsControllerRunNegateImageV1V1(negateImageV1ControllerInput: NegateImageV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<NegateImageV1Response>;
5086
6262
  /**
5087
6263
  *
5088
6264
  * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
5089
6265
  * @param {*} [options] Override http request option.
5090
6266
  * @throws {RequiredError}
5091
6267
  */
5092
- operationsControllerRunObjectDetectionV1V1(objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
6268
+ operationsControllerRunObjectDetectionV1V1(objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<ObjectDetectionV1Response>;
5093
6269
  /**
5094
6270
  *
5095
6271
  * @param {PoseEstimationV1ControllerInput} poseEstimationV1ControllerInput
5096
6272
  * @param {*} [options] Override http request option.
5097
6273
  * @throws {RequiredError}
5098
6274
  */
5099
- operationsControllerRunPoseEstimationV1V1(poseEstimationV1ControllerInput: PoseEstimationV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
6275
+ operationsControllerRunPoseEstimationV1V1(poseEstimationV1ControllerInput: PoseEstimationV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<PoseEstimationV1Response>;
5100
6276
  /**
5101
6277
  *
5102
6278
  * @param {SegmentAnythingEmbeddingsV1ControllerInput} segmentAnythingEmbeddingsV1ControllerInput
5103
6279
  * @param {*} [options] Override http request option.
5104
6280
  * @throws {RequiredError}
5105
6281
  */
5106
- operationsControllerRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
6282
+ operationsControllerRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<SegmentAnythingEmbeddingsV1Response>;
5107
6283
  /**
5108
6284
  *
5109
6285
  * @param {SegmentAnythingMaskV1ControllerInput} segmentAnythingMaskV1ControllerInput
5110
6286
  * @param {*} [options] Override http request option.
5111
6287
  * @throws {RequiredError}
5112
6288
  */
5113
- operationsControllerRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
6289
+ operationsControllerRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<SegmentAnythingMaskV1Response>;
5114
6290
  /**
5115
6291
  *
5116
6292
  * @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
5117
6293
  * @param {*} [options] Override http request option.
5118
6294
  * @throws {RequiredError}
5119
6295
  */
5120
- operationsControllerRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
6296
+ operationsControllerRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<UpscaleV1Response>;
5121
6297
  /**
5122
6298
  *
5123
6299
  * @param {GiseleVtonV1ControllerInput} giseleVtonV1ControllerInput
5124
6300
  * @param {*} [options] Override http request option.
5125
6301
  * @throws {RequiredError}
5126
6302
  */
5127
- operationsControllerRunVtonGiseleV1V1(giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
6303
+ operationsControllerRunVtonGiseleV1V1(giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<VtonGiseleV1Response>;
5128
6304
  /**
5129
6305
  *
5130
6306
  * @param {string} id
@@ -5174,7 +6350,7 @@ export declare class OperationsApi extends BaseAPI {
5174
6350
  * @throws {RequiredError}
5175
6351
  * @memberof OperationsApi
5176
6352
  */
5177
- operationsControllerRunCompositeV1V1(compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
6353
+ operationsControllerRunCompositeV1V1(compositeV1ControllerInput: CompositeV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompositeV1Response, any>>;
5178
6354
  /**
5179
6355
  *
5180
6356
  * @param {CutV1ControllerInput} cutV1ControllerInput
@@ -5182,7 +6358,7 @@ export declare class OperationsApi extends BaseAPI {
5182
6358
  * @throws {RequiredError}
5183
6359
  * @memberof OperationsApi
5184
6360
  */
5185
- operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
6361
+ operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CutV1Response, any>>;
5186
6362
  /**
5187
6363
  *
5188
6364
  * @param {GPTV1ControllerInput} gPTV1ControllerInput
@@ -5190,7 +6366,7 @@ export declare class OperationsApi extends BaseAPI {
5190
6366
  * @throws {RequiredError}
5191
6367
  * @memberof OperationsApi
5192
6368
  */
5193
- operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
6369
+ operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GptV1Response, any>>;
5194
6370
  /**
5195
6371
  *
5196
6372
  * @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
@@ -5198,7 +6374,7 @@ export declare class OperationsApi extends BaseAPI {
5198
6374
  * @throws {RequiredError}
5199
6375
  * @memberof OperationsApi
5200
6376
  */
5201
- operationsControllerRunHauteLindaV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
6377
+ operationsControllerRunHauteLindaV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HauteLindaV1Response, any>>;
5202
6378
  /**
5203
6379
  *
5204
6380
  * @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
@@ -5206,7 +6382,7 @@ export declare class OperationsApi extends BaseAPI {
5206
6382
  * @throws {RequiredError}
5207
6383
  * @memberof OperationsApi
5208
6384
  */
5209
- operationsControllerRunHauteNaomiV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
6385
+ operationsControllerRunHauteNaomiV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HauteNaomiV1Response, any>>;
5210
6386
  /**
5211
6387
  *
5212
6388
  * @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
@@ -5214,7 +6390,7 @@ export declare class OperationsApi extends BaseAPI {
5214
6390
  * @throws {RequiredError}
5215
6391
  * @memberof OperationsApi
5216
6392
  */
5217
- operationsControllerRunImagineKateV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
6393
+ operationsControllerRunImagineKateV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImagineKateV1Response, any>>;
5218
6394
  /**
5219
6395
  *
5220
6396
  * @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
@@ -5222,7 +6398,15 @@ export declare class OperationsApi extends BaseAPI {
5222
6398
  * @throws {RequiredError}
5223
6399
  * @memberof OperationsApi
5224
6400
  */
5225
- operationsControllerRunInpaintKateV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
6401
+ operationsControllerRunInpaintKateV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InpaintKateV1Response, any>>;
6402
+ /**
6403
+ *
6404
+ * @param {NegateImageV1ControllerInput} negateImageV1ControllerInput
6405
+ * @param {*} [options] Override http request option.
6406
+ * @throws {RequiredError}
6407
+ * @memberof OperationsApi
6408
+ */
6409
+ operationsControllerRunNegateImageV1V1(negateImageV1ControllerInput: NegateImageV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NegateImageV1Response, any>>;
5226
6410
  /**
5227
6411
  *
5228
6412
  * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
@@ -5230,7 +6414,7 @@ export declare class OperationsApi extends BaseAPI {
5230
6414
  * @throws {RequiredError}
5231
6415
  * @memberof OperationsApi
5232
6416
  */
5233
- operationsControllerRunObjectDetectionV1V1(objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
6417
+ operationsControllerRunObjectDetectionV1V1(objectDetectionV1ControllerInput: ObjectDetectionV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ObjectDetectionV1Response, any>>;
5234
6418
  /**
5235
6419
  *
5236
6420
  * @param {PoseEstimationV1ControllerInput} poseEstimationV1ControllerInput
@@ -5238,7 +6422,7 @@ export declare class OperationsApi extends BaseAPI {
5238
6422
  * @throws {RequiredError}
5239
6423
  * @memberof OperationsApi
5240
6424
  */
5241
- operationsControllerRunPoseEstimationV1V1(poseEstimationV1ControllerInput: PoseEstimationV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
6425
+ operationsControllerRunPoseEstimationV1V1(poseEstimationV1ControllerInput: PoseEstimationV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PoseEstimationV1Response, any>>;
5242
6426
  /**
5243
6427
  *
5244
6428
  * @param {SegmentAnythingEmbeddingsV1ControllerInput} segmentAnythingEmbeddingsV1ControllerInput
@@ -5246,7 +6430,7 @@ export declare class OperationsApi extends BaseAPI {
5246
6430
  * @throws {RequiredError}
5247
6431
  * @memberof OperationsApi
5248
6432
  */
5249
- operationsControllerRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
6433
+ operationsControllerRunSegmentAnythingEmbeddingsV1V1(segmentAnythingEmbeddingsV1ControllerInput: SegmentAnythingEmbeddingsV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SegmentAnythingEmbeddingsV1Response, any>>;
5250
6434
  /**
5251
6435
  *
5252
6436
  * @param {SegmentAnythingMaskV1ControllerInput} segmentAnythingMaskV1ControllerInput
@@ -5254,7 +6438,7 @@ export declare class OperationsApi extends BaseAPI {
5254
6438
  * @throws {RequiredError}
5255
6439
  * @memberof OperationsApi
5256
6440
  */
5257
- operationsControllerRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
6441
+ operationsControllerRunSegmentAnythingMaskV1V1(segmentAnythingMaskV1ControllerInput: SegmentAnythingMaskV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SegmentAnythingMaskV1Response, any>>;
5258
6442
  /**
5259
6443
  *
5260
6444
  * @param {UpscaleV1ControllerInput} upscaleV1ControllerInput
@@ -5262,7 +6446,7 @@ export declare class OperationsApi extends BaseAPI {
5262
6446
  * @throws {RequiredError}
5263
6447
  * @memberof OperationsApi
5264
6448
  */
5265
- operationsControllerRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
6449
+ operationsControllerRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpscaleV1Response, any>>;
5266
6450
  /**
5267
6451
  *
5268
6452
  * @param {GiseleVtonV1ControllerInput} giseleVtonV1ControllerInput
@@ -5270,7 +6454,7 @@ export declare class OperationsApi extends BaseAPI {
5270
6454
  * @throws {RequiredError}
5271
6455
  * @memberof OperationsApi
5272
6456
  */
5273
- operationsControllerRunVtonGiseleV1V1(giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
6457
+ operationsControllerRunVtonGiseleV1V1(giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VtonGiseleV1Response, any>>;
5274
6458
  /**
5275
6459
  *
5276
6460
  * @param {string} id