@hautechai/sdk 0.0.17 → 0.0.19

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.
@@ -120,6 +120,19 @@ export interface AddItemsToStackControllerParamsDto {
120
120
  */
121
121
  'itemIds': Array<string>;
122
122
  }
123
+ /**
124
+ *
125
+ * @export
126
+ * @interface AttachAccessControllerParamsDto
127
+ */
128
+ export interface AttachAccessControllerParamsDto {
129
+ /**
130
+ *
131
+ * @type {string}
132
+ * @memberof AttachAccessControllerParamsDto
133
+ */
134
+ 'parentResourceId': string;
135
+ }
123
136
  /**
124
137
  *
125
138
  * @export
@@ -469,233 +482,117 @@ export type GPTV1InputModelEnum = typeof GPTV1InputModelEnum[keyof typeof GPTV1I
469
482
  /**
470
483
  *
471
484
  * @export
472
- * @interface GenerateV1ControllerInput
485
+ * @interface GetCollectionParamsDto
473
486
  */
474
- export interface GenerateV1ControllerInput {
475
- /**
476
- *
477
- * @type {GenerateV1Input}
478
- * @memberof GenerateV1ControllerInput
479
- */
480
- 'input': GenerateV1Input;
487
+ export interface GetCollectionParamsDto {
481
488
  /**
482
489
  *
483
- * @type {object}
484
- * @memberof GenerateV1ControllerInput
490
+ * @type {string}
491
+ * @memberof GetCollectionParamsDto
485
492
  */
486
- 'metadata'?: object;
493
+ 'collectionId': string;
487
494
  }
488
495
  /**
489
496
  *
490
497
  * @export
491
- * @interface GenerateV1Input
498
+ * @interface GetOperationsParamsDto
492
499
  */
493
- export interface GenerateV1Input {
494
- /**
495
- *
496
- * @type {string}
497
- * @memberof GenerateV1Input
498
- */
499
- 'aspectRatio': GenerateV1InputAspectRatioEnum;
500
- /**
501
- *
502
- * @type {string}
503
- * @memberof GenerateV1Input
504
- */
505
- 'productImageId': string;
506
- /**
507
- *
508
- * @type {string}
509
- * @memberof GenerateV1Input
510
- */
511
- 'prompt': string;
512
- /**
513
- *
514
- * @type {number}
515
- * @memberof GenerateV1Input
516
- */
517
- 'seed': number;
518
- /**
519
- *
520
- * @type {number}
521
- * @memberof GenerateV1Input
522
- */
523
- 'imageWeight'?: number;
524
- /**
525
- *
526
- * @type {string}
527
- * @memberof GenerateV1Input
528
- */
529
- 'negativePrompt'?: string;
500
+ export interface GetOperationsParamsDto {
530
501
  /**
531
502
  *
532
- * @type {number}
533
- * @memberof GenerateV1Input
503
+ * @type {Array<string>}
504
+ * @memberof GetOperationsParamsDto
534
505
  */
535
- 'inferenceSteps'?: number;
506
+ 'ids': Array<string>;
507
+ }
508
+ /**
509
+ *
510
+ * @export
511
+ * @interface GetStorageRecordParamsDto
512
+ */
513
+ export interface GetStorageRecordParamsDto {
536
514
  /**
537
515
  *
538
- * @type {number}
539
- * @memberof GenerateV1Input
516
+ * @type {Array<string>}
517
+ * @memberof GetStorageRecordParamsDto
540
518
  */
541
- 'guidanceScale'?: number;
519
+ 'keys': Array<string>;
520
+ }
521
+ /**
522
+ *
523
+ * @export
524
+ * @interface GetUrlsForImagesParamsDto
525
+ */
526
+ export interface GetUrlsForImagesParamsDto {
542
527
  /**
543
528
  *
544
- * @type {number}
545
- * @memberof GenerateV1Input
529
+ * @type {Array<string>}
530
+ * @memberof GetUrlsForImagesParamsDto
546
531
  */
547
- 'strength'?: number;
532
+ 'ids': Array<string>;
548
533
  }
549
- export declare const GenerateV1InputAspectRatioEnum: {
550
- readonly _11: "1:1";
551
- readonly _97: "9:7";
552
- readonly _79: "7:9";
553
- readonly _1913: "19:13";
554
- readonly _1319: "13:19";
555
- readonly _74: "7:4";
556
- readonly _47: "4:7";
557
- readonly _125: "12:5";
558
- readonly _512: "5:12";
559
- };
560
- export type GenerateV1InputAspectRatioEnum = typeof GenerateV1InputAspectRatioEnum[keyof typeof GenerateV1InputAspectRatioEnum];
561
534
  /**
562
535
  *
563
536
  * @export
564
- * @interface GenerateV3ControllerInput
537
+ * @interface GiseleVtonV1ControllerInput
565
538
  */
566
- export interface GenerateV3ControllerInput {
539
+ export interface GiseleVtonV1ControllerInput {
567
540
  /**
568
541
  *
569
- * @type {GenerateV3Input}
570
- * @memberof GenerateV3ControllerInput
542
+ * @type {GiseleVtonV1Input}
543
+ * @memberof GiseleVtonV1ControllerInput
571
544
  */
572
- 'input': GenerateV3Input;
545
+ 'input': GiseleVtonV1Input;
573
546
  /**
574
547
  *
575
548
  * @type {object}
576
- * @memberof GenerateV3ControllerInput
549
+ * @memberof GiseleVtonV1ControllerInput
577
550
  */
578
551
  'metadata'?: object;
579
552
  }
580
553
  /**
581
554
  *
582
555
  * @export
583
- * @interface GenerateV3Input
556
+ * @interface GiseleVtonV1Input
584
557
  */
585
- export interface GenerateV3Input {
558
+ export interface GiseleVtonV1Input {
586
559
  /**
587
560
  *
588
561
  * @type {string}
589
- * @memberof GenerateV3Input
562
+ * @memberof GiseleVtonV1Input
590
563
  */
591
- 'prompt': string;
564
+ 'category': GiseleVtonV1InputCategoryEnum;
592
565
  /**
593
566
  *
594
567
  * @type {string}
595
- * @memberof GenerateV3Input
568
+ * @memberof GiseleVtonV1Input
596
569
  */
597
- 'category': string;
570
+ 'imageId': string;
598
571
  /**
599
572
  *
600
573
  * @type {string}
601
- * @memberof GenerateV3Input
574
+ * @memberof GiseleVtonV1Input
602
575
  */
603
- 'garmentImageId': string;
576
+ 'productDescription': string;
604
577
  /**
605
578
  *
606
579
  * @type {string}
607
- * @memberof GenerateV3Input
580
+ * @memberof GiseleVtonV1Input
608
581
  */
609
- 'poseId': string;
582
+ 'productImageId': string;
610
583
  /**
611
584
  *
612
585
  * @type {number}
613
- * @memberof GenerateV3Input
586
+ * @memberof GiseleVtonV1Input
614
587
  */
615
588
  'seed': number;
616
- /**
617
- *
618
- * @type {number}
619
- * @memberof GenerateV3Input
620
- */
621
- 'width': number;
622
- /**
623
- *
624
- * @type {number}
625
- * @memberof GenerateV3Input
626
- */
627
- 'height': number;
628
- /**
629
- *
630
- * @type {number}
631
- * @memberof GenerateV3Input
632
- */
633
- 'textGuidanceScale'?: number;
634
- /**
635
- *
636
- * @type {number}
637
- * @memberof GenerateV3Input
638
- */
639
- 'imageGuidanceScale'?: number;
640
- /**
641
- *
642
- * @type {number}
643
- * @memberof GenerateV3Input
644
- */
645
- 'numInferenceSteps'?: number;
646
- }
647
- /**
648
- *
649
- * @export
650
- * @interface GetCollectionParamsDto
651
- */
652
- export interface GetCollectionParamsDto {
653
- /**
654
- *
655
- * @type {string}
656
- * @memberof GetCollectionParamsDto
657
- */
658
- 'collectionId': string;
659
- }
660
- /**
661
- *
662
- * @export
663
- * @interface GetOperationsParamsDto
664
- */
665
- export interface GetOperationsParamsDto {
666
- /**
667
- *
668
- * @type {Array<string>}
669
- * @memberof GetOperationsParamsDto
670
- */
671
- 'ids': Array<string>;
672
- }
673
- /**
674
- *
675
- * @export
676
- * @interface GetStorageRecordParamsDto
677
- */
678
- export interface GetStorageRecordParamsDto {
679
- /**
680
- *
681
- * @type {Array<string>}
682
- * @memberof GetStorageRecordParamsDto
683
- */
684
- 'keys': Array<string>;
685
- }
686
- /**
687
- *
688
- * @export
689
- * @interface GetUrlsForImagesParamsDto
690
- */
691
- export interface GetUrlsForImagesParamsDto {
692
- /**
693
- *
694
- * @type {Array<string>}
695
- * @memberof GetUrlsForImagesParamsDto
696
- */
697
- 'ids': Array<string>;
698
589
  }
590
+ export declare const GiseleVtonV1InputCategoryEnum: {
591
+ readonly Dresses: "dresses";
592
+ readonly LowerBody: "lower_body";
593
+ readonly UpperBody: "upper_body";
594
+ };
595
+ export type GiseleVtonV1InputCategoryEnum = typeof GiseleVtonV1InputCategoryEnum[keyof typeof GiseleVtonV1InputCategoryEnum];
699
596
  /**
700
597
  *
701
598
  * @export
@@ -852,48 +749,61 @@ export interface ImageUrlResponseDto {
852
749
  /**
853
750
  *
854
751
  * @export
855
- * @interface ImagineV1ControllerInput
752
+ * @interface InitializeImageUploadResultDto
753
+ */
754
+ export interface InitializeImageUploadResultDto {
755
+ /**
756
+ *
757
+ * @type {string}
758
+ * @memberof InitializeImageUploadResultDto
759
+ */
760
+ 'uploadUrl': string;
761
+ }
762
+ /**
763
+ *
764
+ * @export
765
+ * @interface KateImagineV1ControllerInput
856
766
  */
857
- export interface ImagineV1ControllerInput {
767
+ export interface KateImagineV1ControllerInput {
858
768
  /**
859
769
  *
860
- * @type {ImagineV1Input}
861
- * @memberof ImagineV1ControllerInput
770
+ * @type {KateImagineV1Input}
771
+ * @memberof KateImagineV1ControllerInput
862
772
  */
863
- 'input': ImagineV1Input;
773
+ 'input': KateImagineV1Input;
864
774
  /**
865
775
  *
866
776
  * @type {object}
867
- * @memberof ImagineV1ControllerInput
777
+ * @memberof KateImagineV1ControllerInput
868
778
  */
869
779
  'metadata'?: object;
870
780
  }
871
781
  /**
872
782
  *
873
783
  * @export
874
- * @interface ImagineV1Input
784
+ * @interface KateImagineV1Input
875
785
  */
876
- export interface ImagineV1Input {
786
+ export interface KateImagineV1Input {
877
787
  /**
878
788
  *
879
789
  * @type {string}
880
- * @memberof ImagineV1Input
790
+ * @memberof KateImagineV1Input
881
791
  */
882
- 'aspectRatio': ImagineV1InputAspectRatioEnum;
792
+ 'aspectRatio': KateImagineV1InputAspectRatioEnum;
883
793
  /**
884
794
  *
885
795
  * @type {string}
886
- * @memberof ImagineV1Input
796
+ * @memberof KateImagineV1Input
887
797
  */
888
798
  'seed': string;
889
799
  /**
890
800
  *
891
801
  * @type {string}
892
- * @memberof ImagineV1Input
802
+ * @memberof KateImagineV1Input
893
803
  */
894
804
  'prompt': string;
895
805
  }
896
- export declare const ImagineV1InputAspectRatioEnum: {
806
+ export declare const KateImagineV1InputAspectRatioEnum: {
897
807
  readonly _11: "1:1";
898
808
  readonly _97: "9:7";
899
809
  readonly _79: "7:9";
@@ -904,105 +814,216 @@ export declare const ImagineV1InputAspectRatioEnum: {
904
814
  readonly _125: "12:5";
905
815
  readonly _512: "5:12";
906
816
  };
907
- export type ImagineV1InputAspectRatioEnum = typeof ImagineV1InputAspectRatioEnum[keyof typeof ImagineV1InputAspectRatioEnum];
908
- /**
909
- *
910
- * @export
911
- * @interface InitializeImageUploadResultDto
912
- */
913
- export interface InitializeImageUploadResultDto {
914
- /**
915
- *
916
- * @type {string}
917
- * @memberof InitializeImageUploadResultDto
918
- */
919
- 'uploadUrl': string;
920
- }
817
+ export type KateImagineV1InputAspectRatioEnum = typeof KateImagineV1InputAspectRatioEnum[keyof typeof KateImagineV1InputAspectRatioEnum];
921
818
  /**
922
819
  *
923
820
  * @export
924
- * @interface InpaintV1ControllerInput
821
+ * @interface KateInpaintV1ControllerInput
925
822
  */
926
- export interface InpaintV1ControllerInput {
823
+ export interface KateInpaintV1ControllerInput {
927
824
  /**
928
825
  *
929
- * @type {InpaintV1Input}
930
- * @memberof InpaintV1ControllerInput
826
+ * @type {KateInpaintV1Input}
827
+ * @memberof KateInpaintV1ControllerInput
931
828
  */
932
- 'input': InpaintV1Input;
829
+ 'input': KateInpaintV1Input;
933
830
  /**
934
831
  *
935
832
  * @type {object}
936
- * @memberof InpaintV1ControllerInput
833
+ * @memberof KateInpaintV1ControllerInput
937
834
  */
938
835
  'metadata'?: object;
939
836
  }
940
837
  /**
941
838
  *
942
839
  * @export
943
- * @interface InpaintV1Input
840
+ * @interface KateInpaintV1Input
944
841
  */
945
- export interface InpaintV1Input {
842
+ export interface KateInpaintV1Input {
946
843
  /**
947
844
  *
948
845
  * @type {string}
949
- * @memberof InpaintV1Input
846
+ * @memberof KateInpaintV1Input
950
847
  */
951
848
  'image': string;
952
849
  /**
953
850
  *
954
851
  * @type {string}
955
- * @memberof InpaintV1Input
852
+ * @memberof KateInpaintV1Input
956
853
  */
957
854
  'mask': string;
958
855
  /**
959
856
  *
960
857
  * @type {number}
961
- * @memberof InpaintV1Input
858
+ * @memberof KateInpaintV1Input
962
859
  */
963
860
  'maskSpread'?: number;
964
861
  /**
965
862
  *
966
863
  * @type {string}
967
- * @memberof InpaintV1Input
864
+ * @memberof KateInpaintV1Input
968
865
  */
969
866
  'prompt': string;
970
867
  /**
971
868
  *
972
869
  * @type {number}
973
- * @memberof InpaintV1Input
870
+ * @memberof KateInpaintV1Input
974
871
  */
975
872
  'seed': number;
976
873
  /**
977
874
  *
978
875
  * @type {number}
979
- * @memberof InpaintV1Input
876
+ * @memberof KateInpaintV1Input
980
877
  */
981
878
  'strength': number;
982
879
  /**
983
880
  *
984
881
  * @type {number}
985
- * @memberof InpaintV1Input
882
+ * @memberof KateInpaintV1Input
986
883
  */
987
884
  'height': number;
988
885
  /**
989
886
  *
990
887
  * @type {number}
991
- * @memberof InpaintV1Input
888
+ * @memberof KateInpaintV1Input
992
889
  */
993
890
  'width': number;
994
891
  /**
995
892
  *
996
893
  * @type {number}
997
- * @memberof InpaintV1Input
894
+ * @memberof KateInpaintV1Input
998
895
  */
999
896
  'numInferenceSteps'?: number;
1000
897
  /**
1001
898
  *
1002
- * @type {number}
1003
- * @memberof InpaintV1Input
899
+ * @type {number}
900
+ * @memberof KateInpaintV1Input
901
+ */
902
+ 'guidanceScale'?: number;
903
+ }
904
+ /**
905
+ *
906
+ * @export
907
+ * @interface LindaHauteV1ControllerInput
908
+ */
909
+ export interface LindaHauteV1ControllerInput {
910
+ /**
911
+ *
912
+ * @type {LindaHauteV1Input}
913
+ * @memberof LindaHauteV1ControllerInput
914
+ */
915
+ 'input': LindaHauteV1Input;
916
+ /**
917
+ *
918
+ * @type {object}
919
+ * @memberof LindaHauteV1ControllerInput
920
+ */
921
+ 'metadata'?: object;
922
+ }
923
+ /**
924
+ *
925
+ * @export
926
+ * @interface LindaHauteV1Input
927
+ */
928
+ export interface LindaHauteV1Input {
929
+ /**
930
+ *
931
+ * @type {string}
932
+ * @memberof LindaHauteV1Input
933
+ */
934
+ 'aspectRatio': LindaHauteV1InputAspectRatioEnum;
935
+ /**
936
+ *
937
+ * @type {string}
938
+ * @memberof LindaHauteV1Input
939
+ */
940
+ 'productImageId': string;
941
+ /**
942
+ *
943
+ * @type {string}
944
+ * @memberof LindaHauteV1Input
945
+ */
946
+ 'prompt': string;
947
+ /**
948
+ *
949
+ * @type {number}
950
+ * @memberof LindaHauteV1Input
951
+ */
952
+ 'seed': number;
953
+ /**
954
+ *
955
+ * @type {number}
956
+ * @memberof LindaHauteV1Input
957
+ */
958
+ 'imageWeight'?: number;
959
+ /**
960
+ *
961
+ * @type {string}
962
+ * @memberof LindaHauteV1Input
963
+ */
964
+ 'negativePrompt'?: string;
965
+ /**
966
+ *
967
+ * @type {number}
968
+ * @memberof LindaHauteV1Input
969
+ */
970
+ 'inferenceSteps'?: number;
971
+ /**
972
+ *
973
+ * @type {number}
974
+ * @memberof LindaHauteV1Input
975
+ */
976
+ 'guidanceScale'?: number;
977
+ /**
978
+ *
979
+ * @type {number}
980
+ * @memberof LindaHauteV1Input
981
+ */
982
+ 'strength'?: number;
983
+ }
984
+ export declare const LindaHauteV1InputAspectRatioEnum: {
985
+ readonly _11: "1:1";
986
+ readonly _97: "9:7";
987
+ readonly _79: "7:9";
988
+ readonly _1913: "19:13";
989
+ readonly _1319: "13:19";
990
+ readonly _74: "7:4";
991
+ readonly _47: "4:7";
992
+ readonly _125: "12:5";
993
+ readonly _512: "5:12";
994
+ };
995
+ export type LindaHauteV1InputAspectRatioEnum = typeof LindaHauteV1InputAspectRatioEnum[keyof typeof LindaHauteV1InputAspectRatioEnum];
996
+ /**
997
+ *
998
+ * @export
999
+ * @interface ListAccountsDto
1000
+ */
1001
+ export interface ListAccountsDto {
1002
+ /**
1003
+ *
1004
+ * @type {Array<AccountEntity>}
1005
+ * @memberof ListAccountsDto
1006
+ */
1007
+ 'data': Array<AccountEntity>;
1008
+ /**
1009
+ *
1010
+ * @type {ListAccountsDtoPageInfo}
1011
+ * @memberof ListAccountsDto
1012
+ */
1013
+ 'pageInfo': ListAccountsDtoPageInfo;
1014
+ }
1015
+ /**
1016
+ *
1017
+ * @export
1018
+ * @interface ListAccountsDtoPageInfo
1019
+ */
1020
+ export interface ListAccountsDtoPageInfo {
1021
+ /**
1022
+ *
1023
+ * @type {string}
1024
+ * @memberof ListAccountsDtoPageInfo
1004
1025
  */
1005
- 'guidanceScale'?: number;
1026
+ 'nextCursor': string;
1006
1027
  }
1007
1028
  /**
1008
1029
  *
@@ -1018,10 +1039,10 @@ export interface ListCollectionItemsDto {
1018
1039
  'data': Array<ResourceEntity>;
1019
1040
  /**
1020
1041
  *
1021
- * @type {ListCollectionsDtoPageInfo}
1042
+ * @type {ListAccountsDtoPageInfo}
1022
1043
  * @memberof ListCollectionItemsDto
1023
1044
  */
1024
- 'pageInfo': ListCollectionsDtoPageInfo;
1045
+ 'pageInfo': ListAccountsDtoPageInfo;
1025
1046
  }
1026
1047
  /**
1027
1048
  *
@@ -1037,23 +1058,10 @@ export interface ListCollectionsDto {
1037
1058
  'data': Array<CollectionEntity>;
1038
1059
  /**
1039
1060
  *
1040
- * @type {ListCollectionsDtoPageInfo}
1061
+ * @type {ListAccountsDtoPageInfo}
1041
1062
  * @memberof ListCollectionsDto
1042
1063
  */
1043
- 'pageInfo': ListCollectionsDtoPageInfo;
1044
- }
1045
- /**
1046
- *
1047
- * @export
1048
- * @interface ListCollectionsDtoPageInfo
1049
- */
1050
- export interface ListCollectionsDtoPageInfo {
1051
- /**
1052
- *
1053
- * @type {string}
1054
- * @memberof ListCollectionsDtoPageInfo
1055
- */
1056
- 'nextCursor': string;
1064
+ 'pageInfo': ListAccountsDtoPageInfo;
1057
1065
  }
1058
1066
  /**
1059
1067
  *
@@ -1069,10 +1077,10 @@ export interface ListOperationsDto {
1069
1077
  'data': Array<OperationEntity>;
1070
1078
  /**
1071
1079
  *
1072
- * @type {ListCollectionsDtoPageInfo}
1080
+ * @type {ListAccountsDtoPageInfo}
1073
1081
  * @memberof ListOperationsDto
1074
1082
  */
1075
- 'pageInfo': ListCollectionsDtoPageInfo;
1083
+ 'pageInfo': ListAccountsDtoPageInfo;
1076
1084
  }
1077
1085
  /**
1078
1086
  *
@@ -1088,10 +1096,10 @@ export interface ListPipelinesDto {
1088
1096
  'data': Array<PipelineEntity>;
1089
1097
  /**
1090
1098
  *
1091
- * @type {ListCollectionsDtoPageInfo}
1099
+ * @type {ListAccountsDtoPageInfo}
1092
1100
  * @memberof ListPipelinesDto
1093
1101
  */
1094
- 'pageInfo': ListCollectionsDtoPageInfo;
1102
+ 'pageInfo': ListAccountsDtoPageInfo;
1095
1103
  }
1096
1104
  /**
1097
1105
  *
@@ -1107,10 +1115,10 @@ export interface ListStacksDto {
1107
1115
  'data': Array<StackEntity>;
1108
1116
  /**
1109
1117
  *
1110
- * @type {ListCollectionsDtoPageInfo}
1118
+ * @type {ListAccountsDtoPageInfo}
1111
1119
  * @memberof ListStacksDto
1112
1120
  */
1113
- 'pageInfo': ListCollectionsDtoPageInfo;
1121
+ 'pageInfo': ListAccountsDtoPageInfo;
1114
1122
  }
1115
1123
  /**
1116
1124
  *
@@ -1144,6 +1152,92 @@ export declare const ListStacksParamsDtoOrderByEnum: {
1144
1152
  readonly UpdatedAtDesc: "updatedAt_DESC";
1145
1153
  };
1146
1154
  export type ListStacksParamsDtoOrderByEnum = typeof ListStacksParamsDtoOrderByEnum[keyof typeof ListStacksParamsDtoOrderByEnum];
1155
+ /**
1156
+ *
1157
+ * @export
1158
+ * @interface NaomiHauteV1ControllerInput
1159
+ */
1160
+ export interface NaomiHauteV1ControllerInput {
1161
+ /**
1162
+ *
1163
+ * @type {NaomiHauteV1Input}
1164
+ * @memberof NaomiHauteV1ControllerInput
1165
+ */
1166
+ 'input': NaomiHauteV1Input;
1167
+ /**
1168
+ *
1169
+ * @type {object}
1170
+ * @memberof NaomiHauteV1ControllerInput
1171
+ */
1172
+ 'metadata'?: object;
1173
+ }
1174
+ /**
1175
+ *
1176
+ * @export
1177
+ * @interface NaomiHauteV1Input
1178
+ */
1179
+ export interface NaomiHauteV1Input {
1180
+ /**
1181
+ *
1182
+ * @type {string}
1183
+ * @memberof NaomiHauteV1Input
1184
+ */
1185
+ 'prompt': string;
1186
+ /**
1187
+ *
1188
+ * @type {string}
1189
+ * @memberof NaomiHauteV1Input
1190
+ */
1191
+ 'category': string;
1192
+ /**
1193
+ *
1194
+ * @type {string}
1195
+ * @memberof NaomiHauteV1Input
1196
+ */
1197
+ 'garmentImageId': string;
1198
+ /**
1199
+ *
1200
+ * @type {string}
1201
+ * @memberof NaomiHauteV1Input
1202
+ */
1203
+ 'poseId': string;
1204
+ /**
1205
+ *
1206
+ * @type {number}
1207
+ * @memberof NaomiHauteV1Input
1208
+ */
1209
+ 'seed': number;
1210
+ /**
1211
+ *
1212
+ * @type {number}
1213
+ * @memberof NaomiHauteV1Input
1214
+ */
1215
+ 'width': number;
1216
+ /**
1217
+ *
1218
+ * @type {number}
1219
+ * @memberof NaomiHauteV1Input
1220
+ */
1221
+ 'height': number;
1222
+ /**
1223
+ *
1224
+ * @type {number}
1225
+ * @memberof NaomiHauteV1Input
1226
+ */
1227
+ 'textGuidanceScale'?: number;
1228
+ /**
1229
+ *
1230
+ * @type {number}
1231
+ * @memberof NaomiHauteV1Input
1232
+ */
1233
+ 'imageGuidanceScale'?: number;
1234
+ /**
1235
+ *
1236
+ * @type {number}
1237
+ * @memberof NaomiHauteV1Input
1238
+ */
1239
+ 'numInferenceSteps'?: number;
1240
+ }
1147
1241
  /**
1148
1242
  *
1149
1243
  * @export
@@ -1401,13 +1495,13 @@ export interface PoseEntity {
1401
1495
  * @type {ImageEntity}
1402
1496
  * @memberof PoseEntity
1403
1497
  */
1404
- 'previewImage': ImageEntity;
1498
+ 'previewImage'?: ImageEntity;
1405
1499
  /**
1406
1500
  *
1407
1501
  * @type {string}
1408
1502
  * @memberof PoseEntity
1409
1503
  */
1410
- 'previewImageId': string;
1504
+ 'previewImageId'?: string;
1411
1505
  }
1412
1506
  export declare const PoseEntityKindEnum: {
1413
1507
  readonly Collection: "collection";
@@ -1612,6 +1706,19 @@ export interface SegmentAnythingMaskV1Input {
1612
1706
  */
1613
1707
  'box': Array<number>;
1614
1708
  }
1709
+ /**
1710
+ *
1711
+ * @export
1712
+ * @interface SetPosePreviewControllerParamsDto
1713
+ */
1714
+ export interface SetPosePreviewControllerParamsDto {
1715
+ /**
1716
+ *
1717
+ * @type {string}
1718
+ * @memberof SetPosePreviewControllerParamsDto
1719
+ */
1720
+ 'previewImageId': string;
1721
+ }
1615
1722
  /**
1616
1723
  *
1617
1724
  * @export
@@ -1831,6 +1938,14 @@ export declare const AccessApiAxiosParamCreator: (configuration?: Configuration)
1831
1938
  * @throws {RequiredError}
1832
1939
  */
1833
1940
  accessControllerAccountGrantAccessV1: (id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1941
+ /**
1942
+ *
1943
+ * @param {string} id
1944
+ * @param {AttachAccessControllerParamsDto} attachAccessControllerParamsDto
1945
+ * @param {*} [options] Override http request option.
1946
+ * @throws {RequiredError}
1947
+ */
1948
+ accessControllerAttachAccessV1: (id: string, attachAccessControllerParamsDto: AttachAccessControllerParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1834
1949
  /**
1835
1950
  *
1836
1951
  * @param {string} id
@@ -1853,6 +1968,14 @@ export declare const AccessApiFp: (configuration?: Configuration) => {
1853
1968
  * @throws {RequiredError}
1854
1969
  */
1855
1970
  accessControllerAccountGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1971
+ /**
1972
+ *
1973
+ * @param {string} id
1974
+ * @param {AttachAccessControllerParamsDto} attachAccessControllerParamsDto
1975
+ * @param {*} [options] Override http request option.
1976
+ * @throws {RequiredError}
1977
+ */
1978
+ accessControllerAttachAccessV1(id: string, attachAccessControllerParamsDto: AttachAccessControllerParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1856
1979
  /**
1857
1980
  *
1858
1981
  * @param {string} id
@@ -1875,6 +1998,14 @@ export declare const AccessApiFactory: (configuration?: Configuration, basePath?
1875
1998
  * @throws {RequiredError}
1876
1999
  */
1877
2000
  accessControllerAccountGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): AxiosPromise<void>;
2001
+ /**
2002
+ *
2003
+ * @param {string} id
2004
+ * @param {AttachAccessControllerParamsDto} attachAccessControllerParamsDto
2005
+ * @param {*} [options] Override http request option.
2006
+ * @throws {RequiredError}
2007
+ */
2008
+ accessControllerAttachAccessV1(id: string, attachAccessControllerParamsDto: AttachAccessControllerParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1878
2009
  /**
1879
2010
  *
1880
2011
  * @param {string} id
@@ -1900,6 +2031,15 @@ export declare class AccessApi extends BaseAPI {
1900
2031
  * @memberof AccessApi
1901
2032
  */
1902
2033
  accessControllerAccountGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2034
+ /**
2035
+ *
2036
+ * @param {string} id
2037
+ * @param {AttachAccessControllerParamsDto} attachAccessControllerParamsDto
2038
+ * @param {*} [options] Override http request option.
2039
+ * @throws {RequiredError}
2040
+ * @memberof AccessApi
2041
+ */
2042
+ accessControllerAttachAccessV1(id: string, attachAccessControllerParamsDto: AttachAccessControllerParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1903
2043
  /**
1904
2044
  *
1905
2045
  * @param {string} id
@@ -1942,6 +2082,15 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
1942
2082
  * @throws {RequiredError}
1943
2083
  */
1944
2084
  accountsControllerGetSelfV1: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2085
+ /**
2086
+ *
2087
+ * @param {AccountsControllerListAccointsV1OrderByEnum} [orderBy]
2088
+ * @param {number} [limit]
2089
+ * @param {string} [cursor]
2090
+ * @param {*} [options] Override http request option.
2091
+ * @throws {RequiredError}
2092
+ */
2093
+ accountsControllerListAccointsV1: (orderBy?: AccountsControllerListAccointsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1945
2094
  };
1946
2095
  /**
1947
2096
  * AccountsApi - functional programming interface
@@ -1975,6 +2124,15 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
1975
2124
  * @throws {RequiredError}
1976
2125
  */
1977
2126
  accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountEntity>>;
2127
+ /**
2128
+ *
2129
+ * @param {AccountsControllerListAccointsV1OrderByEnum} [orderBy]
2130
+ * @param {number} [limit]
2131
+ * @param {string} [cursor]
2132
+ * @param {*} [options] Override http request option.
2133
+ * @throws {RequiredError}
2134
+ */
2135
+ accountsControllerListAccointsV1(orderBy?: AccountsControllerListAccointsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListAccountsDto>>;
1978
2136
  };
1979
2137
  /**
1980
2138
  * AccountsApi - factory interface
@@ -2008,6 +2166,15 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
2008
2166
  * @throws {RequiredError}
2009
2167
  */
2010
2168
  accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): AxiosPromise<AccountEntity>;
2169
+ /**
2170
+ *
2171
+ * @param {AccountsControllerListAccointsV1OrderByEnum} [orderBy]
2172
+ * @param {number} [limit]
2173
+ * @param {string} [cursor]
2174
+ * @param {*} [options] Override http request option.
2175
+ * @throws {RequiredError}
2176
+ */
2177
+ accountsControllerListAccointsV1(orderBy?: AccountsControllerListAccointsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListAccountsDto>;
2011
2178
  };
2012
2179
  /**
2013
2180
  * AccountsApi - object-oriented interface
@@ -2047,7 +2214,25 @@ export declare class AccountsApi extends BaseAPI {
2047
2214
  * @memberof AccountsApi
2048
2215
  */
2049
2216
  accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountEntity, any>>;
2217
+ /**
2218
+ *
2219
+ * @param {AccountsControllerListAccointsV1OrderByEnum} [orderBy]
2220
+ * @param {number} [limit]
2221
+ * @param {string} [cursor]
2222
+ * @param {*} [options] Override http request option.
2223
+ * @throws {RequiredError}
2224
+ * @memberof AccountsApi
2225
+ */
2226
+ accountsControllerListAccointsV1(orderBy?: AccountsControllerListAccointsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListAccountsDto, any>>;
2050
2227
  }
2228
+ /**
2229
+ * @export
2230
+ */
2231
+ export declare const AccountsControllerListAccointsV1OrderByEnum: {
2232
+ readonly Asc: "createdAt_ASC";
2233
+ readonly Desc: "createdAt_DESC";
2234
+ };
2235
+ export type AccountsControllerListAccointsV1OrderByEnum = typeof AccountsControllerListAccointsV1OrderByEnum[keyof typeof AccountsControllerListAccointsV1OrderByEnum];
2051
2236
  /**
2052
2237
  * BalancesApi - axios parameter creator
2053
2238
  * @export
@@ -2200,7 +2385,7 @@ export declare const CallApiAxiosParamCreator: (configuration?: Configuration) =
2200
2385
  * @param {*} [options] Override http request option.
2201
2386
  * @throws {RequiredError}
2202
2387
  */
2203
- callControllerCallImagesGetUrlsV1: (getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2388
+ callControllerCallImagesGetManyV1: (getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2204
2389
  /**
2205
2390
  *
2206
2391
  * @param {CreateStackParamsDto} createStackParamsDto
@@ -2255,7 +2440,7 @@ export declare const CallApiFp: (configuration?: Configuration) => {
2255
2440
  * @param {*} [options] Override http request option.
2256
2441
  * @throws {RequiredError}
2257
2442
  */
2258
- callControllerCallImagesGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ImageUrlResponseDto>>>;
2443
+ callControllerCallImagesGetManyV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ImageUrlResponseDto>>>;
2259
2444
  /**
2260
2445
  *
2261
2446
  * @param {CreateStackParamsDto} createStackParamsDto
@@ -2310,7 +2495,7 @@ export declare const CallApiFactory: (configuration?: Configuration, basePath?:
2310
2495
  * @param {*} [options] Override http request option.
2311
2496
  * @throws {RequiredError}
2312
2497
  */
2313
- callControllerCallImagesGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<ImageUrlResponseDto>>;
2498
+ callControllerCallImagesGetManyV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<ImageUrlResponseDto>>;
2314
2499
  /**
2315
2500
  *
2316
2501
  * @param {CreateStackParamsDto} createStackParamsDto
@@ -2372,7 +2557,7 @@ export declare class CallApi extends BaseAPI {
2372
2557
  * @throws {RequiredError}
2373
2558
  * @memberof CallApi
2374
2559
  */
2375
- callControllerCallImagesGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageUrlResponseDto[], any>>;
2560
+ callControllerCallImagesGetManyV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageUrlResponseDto[], any>>;
2376
2561
  /**
2377
2562
  *
2378
2563
  * @param {CreateStackParamsDto} createStackParamsDto
@@ -3078,39 +3263,39 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
3078
3263
  operationsControllerRunCutV1V1: (cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3079
3264
  /**
3080
3265
  *
3081
- * @param {GenerateV1ControllerInput} generateV1ControllerInput
3266
+ * @param {GPTV1ControllerInput} gPTV1ControllerInput
3082
3267
  * @param {*} [options] Override http request option.
3083
3268
  * @throws {RequiredError}
3084
3269
  */
3085
- operationsControllerRunGenerateV1V1: (generateV1ControllerInput: GenerateV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3270
+ operationsControllerRunGptV1V1: (gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3086
3271
  /**
3087
3272
  *
3088
- * @param {GenerateV3ControllerInput} generateV3ControllerInput
3273
+ * @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
3089
3274
  * @param {*} [options] Override http request option.
3090
3275
  * @throws {RequiredError}
3091
3276
  */
3092
- operationsControllerRunGenerateV3V1: (generateV3ControllerInput: GenerateV3ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3277
+ operationsControllerRunHauteLindaV1V1: (lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3093
3278
  /**
3094
3279
  *
3095
- * @param {GPTV1ControllerInput} gPTV1ControllerInput
3280
+ * @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
3096
3281
  * @param {*} [options] Override http request option.
3097
3282
  * @throws {RequiredError}
3098
3283
  */
3099
- operationsControllerRunGptV1V1: (gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3284
+ operationsControllerRunHauteNaomiV1V1: (naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3100
3285
  /**
3101
3286
  *
3102
- * @param {ImagineV1ControllerInput} imagineV1ControllerInput
3287
+ * @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
3103
3288
  * @param {*} [options] Override http request option.
3104
3289
  * @throws {RequiredError}
3105
3290
  */
3106
- operationsControllerRunImagineV1V1: (imagineV1ControllerInput: ImagineV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3291
+ operationsControllerRunImagineKateV1V1: (kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3107
3292
  /**
3108
3293
  *
3109
- * @param {InpaintV1ControllerInput} inpaintV1ControllerInput
3294
+ * @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
3110
3295
  * @param {*} [options] Override http request option.
3111
3296
  * @throws {RequiredError}
3112
3297
  */
3113
- operationsControllerRunInpaintV1V1: (inpaintV1ControllerInput: InpaintV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3298
+ operationsControllerRunInpaintKateV1V1: (kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3114
3299
  /**
3115
3300
  *
3116
3301
  * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
@@ -3146,6 +3331,13 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
3146
3331
  * @throws {RequiredError}
3147
3332
  */
3148
3333
  operationsControllerRunUpscaleV1V1: (upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3334
+ /**
3335
+ *
3336
+ * @param {GiseleVtonV1ControllerInput} giseleVtonV1ControllerInput
3337
+ * @param {*} [options] Override http request option.
3338
+ * @throws {RequiredError}
3339
+ */
3340
+ operationsControllerRunVtonGiseleV1V1: (giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3149
3341
  /**
3150
3342
  *
3151
3343
  * @param {string} id
@@ -3199,39 +3391,39 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
3199
3391
  operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3200
3392
  /**
3201
3393
  *
3202
- * @param {GenerateV1ControllerInput} generateV1ControllerInput
3394
+ * @param {GPTV1ControllerInput} gPTV1ControllerInput
3203
3395
  * @param {*} [options] Override http request option.
3204
3396
  * @throws {RequiredError}
3205
3397
  */
3206
- operationsControllerRunGenerateV1V1(generateV1ControllerInput: GenerateV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3398
+ operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3207
3399
  /**
3208
3400
  *
3209
- * @param {GenerateV3ControllerInput} generateV3ControllerInput
3401
+ * @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
3210
3402
  * @param {*} [options] Override http request option.
3211
3403
  * @throws {RequiredError}
3212
3404
  */
3213
- operationsControllerRunGenerateV3V1(generateV3ControllerInput: GenerateV3ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3405
+ operationsControllerRunHauteLindaV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3214
3406
  /**
3215
3407
  *
3216
- * @param {GPTV1ControllerInput} gPTV1ControllerInput
3408
+ * @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
3217
3409
  * @param {*} [options] Override http request option.
3218
3410
  * @throws {RequiredError}
3219
3411
  */
3220
- operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3412
+ operationsControllerRunHauteNaomiV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3221
3413
  /**
3222
3414
  *
3223
- * @param {ImagineV1ControllerInput} imagineV1ControllerInput
3415
+ * @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
3224
3416
  * @param {*} [options] Override http request option.
3225
3417
  * @throws {RequiredError}
3226
3418
  */
3227
- operationsControllerRunImagineV1V1(imagineV1ControllerInput: ImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3419
+ operationsControllerRunImagineKateV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3228
3420
  /**
3229
3421
  *
3230
- * @param {InpaintV1ControllerInput} inpaintV1ControllerInput
3422
+ * @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
3231
3423
  * @param {*} [options] Override http request option.
3232
3424
  * @throws {RequiredError}
3233
3425
  */
3234
- operationsControllerRunInpaintV1V1(inpaintV1ControllerInput: InpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3426
+ operationsControllerRunInpaintKateV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3235
3427
  /**
3236
3428
  *
3237
3429
  * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
@@ -3267,6 +3459,13 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
3267
3459
  * @throws {RequiredError}
3268
3460
  */
3269
3461
  operationsControllerRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3462
+ /**
3463
+ *
3464
+ * @param {GiseleVtonV1ControllerInput} giseleVtonV1ControllerInput
3465
+ * @param {*} [options] Override http request option.
3466
+ * @throws {RequiredError}
3467
+ */
3468
+ operationsControllerRunVtonGiseleV1V1(giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3270
3469
  /**
3271
3470
  *
3272
3471
  * @param {string} id
@@ -3320,39 +3519,39 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
3320
3519
  operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3321
3520
  /**
3322
3521
  *
3323
- * @param {GenerateV1ControllerInput} generateV1ControllerInput
3522
+ * @param {GPTV1ControllerInput} gPTV1ControllerInput
3324
3523
  * @param {*} [options] Override http request option.
3325
3524
  * @throws {RequiredError}
3326
3525
  */
3327
- operationsControllerRunGenerateV1V1(generateV1ControllerInput: GenerateV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3526
+ operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3328
3527
  /**
3329
3528
  *
3330
- * @param {GenerateV3ControllerInput} generateV3ControllerInput
3529
+ * @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
3331
3530
  * @param {*} [options] Override http request option.
3332
3531
  * @throws {RequiredError}
3333
3532
  */
3334
- operationsControllerRunGenerateV3V1(generateV3ControllerInput: GenerateV3ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3533
+ operationsControllerRunHauteLindaV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3335
3534
  /**
3336
3535
  *
3337
- * @param {GPTV1ControllerInput} gPTV1ControllerInput
3536
+ * @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
3338
3537
  * @param {*} [options] Override http request option.
3339
3538
  * @throws {RequiredError}
3340
3539
  */
3341
- operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3540
+ operationsControllerRunHauteNaomiV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3342
3541
  /**
3343
3542
  *
3344
- * @param {ImagineV1ControllerInput} imagineV1ControllerInput
3543
+ * @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
3345
3544
  * @param {*} [options] Override http request option.
3346
3545
  * @throws {RequiredError}
3347
3546
  */
3348
- operationsControllerRunImagineV1V1(imagineV1ControllerInput: ImagineV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3547
+ operationsControllerRunImagineKateV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3349
3548
  /**
3350
3549
  *
3351
- * @param {InpaintV1ControllerInput} inpaintV1ControllerInput
3550
+ * @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
3352
3551
  * @param {*} [options] Override http request option.
3353
3552
  * @throws {RequiredError}
3354
3553
  */
3355
- operationsControllerRunInpaintV1V1(inpaintV1ControllerInput: InpaintV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3554
+ operationsControllerRunInpaintKateV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3356
3555
  /**
3357
3556
  *
3358
3557
  * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
@@ -3388,6 +3587,13 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
3388
3587
  * @throws {RequiredError}
3389
3588
  */
3390
3589
  operationsControllerRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3590
+ /**
3591
+ *
3592
+ * @param {GiseleVtonV1ControllerInput} giseleVtonV1ControllerInput
3593
+ * @param {*} [options] Override http request option.
3594
+ * @throws {RequiredError}
3595
+ */
3596
+ operationsControllerRunVtonGiseleV1V1(giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3391
3597
  /**
3392
3598
  *
3393
3599
  * @param {string} id
@@ -3448,44 +3654,44 @@ export declare class OperationsApi extends BaseAPI {
3448
3654
  operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3449
3655
  /**
3450
3656
  *
3451
- * @param {GenerateV1ControllerInput} generateV1ControllerInput
3657
+ * @param {GPTV1ControllerInput} gPTV1ControllerInput
3452
3658
  * @param {*} [options] Override http request option.
3453
3659
  * @throws {RequiredError}
3454
3660
  * @memberof OperationsApi
3455
3661
  */
3456
- operationsControllerRunGenerateV1V1(generateV1ControllerInput: GenerateV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3662
+ operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3457
3663
  /**
3458
3664
  *
3459
- * @param {GenerateV3ControllerInput} generateV3ControllerInput
3665
+ * @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
3460
3666
  * @param {*} [options] Override http request option.
3461
3667
  * @throws {RequiredError}
3462
3668
  * @memberof OperationsApi
3463
3669
  */
3464
- operationsControllerRunGenerateV3V1(generateV3ControllerInput: GenerateV3ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3670
+ operationsControllerRunHauteLindaV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3465
3671
  /**
3466
3672
  *
3467
- * @param {GPTV1ControllerInput} gPTV1ControllerInput
3673
+ * @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
3468
3674
  * @param {*} [options] Override http request option.
3469
3675
  * @throws {RequiredError}
3470
3676
  * @memberof OperationsApi
3471
3677
  */
3472
- operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3678
+ operationsControllerRunHauteNaomiV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3473
3679
  /**
3474
3680
  *
3475
- * @param {ImagineV1ControllerInput} imagineV1ControllerInput
3681
+ * @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
3476
3682
  * @param {*} [options] Override http request option.
3477
3683
  * @throws {RequiredError}
3478
3684
  * @memberof OperationsApi
3479
3685
  */
3480
- operationsControllerRunImagineV1V1(imagineV1ControllerInput: ImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3686
+ operationsControllerRunImagineKateV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3481
3687
  /**
3482
3688
  *
3483
- * @param {InpaintV1ControllerInput} inpaintV1ControllerInput
3689
+ * @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
3484
3690
  * @param {*} [options] Override http request option.
3485
3691
  * @throws {RequiredError}
3486
3692
  * @memberof OperationsApi
3487
3693
  */
3488
- operationsControllerRunInpaintV1V1(inpaintV1ControllerInput: InpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3694
+ operationsControllerRunInpaintKateV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3489
3695
  /**
3490
3696
  *
3491
3697
  * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
@@ -3526,6 +3732,14 @@ export declare class OperationsApi extends BaseAPI {
3526
3732
  * @memberof OperationsApi
3527
3733
  */
3528
3734
  operationsControllerRunUpscaleV1V1(upscaleV1ControllerInput: UpscaleV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3735
+ /**
3736
+ *
3737
+ * @param {GiseleVtonV1ControllerInput} giseleVtonV1ControllerInput
3738
+ * @param {*} [options] Override http request option.
3739
+ * @throws {RequiredError}
3740
+ * @memberof OperationsApi
3741
+ */
3742
+ operationsControllerRunVtonGiseleV1V1(giseleVtonV1ControllerInput: GiseleVtonV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3529
3743
  /**
3530
3744
  *
3531
3745
  * @param {string} id
@@ -3747,6 +3961,14 @@ export declare const PosesApiAxiosParamCreator: (configuration?: Configuration)
3747
3961
  * @throws {RequiredError}
3748
3962
  */
3749
3963
  posesControllerListPosesV1: (orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3964
+ /**
3965
+ *
3966
+ * @param {string} id
3967
+ * @param {SetPosePreviewControllerParamsDto} setPosePreviewControllerParamsDto
3968
+ * @param {*} [options] Override http request option.
3969
+ * @throws {RequiredError}
3970
+ */
3971
+ posesControllerSetPosePreviewV1: (id: string, setPosePreviewControllerParamsDto: SetPosePreviewControllerParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3750
3972
  };
3751
3973
  /**
3752
3974
  * PosesApi - functional programming interface
@@ -3769,6 +3991,14 @@ export declare const PosesApiFp: (configuration?: Configuration) => {
3769
3991
  * @throws {RequiredError}
3770
3992
  */
3771
3993
  posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPipelinesDto>>;
3994
+ /**
3995
+ *
3996
+ * @param {string} id
3997
+ * @param {SetPosePreviewControllerParamsDto} setPosePreviewControllerParamsDto
3998
+ * @param {*} [options] Override http request option.
3999
+ * @throws {RequiredError}
4000
+ */
4001
+ posesControllerSetPosePreviewV1(id: string, setPosePreviewControllerParamsDto: SetPosePreviewControllerParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3772
4002
  };
3773
4003
  /**
3774
4004
  * PosesApi - factory interface
@@ -3791,6 +4021,14 @@ export declare const PosesApiFactory: (configuration?: Configuration, basePath?:
3791
4021
  * @throws {RequiredError}
3792
4022
  */
3793
4023
  posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListPipelinesDto>;
4024
+ /**
4025
+ *
4026
+ * @param {string} id
4027
+ * @param {SetPosePreviewControllerParamsDto} setPosePreviewControllerParamsDto
4028
+ * @param {*} [options] Override http request option.
4029
+ * @throws {RequiredError}
4030
+ */
4031
+ posesControllerSetPosePreviewV1(id: string, setPosePreviewControllerParamsDto: SetPosePreviewControllerParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
3794
4032
  };
3795
4033
  /**
3796
4034
  * PosesApi - object-oriented interface
@@ -3817,6 +4055,15 @@ export declare class PosesApi extends BaseAPI {
3817
4055
  * @memberof PosesApi
3818
4056
  */
3819
4057
  posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPipelinesDto, any>>;
4058
+ /**
4059
+ *
4060
+ * @param {string} id
4061
+ * @param {SetPosePreviewControllerParamsDto} setPosePreviewControllerParamsDto
4062
+ * @param {*} [options] Override http request option.
4063
+ * @throws {RequiredError}
4064
+ * @memberof PosesApi
4065
+ */
4066
+ posesControllerSetPosePreviewV1(id: string, setPosePreviewControllerParamsDto: SetPosePreviewControllerParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3820
4067
  }
3821
4068
  /**
3822
4069
  * @export
@@ -4198,57 +4445,6 @@ export declare class StorageApi extends BaseAPI {
4198
4445
  */
4199
4446
  storageControllerUpdateRecordV1(updateStorageRecordParamsDto: UpdateStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorageEntity, any>>;
4200
4447
  }
4201
- /**
4202
- * UploadApi - axios parameter creator
4203
- * @export
4204
- */
4205
- export declare const UploadApiAxiosParamCreator: (configuration?: Configuration) => {
4206
- /**
4207
- *
4208
- * @param {*} [options] Override http request option.
4209
- * @throws {RequiredError}
4210
- */
4211
- uploadControllerUploadFileV1: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4212
- };
4213
- /**
4214
- * UploadApi - functional programming interface
4215
- * @export
4216
- */
4217
- export declare const UploadApiFp: (configuration?: Configuration) => {
4218
- /**
4219
- *
4220
- * @param {*} [options] Override http request option.
4221
- * @throws {RequiredError}
4222
- */
4223
- uploadControllerUploadFileV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
4224
- };
4225
- /**
4226
- * UploadApi - factory interface
4227
- * @export
4228
- */
4229
- export declare const UploadApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
4230
- /**
4231
- *
4232
- * @param {*} [options] Override http request option.
4233
- * @throws {RequiredError}
4234
- */
4235
- uploadControllerUploadFileV1(options?: RawAxiosRequestConfig): AxiosPromise<void>;
4236
- };
4237
- /**
4238
- * UploadApi - object-oriented interface
4239
- * @export
4240
- * @class UploadApi
4241
- * @extends {BaseAPI}
4242
- */
4243
- export declare class UploadApi extends BaseAPI {
4244
- /**
4245
- *
4246
- * @param {*} [options] Override http request option.
4247
- * @throws {RequiredError}
4248
- * @memberof UploadApi
4249
- */
4250
- uploadControllerUploadFileV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
4251
- }
4252
4448
  /**
4253
4449
  * WebsocketApi - axios parameter creator
4254
4450
  * @export