@hautechai/sdk 0.0.17 → 0.0.18

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
@@ -466,184 +479,6 @@ export declare const GPTV1InputModelEnum: {
466
479
  readonly Gpt4o: "gpt-4o";
467
480
  };
468
481
  export type GPTV1InputModelEnum = typeof GPTV1InputModelEnum[keyof typeof GPTV1InputModelEnum];
469
- /**
470
- *
471
- * @export
472
- * @interface GenerateV1ControllerInput
473
- */
474
- export interface GenerateV1ControllerInput {
475
- /**
476
- *
477
- * @type {GenerateV1Input}
478
- * @memberof GenerateV1ControllerInput
479
- */
480
- 'input': GenerateV1Input;
481
- /**
482
- *
483
- * @type {object}
484
- * @memberof GenerateV1ControllerInput
485
- */
486
- 'metadata'?: object;
487
- }
488
- /**
489
- *
490
- * @export
491
- * @interface GenerateV1Input
492
- */
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;
530
- /**
531
- *
532
- * @type {number}
533
- * @memberof GenerateV1Input
534
- */
535
- 'inferenceSteps'?: number;
536
- /**
537
- *
538
- * @type {number}
539
- * @memberof GenerateV1Input
540
- */
541
- 'guidanceScale'?: number;
542
- /**
543
- *
544
- * @type {number}
545
- * @memberof GenerateV1Input
546
- */
547
- 'strength'?: number;
548
- }
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
- /**
562
- *
563
- * @export
564
- * @interface GenerateV3ControllerInput
565
- */
566
- export interface GenerateV3ControllerInput {
567
- /**
568
- *
569
- * @type {GenerateV3Input}
570
- * @memberof GenerateV3ControllerInput
571
- */
572
- 'input': GenerateV3Input;
573
- /**
574
- *
575
- * @type {object}
576
- * @memberof GenerateV3ControllerInput
577
- */
578
- 'metadata'?: object;
579
- }
580
- /**
581
- *
582
- * @export
583
- * @interface GenerateV3Input
584
- */
585
- export interface GenerateV3Input {
586
- /**
587
- *
588
- * @type {string}
589
- * @memberof GenerateV3Input
590
- */
591
- 'prompt': string;
592
- /**
593
- *
594
- * @type {string}
595
- * @memberof GenerateV3Input
596
- */
597
- 'category': string;
598
- /**
599
- *
600
- * @type {string}
601
- * @memberof GenerateV3Input
602
- */
603
- 'garmentImageId': string;
604
- /**
605
- *
606
- * @type {string}
607
- * @memberof GenerateV3Input
608
- */
609
- 'poseId': string;
610
- /**
611
- *
612
- * @type {number}
613
- * @memberof GenerateV3Input
614
- */
615
- '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
482
  /**
648
483
  *
649
484
  * @export
@@ -852,48 +687,61 @@ export interface ImageUrlResponseDto {
852
687
  /**
853
688
  *
854
689
  * @export
855
- * @interface ImagineV1ControllerInput
690
+ * @interface InitializeImageUploadResultDto
691
+ */
692
+ export interface InitializeImageUploadResultDto {
693
+ /**
694
+ *
695
+ * @type {string}
696
+ * @memberof InitializeImageUploadResultDto
697
+ */
698
+ 'uploadUrl': string;
699
+ }
700
+ /**
701
+ *
702
+ * @export
703
+ * @interface KateImagineV1ControllerInput
856
704
  */
857
- export interface ImagineV1ControllerInput {
705
+ export interface KateImagineV1ControllerInput {
858
706
  /**
859
707
  *
860
- * @type {ImagineV1Input}
861
- * @memberof ImagineV1ControllerInput
708
+ * @type {KateImagineV1Input}
709
+ * @memberof KateImagineV1ControllerInput
862
710
  */
863
- 'input': ImagineV1Input;
711
+ 'input': KateImagineV1Input;
864
712
  /**
865
713
  *
866
714
  * @type {object}
867
- * @memberof ImagineV1ControllerInput
715
+ * @memberof KateImagineV1ControllerInput
868
716
  */
869
717
  'metadata'?: object;
870
718
  }
871
719
  /**
872
720
  *
873
721
  * @export
874
- * @interface ImagineV1Input
722
+ * @interface KateImagineV1Input
875
723
  */
876
- export interface ImagineV1Input {
724
+ export interface KateImagineV1Input {
877
725
  /**
878
726
  *
879
727
  * @type {string}
880
- * @memberof ImagineV1Input
728
+ * @memberof KateImagineV1Input
881
729
  */
882
- 'aspectRatio': ImagineV1InputAspectRatioEnum;
730
+ 'aspectRatio': KateImagineV1InputAspectRatioEnum;
883
731
  /**
884
732
  *
885
733
  * @type {string}
886
- * @memberof ImagineV1Input
734
+ * @memberof KateImagineV1Input
887
735
  */
888
736
  'seed': string;
889
737
  /**
890
738
  *
891
739
  * @type {string}
892
- * @memberof ImagineV1Input
740
+ * @memberof KateImagineV1Input
893
741
  */
894
742
  'prompt': string;
895
743
  }
896
- export declare const ImagineV1InputAspectRatioEnum: {
744
+ export declare const KateImagineV1InputAspectRatioEnum: {
897
745
  readonly _11: "1:1";
898
746
  readonly _97: "9:7";
899
747
  readonly _79: "7:9";
@@ -904,105 +752,216 @@ export declare const ImagineV1InputAspectRatioEnum: {
904
752
  readonly _125: "12:5";
905
753
  readonly _512: "5:12";
906
754
  };
907
- export type ImagineV1InputAspectRatioEnum = typeof ImagineV1InputAspectRatioEnum[keyof typeof ImagineV1InputAspectRatioEnum];
755
+ export type KateImagineV1InputAspectRatioEnum = typeof KateImagineV1InputAspectRatioEnum[keyof typeof KateImagineV1InputAspectRatioEnum];
908
756
  /**
909
757
  *
910
758
  * @export
911
- * @interface InitializeImageUploadResultDto
759
+ * @interface KateInpaintV1ControllerInput
912
760
  */
913
- export interface InitializeImageUploadResultDto {
761
+ export interface KateInpaintV1ControllerInput {
914
762
  /**
915
763
  *
916
- * @type {string}
917
- * @memberof InitializeImageUploadResultDto
764
+ * @type {KateInpaintV1Input}
765
+ * @memberof KateInpaintV1ControllerInput
918
766
  */
919
- 'uploadUrl': string;
920
- }
921
- /**
922
- *
923
- * @export
924
- * @interface InpaintV1ControllerInput
925
- */
926
- export interface InpaintV1ControllerInput {
927
- /**
928
- *
929
- * @type {InpaintV1Input}
930
- * @memberof InpaintV1ControllerInput
931
- */
932
- 'input': InpaintV1Input;
767
+ 'input': KateInpaintV1Input;
933
768
  /**
934
769
  *
935
770
  * @type {object}
936
- * @memberof InpaintV1ControllerInput
771
+ * @memberof KateInpaintV1ControllerInput
937
772
  */
938
773
  'metadata'?: object;
939
774
  }
940
775
  /**
941
776
  *
942
777
  * @export
943
- * @interface InpaintV1Input
778
+ * @interface KateInpaintV1Input
944
779
  */
945
- export interface InpaintV1Input {
780
+ export interface KateInpaintV1Input {
946
781
  /**
947
782
  *
948
783
  * @type {string}
949
- * @memberof InpaintV1Input
784
+ * @memberof KateInpaintV1Input
950
785
  */
951
786
  'image': string;
952
787
  /**
953
788
  *
954
789
  * @type {string}
955
- * @memberof InpaintV1Input
790
+ * @memberof KateInpaintV1Input
956
791
  */
957
792
  'mask': string;
958
793
  /**
959
794
  *
960
795
  * @type {number}
961
- * @memberof InpaintV1Input
796
+ * @memberof KateInpaintV1Input
962
797
  */
963
798
  'maskSpread'?: number;
964
799
  /**
965
800
  *
966
801
  * @type {string}
967
- * @memberof InpaintV1Input
802
+ * @memberof KateInpaintV1Input
968
803
  */
969
804
  'prompt': string;
970
805
  /**
971
806
  *
972
807
  * @type {number}
973
- * @memberof InpaintV1Input
808
+ * @memberof KateInpaintV1Input
974
809
  */
975
810
  'seed': number;
976
811
  /**
977
812
  *
978
813
  * @type {number}
979
- * @memberof InpaintV1Input
814
+ * @memberof KateInpaintV1Input
980
815
  */
981
816
  'strength': number;
982
817
  /**
983
818
  *
984
819
  * @type {number}
985
- * @memberof InpaintV1Input
820
+ * @memberof KateInpaintV1Input
986
821
  */
987
822
  'height': number;
988
823
  /**
989
824
  *
990
825
  * @type {number}
991
- * @memberof InpaintV1Input
826
+ * @memberof KateInpaintV1Input
992
827
  */
993
828
  'width': number;
994
829
  /**
995
830
  *
996
831
  * @type {number}
997
- * @memberof InpaintV1Input
832
+ * @memberof KateInpaintV1Input
998
833
  */
999
834
  'numInferenceSteps'?: number;
1000
835
  /**
1001
836
  *
1002
837
  * @type {number}
1003
- * @memberof InpaintV1Input
838
+ * @memberof KateInpaintV1Input
839
+ */
840
+ 'guidanceScale'?: number;
841
+ }
842
+ /**
843
+ *
844
+ * @export
845
+ * @interface LindaHauteV1ControllerInput
846
+ */
847
+ export interface LindaHauteV1ControllerInput {
848
+ /**
849
+ *
850
+ * @type {LindaHauteV1Input}
851
+ * @memberof LindaHauteV1ControllerInput
852
+ */
853
+ 'input': LindaHauteV1Input;
854
+ /**
855
+ *
856
+ * @type {object}
857
+ * @memberof LindaHauteV1ControllerInput
858
+ */
859
+ 'metadata'?: object;
860
+ }
861
+ /**
862
+ *
863
+ * @export
864
+ * @interface LindaHauteV1Input
865
+ */
866
+ export interface LindaHauteV1Input {
867
+ /**
868
+ *
869
+ * @type {string}
870
+ * @memberof LindaHauteV1Input
871
+ */
872
+ 'aspectRatio': LindaHauteV1InputAspectRatioEnum;
873
+ /**
874
+ *
875
+ * @type {string}
876
+ * @memberof LindaHauteV1Input
877
+ */
878
+ 'productImageId': string;
879
+ /**
880
+ *
881
+ * @type {string}
882
+ * @memberof LindaHauteV1Input
883
+ */
884
+ 'prompt': string;
885
+ /**
886
+ *
887
+ * @type {number}
888
+ * @memberof LindaHauteV1Input
889
+ */
890
+ 'seed': number;
891
+ /**
892
+ *
893
+ * @type {number}
894
+ * @memberof LindaHauteV1Input
895
+ */
896
+ 'imageWeight'?: number;
897
+ /**
898
+ *
899
+ * @type {string}
900
+ * @memberof LindaHauteV1Input
901
+ */
902
+ 'negativePrompt'?: string;
903
+ /**
904
+ *
905
+ * @type {number}
906
+ * @memberof LindaHauteV1Input
907
+ */
908
+ 'inferenceSteps'?: number;
909
+ /**
910
+ *
911
+ * @type {number}
912
+ * @memberof LindaHauteV1Input
1004
913
  */
1005
914
  'guidanceScale'?: number;
915
+ /**
916
+ *
917
+ * @type {number}
918
+ * @memberof LindaHauteV1Input
919
+ */
920
+ 'strength'?: number;
921
+ }
922
+ export declare const LindaHauteV1InputAspectRatioEnum: {
923
+ readonly _11: "1:1";
924
+ readonly _97: "9:7";
925
+ readonly _79: "7:9";
926
+ readonly _1913: "19:13";
927
+ readonly _1319: "13:19";
928
+ readonly _74: "7:4";
929
+ readonly _47: "4:7";
930
+ readonly _125: "12:5";
931
+ readonly _512: "5:12";
932
+ };
933
+ export type LindaHauteV1InputAspectRatioEnum = typeof LindaHauteV1InputAspectRatioEnum[keyof typeof LindaHauteV1InputAspectRatioEnum];
934
+ /**
935
+ *
936
+ * @export
937
+ * @interface ListAccountsDto
938
+ */
939
+ export interface ListAccountsDto {
940
+ /**
941
+ *
942
+ * @type {Array<AccountEntity>}
943
+ * @memberof ListAccountsDto
944
+ */
945
+ 'data': Array<AccountEntity>;
946
+ /**
947
+ *
948
+ * @type {ListAccountsDtoPageInfo}
949
+ * @memberof ListAccountsDto
950
+ */
951
+ 'pageInfo': ListAccountsDtoPageInfo;
952
+ }
953
+ /**
954
+ *
955
+ * @export
956
+ * @interface ListAccountsDtoPageInfo
957
+ */
958
+ export interface ListAccountsDtoPageInfo {
959
+ /**
960
+ *
961
+ * @type {string}
962
+ * @memberof ListAccountsDtoPageInfo
963
+ */
964
+ 'nextCursor': string;
1006
965
  }
1007
966
  /**
1008
967
  *
@@ -1018,10 +977,10 @@ export interface ListCollectionItemsDto {
1018
977
  'data': Array<ResourceEntity>;
1019
978
  /**
1020
979
  *
1021
- * @type {ListCollectionsDtoPageInfo}
980
+ * @type {ListAccountsDtoPageInfo}
1022
981
  * @memberof ListCollectionItemsDto
1023
982
  */
1024
- 'pageInfo': ListCollectionsDtoPageInfo;
983
+ 'pageInfo': ListAccountsDtoPageInfo;
1025
984
  }
1026
985
  /**
1027
986
  *
@@ -1037,23 +996,10 @@ export interface ListCollectionsDto {
1037
996
  'data': Array<CollectionEntity>;
1038
997
  /**
1039
998
  *
1040
- * @type {ListCollectionsDtoPageInfo}
999
+ * @type {ListAccountsDtoPageInfo}
1041
1000
  * @memberof ListCollectionsDto
1042
1001
  */
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;
1002
+ 'pageInfo': ListAccountsDtoPageInfo;
1057
1003
  }
1058
1004
  /**
1059
1005
  *
@@ -1069,10 +1015,10 @@ export interface ListOperationsDto {
1069
1015
  'data': Array<OperationEntity>;
1070
1016
  /**
1071
1017
  *
1072
- * @type {ListCollectionsDtoPageInfo}
1018
+ * @type {ListAccountsDtoPageInfo}
1073
1019
  * @memberof ListOperationsDto
1074
1020
  */
1075
- 'pageInfo': ListCollectionsDtoPageInfo;
1021
+ 'pageInfo': ListAccountsDtoPageInfo;
1076
1022
  }
1077
1023
  /**
1078
1024
  *
@@ -1088,10 +1034,10 @@ export interface ListPipelinesDto {
1088
1034
  'data': Array<PipelineEntity>;
1089
1035
  /**
1090
1036
  *
1091
- * @type {ListCollectionsDtoPageInfo}
1037
+ * @type {ListAccountsDtoPageInfo}
1092
1038
  * @memberof ListPipelinesDto
1093
1039
  */
1094
- 'pageInfo': ListCollectionsDtoPageInfo;
1040
+ 'pageInfo': ListAccountsDtoPageInfo;
1095
1041
  }
1096
1042
  /**
1097
1043
  *
@@ -1107,10 +1053,10 @@ export interface ListStacksDto {
1107
1053
  'data': Array<StackEntity>;
1108
1054
  /**
1109
1055
  *
1110
- * @type {ListCollectionsDtoPageInfo}
1056
+ * @type {ListAccountsDtoPageInfo}
1111
1057
  * @memberof ListStacksDto
1112
1058
  */
1113
- 'pageInfo': ListCollectionsDtoPageInfo;
1059
+ 'pageInfo': ListAccountsDtoPageInfo;
1114
1060
  }
1115
1061
  /**
1116
1062
  *
@@ -1144,6 +1090,92 @@ export declare const ListStacksParamsDtoOrderByEnum: {
1144
1090
  readonly UpdatedAtDesc: "updatedAt_DESC";
1145
1091
  };
1146
1092
  export type ListStacksParamsDtoOrderByEnum = typeof ListStacksParamsDtoOrderByEnum[keyof typeof ListStacksParamsDtoOrderByEnum];
1093
+ /**
1094
+ *
1095
+ * @export
1096
+ * @interface NaomiHauteV1ControllerInput
1097
+ */
1098
+ export interface NaomiHauteV1ControllerInput {
1099
+ /**
1100
+ *
1101
+ * @type {NaomiHauteV1Input}
1102
+ * @memberof NaomiHauteV1ControllerInput
1103
+ */
1104
+ 'input': NaomiHauteV1Input;
1105
+ /**
1106
+ *
1107
+ * @type {object}
1108
+ * @memberof NaomiHauteV1ControllerInput
1109
+ */
1110
+ 'metadata'?: object;
1111
+ }
1112
+ /**
1113
+ *
1114
+ * @export
1115
+ * @interface NaomiHauteV1Input
1116
+ */
1117
+ export interface NaomiHauteV1Input {
1118
+ /**
1119
+ *
1120
+ * @type {string}
1121
+ * @memberof NaomiHauteV1Input
1122
+ */
1123
+ 'prompt': string;
1124
+ /**
1125
+ *
1126
+ * @type {string}
1127
+ * @memberof NaomiHauteV1Input
1128
+ */
1129
+ 'category': string;
1130
+ /**
1131
+ *
1132
+ * @type {string}
1133
+ * @memberof NaomiHauteV1Input
1134
+ */
1135
+ 'garmentImageId': string;
1136
+ /**
1137
+ *
1138
+ * @type {string}
1139
+ * @memberof NaomiHauteV1Input
1140
+ */
1141
+ 'poseId': string;
1142
+ /**
1143
+ *
1144
+ * @type {number}
1145
+ * @memberof NaomiHauteV1Input
1146
+ */
1147
+ 'seed': number;
1148
+ /**
1149
+ *
1150
+ * @type {number}
1151
+ * @memberof NaomiHauteV1Input
1152
+ */
1153
+ 'width': number;
1154
+ /**
1155
+ *
1156
+ * @type {number}
1157
+ * @memberof NaomiHauteV1Input
1158
+ */
1159
+ 'height': number;
1160
+ /**
1161
+ *
1162
+ * @type {number}
1163
+ * @memberof NaomiHauteV1Input
1164
+ */
1165
+ 'textGuidanceScale'?: number;
1166
+ /**
1167
+ *
1168
+ * @type {number}
1169
+ * @memberof NaomiHauteV1Input
1170
+ */
1171
+ 'imageGuidanceScale'?: number;
1172
+ /**
1173
+ *
1174
+ * @type {number}
1175
+ * @memberof NaomiHauteV1Input
1176
+ */
1177
+ 'numInferenceSteps'?: number;
1178
+ }
1147
1179
  /**
1148
1180
  *
1149
1181
  * @export
@@ -1401,13 +1433,13 @@ export interface PoseEntity {
1401
1433
  * @type {ImageEntity}
1402
1434
  * @memberof PoseEntity
1403
1435
  */
1404
- 'previewImage': ImageEntity;
1436
+ 'previewImage'?: ImageEntity;
1405
1437
  /**
1406
1438
  *
1407
1439
  * @type {string}
1408
1440
  * @memberof PoseEntity
1409
1441
  */
1410
- 'previewImageId': string;
1442
+ 'previewImageId'?: string;
1411
1443
  }
1412
1444
  export declare const PoseEntityKindEnum: {
1413
1445
  readonly Collection: "collection";
@@ -1612,6 +1644,19 @@ export interface SegmentAnythingMaskV1Input {
1612
1644
  */
1613
1645
  'box': Array<number>;
1614
1646
  }
1647
+ /**
1648
+ *
1649
+ * @export
1650
+ * @interface SetPosePreviewControllerParamsDto
1651
+ */
1652
+ export interface SetPosePreviewControllerParamsDto {
1653
+ /**
1654
+ *
1655
+ * @type {string}
1656
+ * @memberof SetPosePreviewControllerParamsDto
1657
+ */
1658
+ 'previewImageId': string;
1659
+ }
1615
1660
  /**
1616
1661
  *
1617
1662
  * @export
@@ -1831,6 +1876,14 @@ export declare const AccessApiAxiosParamCreator: (configuration?: Configuration)
1831
1876
  * @throws {RequiredError}
1832
1877
  */
1833
1878
  accessControllerAccountGrantAccessV1: (id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1879
+ /**
1880
+ *
1881
+ * @param {string} id
1882
+ * @param {AttachAccessControllerParamsDto} attachAccessControllerParamsDto
1883
+ * @param {*} [options] Override http request option.
1884
+ * @throws {RequiredError}
1885
+ */
1886
+ accessControllerAttachAccessV1: (id: string, attachAccessControllerParamsDto: AttachAccessControllerParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1834
1887
  /**
1835
1888
  *
1836
1889
  * @param {string} id
@@ -1853,6 +1906,14 @@ export declare const AccessApiFp: (configuration?: Configuration) => {
1853
1906
  * @throws {RequiredError}
1854
1907
  */
1855
1908
  accessControllerAccountGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1909
+ /**
1910
+ *
1911
+ * @param {string} id
1912
+ * @param {AttachAccessControllerParamsDto} attachAccessControllerParamsDto
1913
+ * @param {*} [options] Override http request option.
1914
+ * @throws {RequiredError}
1915
+ */
1916
+ accessControllerAttachAccessV1(id: string, attachAccessControllerParamsDto: AttachAccessControllerParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
1856
1917
  /**
1857
1918
  *
1858
1919
  * @param {string} id
@@ -1875,6 +1936,14 @@ export declare const AccessApiFactory: (configuration?: Configuration, basePath?
1875
1936
  * @throws {RequiredError}
1876
1937
  */
1877
1938
  accessControllerAccountGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1939
+ /**
1940
+ *
1941
+ * @param {string} id
1942
+ * @param {AttachAccessControllerParamsDto} attachAccessControllerParamsDto
1943
+ * @param {*} [options] Override http request option.
1944
+ * @throws {RequiredError}
1945
+ */
1946
+ accessControllerAttachAccessV1(id: string, attachAccessControllerParamsDto: AttachAccessControllerParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1878
1947
  /**
1879
1948
  *
1880
1949
  * @param {string} id
@@ -1900,6 +1969,15 @@ export declare class AccessApi extends BaseAPI {
1900
1969
  * @memberof AccessApi
1901
1970
  */
1902
1971
  accessControllerAccountGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1972
+ /**
1973
+ *
1974
+ * @param {string} id
1975
+ * @param {AttachAccessControllerParamsDto} attachAccessControllerParamsDto
1976
+ * @param {*} [options] Override http request option.
1977
+ * @throws {RequiredError}
1978
+ * @memberof AccessApi
1979
+ */
1980
+ accessControllerAttachAccessV1(id: string, attachAccessControllerParamsDto: AttachAccessControllerParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1903
1981
  /**
1904
1982
  *
1905
1983
  * @param {string} id
@@ -1942,6 +2020,15 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
1942
2020
  * @throws {RequiredError}
1943
2021
  */
1944
2022
  accountsControllerGetSelfV1: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2023
+ /**
2024
+ *
2025
+ * @param {AccountsControllerListAccointsV1OrderByEnum} [orderBy]
2026
+ * @param {number} [limit]
2027
+ * @param {string} [cursor]
2028
+ * @param {*} [options] Override http request option.
2029
+ * @throws {RequiredError}
2030
+ */
2031
+ accountsControllerListAccointsV1: (orderBy?: AccountsControllerListAccointsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1945
2032
  };
1946
2033
  /**
1947
2034
  * AccountsApi - functional programming interface
@@ -1975,6 +2062,15 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
1975
2062
  * @throws {RequiredError}
1976
2063
  */
1977
2064
  accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountEntity>>;
2065
+ /**
2066
+ *
2067
+ * @param {AccountsControllerListAccointsV1OrderByEnum} [orderBy]
2068
+ * @param {number} [limit]
2069
+ * @param {string} [cursor]
2070
+ * @param {*} [options] Override http request option.
2071
+ * @throws {RequiredError}
2072
+ */
2073
+ accountsControllerListAccointsV1(orderBy?: AccountsControllerListAccointsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListAccountsDto>>;
1978
2074
  };
1979
2075
  /**
1980
2076
  * AccountsApi - factory interface
@@ -2008,6 +2104,15 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
2008
2104
  * @throws {RequiredError}
2009
2105
  */
2010
2106
  accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): AxiosPromise<AccountEntity>;
2107
+ /**
2108
+ *
2109
+ * @param {AccountsControllerListAccointsV1OrderByEnum} [orderBy]
2110
+ * @param {number} [limit]
2111
+ * @param {string} [cursor]
2112
+ * @param {*} [options] Override http request option.
2113
+ * @throws {RequiredError}
2114
+ */
2115
+ accountsControllerListAccointsV1(orderBy?: AccountsControllerListAccointsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListAccountsDto>;
2011
2116
  };
2012
2117
  /**
2013
2118
  * AccountsApi - object-oriented interface
@@ -2047,7 +2152,25 @@ export declare class AccountsApi extends BaseAPI {
2047
2152
  * @memberof AccountsApi
2048
2153
  */
2049
2154
  accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountEntity, any>>;
2155
+ /**
2156
+ *
2157
+ * @param {AccountsControllerListAccointsV1OrderByEnum} [orderBy]
2158
+ * @param {number} [limit]
2159
+ * @param {string} [cursor]
2160
+ * @param {*} [options] Override http request option.
2161
+ * @throws {RequiredError}
2162
+ * @memberof AccountsApi
2163
+ */
2164
+ accountsControllerListAccointsV1(orderBy?: AccountsControllerListAccointsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListAccountsDto, any>>;
2050
2165
  }
2166
+ /**
2167
+ * @export
2168
+ */
2169
+ export declare const AccountsControllerListAccointsV1OrderByEnum: {
2170
+ readonly Asc: "createdAt_ASC";
2171
+ readonly Desc: "createdAt_DESC";
2172
+ };
2173
+ export type AccountsControllerListAccointsV1OrderByEnum = typeof AccountsControllerListAccointsV1OrderByEnum[keyof typeof AccountsControllerListAccointsV1OrderByEnum];
2051
2174
  /**
2052
2175
  * BalancesApi - axios parameter creator
2053
2176
  * @export
@@ -2200,7 +2323,7 @@ export declare const CallApiAxiosParamCreator: (configuration?: Configuration) =
2200
2323
  * @param {*} [options] Override http request option.
2201
2324
  * @throws {RequiredError}
2202
2325
  */
2203
- callControllerCallImagesGetUrlsV1: (getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2326
+ callControllerCallImagesGetManyV1: (getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2204
2327
  /**
2205
2328
  *
2206
2329
  * @param {CreateStackParamsDto} createStackParamsDto
@@ -2255,7 +2378,7 @@ export declare const CallApiFp: (configuration?: Configuration) => {
2255
2378
  * @param {*} [options] Override http request option.
2256
2379
  * @throws {RequiredError}
2257
2380
  */
2258
- callControllerCallImagesGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ImageUrlResponseDto>>>;
2381
+ callControllerCallImagesGetManyV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ImageUrlResponseDto>>>;
2259
2382
  /**
2260
2383
  *
2261
2384
  * @param {CreateStackParamsDto} createStackParamsDto
@@ -2310,7 +2433,7 @@ export declare const CallApiFactory: (configuration?: Configuration, basePath?:
2310
2433
  * @param {*} [options] Override http request option.
2311
2434
  * @throws {RequiredError}
2312
2435
  */
2313
- callControllerCallImagesGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<ImageUrlResponseDto>>;
2436
+ callControllerCallImagesGetManyV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<ImageUrlResponseDto>>;
2314
2437
  /**
2315
2438
  *
2316
2439
  * @param {CreateStackParamsDto} createStackParamsDto
@@ -2372,7 +2495,7 @@ export declare class CallApi extends BaseAPI {
2372
2495
  * @throws {RequiredError}
2373
2496
  * @memberof CallApi
2374
2497
  */
2375
- callControllerCallImagesGetUrlsV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageUrlResponseDto[], any>>;
2498
+ callControllerCallImagesGetManyV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageUrlResponseDto[], any>>;
2376
2499
  /**
2377
2500
  *
2378
2501
  * @param {CreateStackParamsDto} createStackParamsDto
@@ -3078,39 +3201,39 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
3078
3201
  operationsControllerRunCutV1V1: (cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3079
3202
  /**
3080
3203
  *
3081
- * @param {GenerateV1ControllerInput} generateV1ControllerInput
3204
+ * @param {GPTV1ControllerInput} gPTV1ControllerInput
3082
3205
  * @param {*} [options] Override http request option.
3083
3206
  * @throws {RequiredError}
3084
3207
  */
3085
- operationsControllerRunGenerateV1V1: (generateV1ControllerInput: GenerateV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3208
+ operationsControllerRunGptV1V1: (gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3086
3209
  /**
3087
3210
  *
3088
- * @param {GenerateV3ControllerInput} generateV3ControllerInput
3211
+ * @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
3089
3212
  * @param {*} [options] Override http request option.
3090
3213
  * @throws {RequiredError}
3091
3214
  */
3092
- operationsControllerRunGenerateV3V1: (generateV3ControllerInput: GenerateV3ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3215
+ operationsControllerRunKateImagineV1V1: (kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3093
3216
  /**
3094
3217
  *
3095
- * @param {GPTV1ControllerInput} gPTV1ControllerInput
3218
+ * @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
3096
3219
  * @param {*} [options] Override http request option.
3097
3220
  * @throws {RequiredError}
3098
3221
  */
3099
- operationsControllerRunGptV1V1: (gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3222
+ operationsControllerRunKateInpaintV1V1: (kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3100
3223
  /**
3101
3224
  *
3102
- * @param {ImagineV1ControllerInput} imagineV1ControllerInput
3225
+ * @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
3103
3226
  * @param {*} [options] Override http request option.
3104
3227
  * @throws {RequiredError}
3105
3228
  */
3106
- operationsControllerRunImagineV1V1: (imagineV1ControllerInput: ImagineV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3229
+ operationsControllerRunLindaHauteV1V1: (lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3107
3230
  /**
3108
3231
  *
3109
- * @param {InpaintV1ControllerInput} inpaintV1ControllerInput
3232
+ * @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
3110
3233
  * @param {*} [options] Override http request option.
3111
3234
  * @throws {RequiredError}
3112
3235
  */
3113
- operationsControllerRunInpaintV1V1: (inpaintV1ControllerInput: InpaintV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3236
+ operationsControllerRunNaomiHauteV1V1: (naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3114
3237
  /**
3115
3238
  *
3116
3239
  * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
@@ -3199,39 +3322,39 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
3199
3322
  operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3200
3323
  /**
3201
3324
  *
3202
- * @param {GenerateV1ControllerInput} generateV1ControllerInput
3325
+ * @param {GPTV1ControllerInput} gPTV1ControllerInput
3203
3326
  * @param {*} [options] Override http request option.
3204
3327
  * @throws {RequiredError}
3205
3328
  */
3206
- operationsControllerRunGenerateV1V1(generateV1ControllerInput: GenerateV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3329
+ operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3207
3330
  /**
3208
3331
  *
3209
- * @param {GenerateV3ControllerInput} generateV3ControllerInput
3332
+ * @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
3210
3333
  * @param {*} [options] Override http request option.
3211
3334
  * @throws {RequiredError}
3212
3335
  */
3213
- operationsControllerRunGenerateV3V1(generateV3ControllerInput: GenerateV3ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3336
+ operationsControllerRunKateImagineV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3214
3337
  /**
3215
3338
  *
3216
- * @param {GPTV1ControllerInput} gPTV1ControllerInput
3339
+ * @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
3217
3340
  * @param {*} [options] Override http request option.
3218
3341
  * @throws {RequiredError}
3219
3342
  */
3220
- operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3343
+ operationsControllerRunKateInpaintV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3221
3344
  /**
3222
3345
  *
3223
- * @param {ImagineV1ControllerInput} imagineV1ControllerInput
3346
+ * @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
3224
3347
  * @param {*} [options] Override http request option.
3225
3348
  * @throws {RequiredError}
3226
3349
  */
3227
- operationsControllerRunImagineV1V1(imagineV1ControllerInput: ImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3350
+ operationsControllerRunLindaHauteV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3228
3351
  /**
3229
3352
  *
3230
- * @param {InpaintV1ControllerInput} inpaintV1ControllerInput
3353
+ * @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
3231
3354
  * @param {*} [options] Override http request option.
3232
3355
  * @throws {RequiredError}
3233
3356
  */
3234
- operationsControllerRunInpaintV1V1(inpaintV1ControllerInput: InpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3357
+ operationsControllerRunNaomiHauteV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
3235
3358
  /**
3236
3359
  *
3237
3360
  * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
@@ -3320,39 +3443,39 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
3320
3443
  operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3321
3444
  /**
3322
3445
  *
3323
- * @param {GenerateV1ControllerInput} generateV1ControllerInput
3446
+ * @param {GPTV1ControllerInput} gPTV1ControllerInput
3324
3447
  * @param {*} [options] Override http request option.
3325
3448
  * @throws {RequiredError}
3326
3449
  */
3327
- operationsControllerRunGenerateV1V1(generateV1ControllerInput: GenerateV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3450
+ operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3328
3451
  /**
3329
3452
  *
3330
- * @param {GenerateV3ControllerInput} generateV3ControllerInput
3453
+ * @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
3331
3454
  * @param {*} [options] Override http request option.
3332
3455
  * @throws {RequiredError}
3333
3456
  */
3334
- operationsControllerRunGenerateV3V1(generateV3ControllerInput: GenerateV3ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3457
+ operationsControllerRunKateImagineV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3335
3458
  /**
3336
3459
  *
3337
- * @param {GPTV1ControllerInput} gPTV1ControllerInput
3460
+ * @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
3338
3461
  * @param {*} [options] Override http request option.
3339
3462
  * @throws {RequiredError}
3340
3463
  */
3341
- operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3464
+ operationsControllerRunKateInpaintV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3342
3465
  /**
3343
3466
  *
3344
- * @param {ImagineV1ControllerInput} imagineV1ControllerInput
3467
+ * @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
3345
3468
  * @param {*} [options] Override http request option.
3346
3469
  * @throws {RequiredError}
3347
3470
  */
3348
- operationsControllerRunImagineV1V1(imagineV1ControllerInput: ImagineV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3471
+ operationsControllerRunLindaHauteV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3349
3472
  /**
3350
3473
  *
3351
- * @param {InpaintV1ControllerInput} inpaintV1ControllerInput
3474
+ * @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
3352
3475
  * @param {*} [options] Override http request option.
3353
3476
  * @throws {RequiredError}
3354
3477
  */
3355
- operationsControllerRunInpaintV1V1(inpaintV1ControllerInput: InpaintV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3478
+ operationsControllerRunNaomiHauteV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
3356
3479
  /**
3357
3480
  *
3358
3481
  * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
@@ -3448,44 +3571,44 @@ export declare class OperationsApi extends BaseAPI {
3448
3571
  operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3449
3572
  /**
3450
3573
  *
3451
- * @param {GenerateV1ControllerInput} generateV1ControllerInput
3574
+ * @param {GPTV1ControllerInput} gPTV1ControllerInput
3452
3575
  * @param {*} [options] Override http request option.
3453
3576
  * @throws {RequiredError}
3454
3577
  * @memberof OperationsApi
3455
3578
  */
3456
- operationsControllerRunGenerateV1V1(generateV1ControllerInput: GenerateV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3579
+ operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3457
3580
  /**
3458
3581
  *
3459
- * @param {GenerateV3ControllerInput} generateV3ControllerInput
3582
+ * @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
3460
3583
  * @param {*} [options] Override http request option.
3461
3584
  * @throws {RequiredError}
3462
3585
  * @memberof OperationsApi
3463
3586
  */
3464
- operationsControllerRunGenerateV3V1(generateV3ControllerInput: GenerateV3ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3587
+ operationsControllerRunKateImagineV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3465
3588
  /**
3466
3589
  *
3467
- * @param {GPTV1ControllerInput} gPTV1ControllerInput
3590
+ * @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
3468
3591
  * @param {*} [options] Override http request option.
3469
3592
  * @throws {RequiredError}
3470
3593
  * @memberof OperationsApi
3471
3594
  */
3472
- operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3595
+ operationsControllerRunKateInpaintV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3473
3596
  /**
3474
3597
  *
3475
- * @param {ImagineV1ControllerInput} imagineV1ControllerInput
3598
+ * @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
3476
3599
  * @param {*} [options] Override http request option.
3477
3600
  * @throws {RequiredError}
3478
3601
  * @memberof OperationsApi
3479
3602
  */
3480
- operationsControllerRunImagineV1V1(imagineV1ControllerInput: ImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3603
+ operationsControllerRunLindaHauteV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3481
3604
  /**
3482
3605
  *
3483
- * @param {InpaintV1ControllerInput} inpaintV1ControllerInput
3606
+ * @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
3484
3607
  * @param {*} [options] Override http request option.
3485
3608
  * @throws {RequiredError}
3486
3609
  * @memberof OperationsApi
3487
3610
  */
3488
- operationsControllerRunInpaintV1V1(inpaintV1ControllerInput: InpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3611
+ operationsControllerRunNaomiHauteV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
3489
3612
  /**
3490
3613
  *
3491
3614
  * @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
@@ -3747,6 +3870,14 @@ export declare const PosesApiAxiosParamCreator: (configuration?: Configuration)
3747
3870
  * @throws {RequiredError}
3748
3871
  */
3749
3872
  posesControllerListPosesV1: (orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3873
+ /**
3874
+ *
3875
+ * @param {string} id
3876
+ * @param {SetPosePreviewControllerParamsDto} setPosePreviewControllerParamsDto
3877
+ * @param {*} [options] Override http request option.
3878
+ * @throws {RequiredError}
3879
+ */
3880
+ posesControllerSetPosePreviewV1: (id: string, setPosePreviewControllerParamsDto: SetPosePreviewControllerParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3750
3881
  };
3751
3882
  /**
3752
3883
  * PosesApi - functional programming interface
@@ -3769,6 +3900,14 @@ export declare const PosesApiFp: (configuration?: Configuration) => {
3769
3900
  * @throws {RequiredError}
3770
3901
  */
3771
3902
  posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPipelinesDto>>;
3903
+ /**
3904
+ *
3905
+ * @param {string} id
3906
+ * @param {SetPosePreviewControllerParamsDto} setPosePreviewControllerParamsDto
3907
+ * @param {*} [options] Override http request option.
3908
+ * @throws {RequiredError}
3909
+ */
3910
+ posesControllerSetPosePreviewV1(id: string, setPosePreviewControllerParamsDto: SetPosePreviewControllerParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3772
3911
  };
3773
3912
  /**
3774
3913
  * PosesApi - factory interface
@@ -3791,6 +3930,14 @@ export declare const PosesApiFactory: (configuration?: Configuration, basePath?:
3791
3930
  * @throws {RequiredError}
3792
3931
  */
3793
3932
  posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListPipelinesDto>;
3933
+ /**
3934
+ *
3935
+ * @param {string} id
3936
+ * @param {SetPosePreviewControllerParamsDto} setPosePreviewControllerParamsDto
3937
+ * @param {*} [options] Override http request option.
3938
+ * @throws {RequiredError}
3939
+ */
3940
+ posesControllerSetPosePreviewV1(id: string, setPosePreviewControllerParamsDto: SetPosePreviewControllerParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<void>;
3794
3941
  };
3795
3942
  /**
3796
3943
  * PosesApi - object-oriented interface
@@ -3817,6 +3964,15 @@ export declare class PosesApi extends BaseAPI {
3817
3964
  * @memberof PosesApi
3818
3965
  */
3819
3966
  posesControllerListPosesV1(orderBy?: PosesControllerListPosesV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPipelinesDto, any>>;
3967
+ /**
3968
+ *
3969
+ * @param {string} id
3970
+ * @param {SetPosePreviewControllerParamsDto} setPosePreviewControllerParamsDto
3971
+ * @param {*} [options] Override http request option.
3972
+ * @throws {RequiredError}
3973
+ * @memberof PosesApi
3974
+ */
3975
+ posesControllerSetPosePreviewV1(id: string, setPosePreviewControllerParamsDto: SetPosePreviewControllerParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3820
3976
  }
3821
3977
  /**
3822
3978
  * @export
@@ -4198,57 +4354,6 @@ export declare class StorageApi extends BaseAPI {
4198
4354
  */
4199
4355
  storageControllerUpdateRecordV1(updateStorageRecordParamsDto: UpdateStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorageEntity, any>>;
4200
4356
  }
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
4357
  /**
4253
4358
  * WebsocketApi - axios parameter creator
4254
4359
  * @export