@hautechai/sdk 0.0.16 → 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.
- package/dist/autogenerated/api.d.ts +592 -376
- package/dist/autogenerated/api.js +502 -194
- package/dist/autogenerated/permissions.d.ts +2 -0
- package/dist/sdk/index.d.ts +41 -15
- package/dist/sdk/operations/index.d.ts +42 -16
- package/dist/sdk/operations/index.js +22 -5
- package/dist/token/permissions.js +2 -2
- package/package.json +1 -1
|
@@ -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
|
-
'garmentImage': string;
|
|
604
|
-
/**
|
|
605
|
-
*
|
|
606
|
-
* @type {string}
|
|
607
|
-
* @memberof GenerateV3Input
|
|
608
|
-
*/
|
|
609
|
-
'poseImage': 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
|
|
@@ -696,6 +531,25 @@ export interface GetUrlsForImagesParamsDto {
|
|
|
696
531
|
*/
|
|
697
532
|
'ids': Array<string>;
|
|
698
533
|
}
|
|
534
|
+
/**
|
|
535
|
+
*
|
|
536
|
+
* @export
|
|
537
|
+
* @interface GrantAccessControllerParams
|
|
538
|
+
*/
|
|
539
|
+
export interface GrantAccessControllerParams {
|
|
540
|
+
/**
|
|
541
|
+
*
|
|
542
|
+
* @type {string}
|
|
543
|
+
* @memberof GrantAccessControllerParams
|
|
544
|
+
*/
|
|
545
|
+
'resourceId': string;
|
|
546
|
+
/**
|
|
547
|
+
*
|
|
548
|
+
* @type {string}
|
|
549
|
+
* @memberof GrantAccessControllerParams
|
|
550
|
+
*/
|
|
551
|
+
'access': string;
|
|
552
|
+
}
|
|
699
553
|
/**
|
|
700
554
|
*
|
|
701
555
|
* @export
|
|
@@ -833,48 +687,61 @@ export interface ImageUrlResponseDto {
|
|
|
833
687
|
/**
|
|
834
688
|
*
|
|
835
689
|
* @export
|
|
836
|
-
* @interface
|
|
690
|
+
* @interface InitializeImageUploadResultDto
|
|
837
691
|
*/
|
|
838
|
-
export interface
|
|
692
|
+
export interface InitializeImageUploadResultDto {
|
|
839
693
|
/**
|
|
840
694
|
*
|
|
841
|
-
* @type {
|
|
842
|
-
* @memberof
|
|
695
|
+
* @type {string}
|
|
696
|
+
* @memberof InitializeImageUploadResultDto
|
|
843
697
|
*/
|
|
844
|
-
'
|
|
698
|
+
'uploadUrl': string;
|
|
699
|
+
}
|
|
700
|
+
/**
|
|
701
|
+
*
|
|
702
|
+
* @export
|
|
703
|
+
* @interface KateImagineV1ControllerInput
|
|
704
|
+
*/
|
|
705
|
+
export interface KateImagineV1ControllerInput {
|
|
706
|
+
/**
|
|
707
|
+
*
|
|
708
|
+
* @type {KateImagineV1Input}
|
|
709
|
+
* @memberof KateImagineV1ControllerInput
|
|
710
|
+
*/
|
|
711
|
+
'input': KateImagineV1Input;
|
|
845
712
|
/**
|
|
846
713
|
*
|
|
847
714
|
* @type {object}
|
|
848
|
-
* @memberof
|
|
715
|
+
* @memberof KateImagineV1ControllerInput
|
|
849
716
|
*/
|
|
850
717
|
'metadata'?: object;
|
|
851
718
|
}
|
|
852
719
|
/**
|
|
853
720
|
*
|
|
854
721
|
* @export
|
|
855
|
-
* @interface
|
|
722
|
+
* @interface KateImagineV1Input
|
|
856
723
|
*/
|
|
857
|
-
export interface
|
|
724
|
+
export interface KateImagineV1Input {
|
|
858
725
|
/**
|
|
859
726
|
*
|
|
860
727
|
* @type {string}
|
|
861
|
-
* @memberof
|
|
728
|
+
* @memberof KateImagineV1Input
|
|
862
729
|
*/
|
|
863
|
-
'aspectRatio':
|
|
730
|
+
'aspectRatio': KateImagineV1InputAspectRatioEnum;
|
|
864
731
|
/**
|
|
865
732
|
*
|
|
866
733
|
* @type {string}
|
|
867
|
-
* @memberof
|
|
734
|
+
* @memberof KateImagineV1Input
|
|
868
735
|
*/
|
|
869
736
|
'seed': string;
|
|
870
737
|
/**
|
|
871
738
|
*
|
|
872
739
|
* @type {string}
|
|
873
|
-
* @memberof
|
|
740
|
+
* @memberof KateImagineV1Input
|
|
874
741
|
*/
|
|
875
742
|
'prompt': string;
|
|
876
743
|
}
|
|
877
|
-
export declare const
|
|
744
|
+
export declare const KateImagineV1InputAspectRatioEnum: {
|
|
878
745
|
readonly _11: "1:1";
|
|
879
746
|
readonly _97: "9:7";
|
|
880
747
|
readonly _79: "7:9";
|
|
@@ -885,105 +752,216 @@ export declare const ImagineV1InputAspectRatioEnum: {
|
|
|
885
752
|
readonly _125: "12:5";
|
|
886
753
|
readonly _512: "5:12";
|
|
887
754
|
};
|
|
888
|
-
export type
|
|
755
|
+
export type KateImagineV1InputAspectRatioEnum = typeof KateImagineV1InputAspectRatioEnum[keyof typeof KateImagineV1InputAspectRatioEnum];
|
|
889
756
|
/**
|
|
890
757
|
*
|
|
891
758
|
* @export
|
|
892
|
-
* @interface
|
|
759
|
+
* @interface KateInpaintV1ControllerInput
|
|
893
760
|
*/
|
|
894
|
-
export interface
|
|
761
|
+
export interface KateInpaintV1ControllerInput {
|
|
895
762
|
/**
|
|
896
763
|
*
|
|
897
|
-
* @type {
|
|
898
|
-
* @memberof
|
|
764
|
+
* @type {KateInpaintV1Input}
|
|
765
|
+
* @memberof KateInpaintV1ControllerInput
|
|
899
766
|
*/
|
|
900
|
-
'
|
|
901
|
-
}
|
|
902
|
-
/**
|
|
903
|
-
*
|
|
904
|
-
* @export
|
|
905
|
-
* @interface InpaintV1ControllerInput
|
|
906
|
-
*/
|
|
907
|
-
export interface InpaintV1ControllerInput {
|
|
908
|
-
/**
|
|
909
|
-
*
|
|
910
|
-
* @type {InpaintV1Input}
|
|
911
|
-
* @memberof InpaintV1ControllerInput
|
|
912
|
-
*/
|
|
913
|
-
'input': InpaintV1Input;
|
|
767
|
+
'input': KateInpaintV1Input;
|
|
914
768
|
/**
|
|
915
769
|
*
|
|
916
770
|
* @type {object}
|
|
917
|
-
* @memberof
|
|
771
|
+
* @memberof KateInpaintV1ControllerInput
|
|
918
772
|
*/
|
|
919
773
|
'metadata'?: object;
|
|
920
774
|
}
|
|
921
775
|
/**
|
|
922
776
|
*
|
|
923
777
|
* @export
|
|
924
|
-
* @interface
|
|
778
|
+
* @interface KateInpaintV1Input
|
|
925
779
|
*/
|
|
926
|
-
export interface
|
|
780
|
+
export interface KateInpaintV1Input {
|
|
927
781
|
/**
|
|
928
782
|
*
|
|
929
783
|
* @type {string}
|
|
930
|
-
* @memberof
|
|
784
|
+
* @memberof KateInpaintV1Input
|
|
931
785
|
*/
|
|
932
786
|
'image': string;
|
|
933
787
|
/**
|
|
934
788
|
*
|
|
935
789
|
* @type {string}
|
|
936
|
-
* @memberof
|
|
790
|
+
* @memberof KateInpaintV1Input
|
|
937
791
|
*/
|
|
938
792
|
'mask': string;
|
|
939
793
|
/**
|
|
940
794
|
*
|
|
941
795
|
* @type {number}
|
|
942
|
-
* @memberof
|
|
796
|
+
* @memberof KateInpaintV1Input
|
|
943
797
|
*/
|
|
944
798
|
'maskSpread'?: number;
|
|
945
799
|
/**
|
|
946
800
|
*
|
|
947
801
|
* @type {string}
|
|
948
|
-
* @memberof
|
|
802
|
+
* @memberof KateInpaintV1Input
|
|
949
803
|
*/
|
|
950
804
|
'prompt': string;
|
|
951
805
|
/**
|
|
952
806
|
*
|
|
953
807
|
* @type {number}
|
|
954
|
-
* @memberof
|
|
808
|
+
* @memberof KateInpaintV1Input
|
|
955
809
|
*/
|
|
956
810
|
'seed': number;
|
|
957
811
|
/**
|
|
958
812
|
*
|
|
959
813
|
* @type {number}
|
|
960
|
-
* @memberof
|
|
814
|
+
* @memberof KateInpaintV1Input
|
|
961
815
|
*/
|
|
962
816
|
'strength': number;
|
|
963
817
|
/**
|
|
964
818
|
*
|
|
965
819
|
* @type {number}
|
|
966
|
-
* @memberof
|
|
820
|
+
* @memberof KateInpaintV1Input
|
|
967
821
|
*/
|
|
968
822
|
'height': number;
|
|
969
823
|
/**
|
|
970
824
|
*
|
|
971
825
|
* @type {number}
|
|
972
|
-
* @memberof
|
|
826
|
+
* @memberof KateInpaintV1Input
|
|
973
827
|
*/
|
|
974
828
|
'width': number;
|
|
975
829
|
/**
|
|
976
830
|
*
|
|
977
831
|
* @type {number}
|
|
978
|
-
* @memberof
|
|
832
|
+
* @memberof KateInpaintV1Input
|
|
979
833
|
*/
|
|
980
834
|
'numInferenceSteps'?: number;
|
|
981
835
|
/**
|
|
982
836
|
*
|
|
983
837
|
* @type {number}
|
|
984
|
-
* @memberof
|
|
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
|
|
985
913
|
*/
|
|
986
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;
|
|
987
965
|
}
|
|
988
966
|
/**
|
|
989
967
|
*
|
|
@@ -999,10 +977,10 @@ export interface ListCollectionItemsDto {
|
|
|
999
977
|
'data': Array<ResourceEntity>;
|
|
1000
978
|
/**
|
|
1001
979
|
*
|
|
1002
|
-
* @type {
|
|
980
|
+
* @type {ListAccountsDtoPageInfo}
|
|
1003
981
|
* @memberof ListCollectionItemsDto
|
|
1004
982
|
*/
|
|
1005
|
-
'pageInfo':
|
|
983
|
+
'pageInfo': ListAccountsDtoPageInfo;
|
|
1006
984
|
}
|
|
1007
985
|
/**
|
|
1008
986
|
*
|
|
@@ -1018,23 +996,10 @@ export interface ListCollectionsDto {
|
|
|
1018
996
|
'data': Array<CollectionEntity>;
|
|
1019
997
|
/**
|
|
1020
998
|
*
|
|
1021
|
-
* @type {
|
|
999
|
+
* @type {ListAccountsDtoPageInfo}
|
|
1022
1000
|
* @memberof ListCollectionsDto
|
|
1023
1001
|
*/
|
|
1024
|
-
'pageInfo':
|
|
1025
|
-
}
|
|
1026
|
-
/**
|
|
1027
|
-
*
|
|
1028
|
-
* @export
|
|
1029
|
-
* @interface ListCollectionsDtoPageInfo
|
|
1030
|
-
*/
|
|
1031
|
-
export interface ListCollectionsDtoPageInfo {
|
|
1032
|
-
/**
|
|
1033
|
-
*
|
|
1034
|
-
* @type {string}
|
|
1035
|
-
* @memberof ListCollectionsDtoPageInfo
|
|
1036
|
-
*/
|
|
1037
|
-
'nextCursor': string;
|
|
1002
|
+
'pageInfo': ListAccountsDtoPageInfo;
|
|
1038
1003
|
}
|
|
1039
1004
|
/**
|
|
1040
1005
|
*
|
|
@@ -1050,10 +1015,10 @@ export interface ListOperationsDto {
|
|
|
1050
1015
|
'data': Array<OperationEntity>;
|
|
1051
1016
|
/**
|
|
1052
1017
|
*
|
|
1053
|
-
* @type {
|
|
1018
|
+
* @type {ListAccountsDtoPageInfo}
|
|
1054
1019
|
* @memberof ListOperationsDto
|
|
1055
1020
|
*/
|
|
1056
|
-
'pageInfo':
|
|
1021
|
+
'pageInfo': ListAccountsDtoPageInfo;
|
|
1057
1022
|
}
|
|
1058
1023
|
/**
|
|
1059
1024
|
*
|
|
@@ -1069,62 +1034,148 @@ export interface ListPipelinesDto {
|
|
|
1069
1034
|
'data': Array<PipelineEntity>;
|
|
1070
1035
|
/**
|
|
1071
1036
|
*
|
|
1072
|
-
* @type {
|
|
1037
|
+
* @type {ListAccountsDtoPageInfo}
|
|
1073
1038
|
* @memberof ListPipelinesDto
|
|
1074
1039
|
*/
|
|
1075
|
-
'pageInfo':
|
|
1076
|
-
}
|
|
1077
|
-
/**
|
|
1078
|
-
*
|
|
1079
|
-
* @export
|
|
1080
|
-
* @interface ListStacksDto
|
|
1081
|
-
*/
|
|
1082
|
-
export interface ListStacksDto {
|
|
1040
|
+
'pageInfo': ListAccountsDtoPageInfo;
|
|
1041
|
+
}
|
|
1042
|
+
/**
|
|
1043
|
+
*
|
|
1044
|
+
* @export
|
|
1045
|
+
* @interface ListStacksDto
|
|
1046
|
+
*/
|
|
1047
|
+
export interface ListStacksDto {
|
|
1048
|
+
/**
|
|
1049
|
+
*
|
|
1050
|
+
* @type {Array<StackEntity>}
|
|
1051
|
+
* @memberof ListStacksDto
|
|
1052
|
+
*/
|
|
1053
|
+
'data': Array<StackEntity>;
|
|
1054
|
+
/**
|
|
1055
|
+
*
|
|
1056
|
+
* @type {ListAccountsDtoPageInfo}
|
|
1057
|
+
* @memberof ListStacksDto
|
|
1058
|
+
*/
|
|
1059
|
+
'pageInfo': ListAccountsDtoPageInfo;
|
|
1060
|
+
}
|
|
1061
|
+
/**
|
|
1062
|
+
*
|
|
1063
|
+
* @export
|
|
1064
|
+
* @interface ListStacksParamsDto
|
|
1065
|
+
*/
|
|
1066
|
+
export interface ListStacksParamsDto {
|
|
1067
|
+
/**
|
|
1068
|
+
*
|
|
1069
|
+
* @type {string}
|
|
1070
|
+
* @memberof ListStacksParamsDto
|
|
1071
|
+
*/
|
|
1072
|
+
'orderBy'?: ListStacksParamsDtoOrderByEnum;
|
|
1073
|
+
/**
|
|
1074
|
+
*
|
|
1075
|
+
* @type {number}
|
|
1076
|
+
* @memberof ListStacksParamsDto
|
|
1077
|
+
*/
|
|
1078
|
+
'limit'?: number;
|
|
1079
|
+
/**
|
|
1080
|
+
*
|
|
1081
|
+
* @type {string}
|
|
1082
|
+
* @memberof ListStacksParamsDto
|
|
1083
|
+
*/
|
|
1084
|
+
'cursor'?: string;
|
|
1085
|
+
}
|
|
1086
|
+
export declare const ListStacksParamsDtoOrderByEnum: {
|
|
1087
|
+
readonly CreatedAtAsc: "createdAt_ASC";
|
|
1088
|
+
readonly CreatedAtDesc: "createdAt_DESC";
|
|
1089
|
+
readonly UpdatedAtAsc: "updatedAt_ASC";
|
|
1090
|
+
readonly UpdatedAtDesc: "updatedAt_DESC";
|
|
1091
|
+
};
|
|
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;
|
|
1083
1148
|
/**
|
|
1084
1149
|
*
|
|
1085
|
-
* @type {
|
|
1086
|
-
* @memberof
|
|
1150
|
+
* @type {number}
|
|
1151
|
+
* @memberof NaomiHauteV1Input
|
|
1087
1152
|
*/
|
|
1088
|
-
'
|
|
1153
|
+
'width': number;
|
|
1089
1154
|
/**
|
|
1090
1155
|
*
|
|
1091
|
-
* @type {
|
|
1092
|
-
* @memberof
|
|
1156
|
+
* @type {number}
|
|
1157
|
+
* @memberof NaomiHauteV1Input
|
|
1093
1158
|
*/
|
|
1094
|
-
'
|
|
1095
|
-
}
|
|
1096
|
-
/**
|
|
1097
|
-
*
|
|
1098
|
-
* @export
|
|
1099
|
-
* @interface ListStacksParamsDto
|
|
1100
|
-
*/
|
|
1101
|
-
export interface ListStacksParamsDto {
|
|
1159
|
+
'height': number;
|
|
1102
1160
|
/**
|
|
1103
1161
|
*
|
|
1104
|
-
* @type {
|
|
1105
|
-
* @memberof
|
|
1162
|
+
* @type {number}
|
|
1163
|
+
* @memberof NaomiHauteV1Input
|
|
1106
1164
|
*/
|
|
1107
|
-
'
|
|
1165
|
+
'textGuidanceScale'?: number;
|
|
1108
1166
|
/**
|
|
1109
1167
|
*
|
|
1110
1168
|
* @type {number}
|
|
1111
|
-
* @memberof
|
|
1169
|
+
* @memberof NaomiHauteV1Input
|
|
1112
1170
|
*/
|
|
1113
|
-
'
|
|
1171
|
+
'imageGuidanceScale'?: number;
|
|
1114
1172
|
/**
|
|
1115
1173
|
*
|
|
1116
|
-
* @type {
|
|
1117
|
-
* @memberof
|
|
1174
|
+
* @type {number}
|
|
1175
|
+
* @memberof NaomiHauteV1Input
|
|
1118
1176
|
*/
|
|
1119
|
-
'
|
|
1177
|
+
'numInferenceSteps'?: number;
|
|
1120
1178
|
}
|
|
1121
|
-
export declare const ListStacksParamsDtoOrderByEnum: {
|
|
1122
|
-
readonly CreatedAtAsc: "createdAt_ASC";
|
|
1123
|
-
readonly CreatedAtDesc: "createdAt_DESC";
|
|
1124
|
-
readonly UpdatedAtAsc: "updatedAt_ASC";
|
|
1125
|
-
readonly UpdatedAtDesc: "updatedAt_DESC";
|
|
1126
|
-
};
|
|
1127
|
-
export type ListStacksParamsDtoOrderByEnum = typeof ListStacksParamsDtoOrderByEnum[keyof typeof ListStacksParamsDtoOrderByEnum];
|
|
1128
1179
|
/**
|
|
1129
1180
|
*
|
|
1130
1181
|
* @export
|
|
@@ -1382,13 +1433,13 @@ export interface PoseEntity {
|
|
|
1382
1433
|
* @type {ImageEntity}
|
|
1383
1434
|
* @memberof PoseEntity
|
|
1384
1435
|
*/
|
|
1385
|
-
'previewImage'
|
|
1436
|
+
'previewImage'?: ImageEntity;
|
|
1386
1437
|
/**
|
|
1387
1438
|
*
|
|
1388
1439
|
* @type {string}
|
|
1389
1440
|
* @memberof PoseEntity
|
|
1390
1441
|
*/
|
|
1391
|
-
'previewImageId'
|
|
1442
|
+
'previewImageId'?: string;
|
|
1392
1443
|
}
|
|
1393
1444
|
export declare const PoseEntityKindEnum: {
|
|
1394
1445
|
readonly Collection: "collection";
|
|
@@ -1593,6 +1644,19 @@ export interface SegmentAnythingMaskV1Input {
|
|
|
1593
1644
|
*/
|
|
1594
1645
|
'box': Array<number>;
|
|
1595
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
|
+
}
|
|
1596
1660
|
/**
|
|
1597
1661
|
*
|
|
1598
1662
|
* @export
|
|
@@ -1799,6 +1863,131 @@ export interface UpscaleV1Input {
|
|
|
1799
1863
|
*/
|
|
1800
1864
|
'imageId': string;
|
|
1801
1865
|
}
|
|
1866
|
+
/**
|
|
1867
|
+
* AccessApi - axios parameter creator
|
|
1868
|
+
* @export
|
|
1869
|
+
*/
|
|
1870
|
+
export declare const AccessApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1871
|
+
/**
|
|
1872
|
+
*
|
|
1873
|
+
* @param {string} id
|
|
1874
|
+
* @param {GrantAccessControllerParams} grantAccessControllerParams
|
|
1875
|
+
* @param {*} [options] Override http request option.
|
|
1876
|
+
* @throws {RequiredError}
|
|
1877
|
+
*/
|
|
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>;
|
|
1887
|
+
/**
|
|
1888
|
+
*
|
|
1889
|
+
* @param {string} id
|
|
1890
|
+
* @param {GrantAccessControllerParams} grantAccessControllerParams
|
|
1891
|
+
* @param {*} [options] Override http request option.
|
|
1892
|
+
* @throws {RequiredError}
|
|
1893
|
+
*/
|
|
1894
|
+
accessControllerGroupGrantAccessV1: (id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1895
|
+
};
|
|
1896
|
+
/**
|
|
1897
|
+
* AccessApi - functional programming interface
|
|
1898
|
+
* @export
|
|
1899
|
+
*/
|
|
1900
|
+
export declare const AccessApiFp: (configuration?: Configuration) => {
|
|
1901
|
+
/**
|
|
1902
|
+
*
|
|
1903
|
+
* @param {string} id
|
|
1904
|
+
* @param {GrantAccessControllerParams} grantAccessControllerParams
|
|
1905
|
+
* @param {*} [options] Override http request option.
|
|
1906
|
+
* @throws {RequiredError}
|
|
1907
|
+
*/
|
|
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>>;
|
|
1917
|
+
/**
|
|
1918
|
+
*
|
|
1919
|
+
* @param {string} id
|
|
1920
|
+
* @param {GrantAccessControllerParams} grantAccessControllerParams
|
|
1921
|
+
* @param {*} [options] Override http request option.
|
|
1922
|
+
* @throws {RequiredError}
|
|
1923
|
+
*/
|
|
1924
|
+
accessControllerGroupGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1925
|
+
};
|
|
1926
|
+
/**
|
|
1927
|
+
* AccessApi - factory interface
|
|
1928
|
+
* @export
|
|
1929
|
+
*/
|
|
1930
|
+
export declare const AccessApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1931
|
+
/**
|
|
1932
|
+
*
|
|
1933
|
+
* @param {string} id
|
|
1934
|
+
* @param {GrantAccessControllerParams} grantAccessControllerParams
|
|
1935
|
+
* @param {*} [options] Override http request option.
|
|
1936
|
+
* @throws {RequiredError}
|
|
1937
|
+
*/
|
|
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>;
|
|
1947
|
+
/**
|
|
1948
|
+
*
|
|
1949
|
+
* @param {string} id
|
|
1950
|
+
* @param {GrantAccessControllerParams} grantAccessControllerParams
|
|
1951
|
+
* @param {*} [options] Override http request option.
|
|
1952
|
+
* @throws {RequiredError}
|
|
1953
|
+
*/
|
|
1954
|
+
accessControllerGroupGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1955
|
+
};
|
|
1956
|
+
/**
|
|
1957
|
+
* AccessApi - object-oriented interface
|
|
1958
|
+
* @export
|
|
1959
|
+
* @class AccessApi
|
|
1960
|
+
* @extends {BaseAPI}
|
|
1961
|
+
*/
|
|
1962
|
+
export declare class AccessApi extends BaseAPI {
|
|
1963
|
+
/**
|
|
1964
|
+
*
|
|
1965
|
+
* @param {string} id
|
|
1966
|
+
* @param {GrantAccessControllerParams} grantAccessControllerParams
|
|
1967
|
+
* @param {*} [options] Override http request option.
|
|
1968
|
+
* @throws {RequiredError}
|
|
1969
|
+
* @memberof AccessApi
|
|
1970
|
+
*/
|
|
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>>;
|
|
1981
|
+
/**
|
|
1982
|
+
*
|
|
1983
|
+
* @param {string} id
|
|
1984
|
+
* @param {GrantAccessControllerParams} grantAccessControllerParams
|
|
1985
|
+
* @param {*} [options] Override http request option.
|
|
1986
|
+
* @throws {RequiredError}
|
|
1987
|
+
* @memberof AccessApi
|
|
1988
|
+
*/
|
|
1989
|
+
accessControllerGroupGrantAccessV1(id: string, grantAccessControllerParams: GrantAccessControllerParams, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
1990
|
+
}
|
|
1802
1991
|
/**
|
|
1803
1992
|
* AccountsApi - axios parameter creator
|
|
1804
1993
|
* @export
|
|
@@ -1831,6 +2020,15 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
1831
2020
|
* @throws {RequiredError}
|
|
1832
2021
|
*/
|
|
1833
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>;
|
|
1834
2032
|
};
|
|
1835
2033
|
/**
|
|
1836
2034
|
* AccountsApi - functional programming interface
|
|
@@ -1864,6 +2062,15 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
1864
2062
|
* @throws {RequiredError}
|
|
1865
2063
|
*/
|
|
1866
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>>;
|
|
1867
2074
|
};
|
|
1868
2075
|
/**
|
|
1869
2076
|
* AccountsApi - factory interface
|
|
@@ -1897,6 +2104,15 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
1897
2104
|
* @throws {RequiredError}
|
|
1898
2105
|
*/
|
|
1899
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>;
|
|
1900
2116
|
};
|
|
1901
2117
|
/**
|
|
1902
2118
|
* AccountsApi - object-oriented interface
|
|
@@ -1936,7 +2152,25 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
1936
2152
|
* @memberof AccountsApi
|
|
1937
2153
|
*/
|
|
1938
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>>;
|
|
1939
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];
|
|
1940
2174
|
/**
|
|
1941
2175
|
* BalancesApi - axios parameter creator
|
|
1942
2176
|
* @export
|
|
@@ -2089,7 +2323,7 @@ export declare const CallApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
2089
2323
|
* @param {*} [options] Override http request option.
|
|
2090
2324
|
* @throws {RequiredError}
|
|
2091
2325
|
*/
|
|
2092
|
-
|
|
2326
|
+
callControllerCallImagesGetManyV1: (getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2093
2327
|
/**
|
|
2094
2328
|
*
|
|
2095
2329
|
* @param {CreateStackParamsDto} createStackParamsDto
|
|
@@ -2144,7 +2378,7 @@ export declare const CallApiFp: (configuration?: Configuration) => {
|
|
|
2144
2378
|
* @param {*} [options] Override http request option.
|
|
2145
2379
|
* @throws {RequiredError}
|
|
2146
2380
|
*/
|
|
2147
|
-
|
|
2381
|
+
callControllerCallImagesGetManyV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ImageUrlResponseDto>>>;
|
|
2148
2382
|
/**
|
|
2149
2383
|
*
|
|
2150
2384
|
* @param {CreateStackParamsDto} createStackParamsDto
|
|
@@ -2199,7 +2433,7 @@ export declare const CallApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2199
2433
|
* @param {*} [options] Override http request option.
|
|
2200
2434
|
* @throws {RequiredError}
|
|
2201
2435
|
*/
|
|
2202
|
-
|
|
2436
|
+
callControllerCallImagesGetManyV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<Array<ImageUrlResponseDto>>;
|
|
2203
2437
|
/**
|
|
2204
2438
|
*
|
|
2205
2439
|
* @param {CreateStackParamsDto} createStackParamsDto
|
|
@@ -2261,7 +2495,7 @@ export declare class CallApi extends BaseAPI {
|
|
|
2261
2495
|
* @throws {RequiredError}
|
|
2262
2496
|
* @memberof CallApi
|
|
2263
2497
|
*/
|
|
2264
|
-
|
|
2498
|
+
callControllerCallImagesGetManyV1(getUrlsForImagesParamsDto: GetUrlsForImagesParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImageUrlResponseDto[], any>>;
|
|
2265
2499
|
/**
|
|
2266
2500
|
*
|
|
2267
2501
|
* @param {CreateStackParamsDto} createStackParamsDto
|
|
@@ -2967,39 +3201,39 @@ export declare const OperationsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
2967
3201
|
operationsControllerRunCutV1V1: (cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2968
3202
|
/**
|
|
2969
3203
|
*
|
|
2970
|
-
* @param {
|
|
3204
|
+
* @param {GPTV1ControllerInput} gPTV1ControllerInput
|
|
2971
3205
|
* @param {*} [options] Override http request option.
|
|
2972
3206
|
* @throws {RequiredError}
|
|
2973
3207
|
*/
|
|
2974
|
-
|
|
3208
|
+
operationsControllerRunGptV1V1: (gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2975
3209
|
/**
|
|
2976
3210
|
*
|
|
2977
|
-
* @param {
|
|
3211
|
+
* @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
|
|
2978
3212
|
* @param {*} [options] Override http request option.
|
|
2979
3213
|
* @throws {RequiredError}
|
|
2980
3214
|
*/
|
|
2981
|
-
|
|
3215
|
+
operationsControllerRunKateImagineV1V1: (kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2982
3216
|
/**
|
|
2983
3217
|
*
|
|
2984
|
-
* @param {
|
|
3218
|
+
* @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
|
|
2985
3219
|
* @param {*} [options] Override http request option.
|
|
2986
3220
|
* @throws {RequiredError}
|
|
2987
3221
|
*/
|
|
2988
|
-
|
|
3222
|
+
operationsControllerRunKateInpaintV1V1: (kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2989
3223
|
/**
|
|
2990
3224
|
*
|
|
2991
|
-
* @param {
|
|
3225
|
+
* @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
|
|
2992
3226
|
* @param {*} [options] Override http request option.
|
|
2993
3227
|
* @throws {RequiredError}
|
|
2994
3228
|
*/
|
|
2995
|
-
|
|
3229
|
+
operationsControllerRunLindaHauteV1V1: (lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2996
3230
|
/**
|
|
2997
3231
|
*
|
|
2998
|
-
* @param {
|
|
3232
|
+
* @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
|
|
2999
3233
|
* @param {*} [options] Override http request option.
|
|
3000
3234
|
* @throws {RequiredError}
|
|
3001
3235
|
*/
|
|
3002
|
-
|
|
3236
|
+
operationsControllerRunNaomiHauteV1V1: (naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3003
3237
|
/**
|
|
3004
3238
|
*
|
|
3005
3239
|
* @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
|
|
@@ -3088,39 +3322,39 @@ export declare const OperationsApiFp: (configuration?: Configuration) => {
|
|
|
3088
3322
|
operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
|
|
3089
3323
|
/**
|
|
3090
3324
|
*
|
|
3091
|
-
* @param {
|
|
3325
|
+
* @param {GPTV1ControllerInput} gPTV1ControllerInput
|
|
3092
3326
|
* @param {*} [options] Override http request option.
|
|
3093
3327
|
* @throws {RequiredError}
|
|
3094
3328
|
*/
|
|
3095
|
-
|
|
3329
|
+
operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
|
|
3096
3330
|
/**
|
|
3097
3331
|
*
|
|
3098
|
-
* @param {
|
|
3332
|
+
* @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
|
|
3099
3333
|
* @param {*} [options] Override http request option.
|
|
3100
3334
|
* @throws {RequiredError}
|
|
3101
3335
|
*/
|
|
3102
|
-
|
|
3336
|
+
operationsControllerRunKateImagineV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
|
|
3103
3337
|
/**
|
|
3104
3338
|
*
|
|
3105
|
-
* @param {
|
|
3339
|
+
* @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
|
|
3106
3340
|
* @param {*} [options] Override http request option.
|
|
3107
3341
|
* @throws {RequiredError}
|
|
3108
3342
|
*/
|
|
3109
|
-
|
|
3343
|
+
operationsControllerRunKateInpaintV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
|
|
3110
3344
|
/**
|
|
3111
3345
|
*
|
|
3112
|
-
* @param {
|
|
3346
|
+
* @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
|
|
3113
3347
|
* @param {*} [options] Override http request option.
|
|
3114
3348
|
* @throws {RequiredError}
|
|
3115
3349
|
*/
|
|
3116
|
-
|
|
3350
|
+
operationsControllerRunLindaHauteV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
|
|
3117
3351
|
/**
|
|
3118
3352
|
*
|
|
3119
|
-
* @param {
|
|
3353
|
+
* @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
|
|
3120
3354
|
* @param {*} [options] Override http request option.
|
|
3121
3355
|
* @throws {RequiredError}
|
|
3122
3356
|
*/
|
|
3123
|
-
|
|
3357
|
+
operationsControllerRunNaomiHauteV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OperationEntity>>;
|
|
3124
3358
|
/**
|
|
3125
3359
|
*
|
|
3126
3360
|
* @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
|
|
@@ -3209,39 +3443,39 @@ export declare const OperationsApiFactory: (configuration?: Configuration, baseP
|
|
|
3209
3443
|
operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
|
|
3210
3444
|
/**
|
|
3211
3445
|
*
|
|
3212
|
-
* @param {
|
|
3446
|
+
* @param {GPTV1ControllerInput} gPTV1ControllerInput
|
|
3213
3447
|
* @param {*} [options] Override http request option.
|
|
3214
3448
|
* @throws {RequiredError}
|
|
3215
3449
|
*/
|
|
3216
|
-
|
|
3450
|
+
operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
|
|
3217
3451
|
/**
|
|
3218
3452
|
*
|
|
3219
|
-
* @param {
|
|
3453
|
+
* @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
|
|
3220
3454
|
* @param {*} [options] Override http request option.
|
|
3221
3455
|
* @throws {RequiredError}
|
|
3222
3456
|
*/
|
|
3223
|
-
|
|
3457
|
+
operationsControllerRunKateImagineV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
|
|
3224
3458
|
/**
|
|
3225
3459
|
*
|
|
3226
|
-
* @param {
|
|
3460
|
+
* @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
|
|
3227
3461
|
* @param {*} [options] Override http request option.
|
|
3228
3462
|
* @throws {RequiredError}
|
|
3229
3463
|
*/
|
|
3230
|
-
|
|
3464
|
+
operationsControllerRunKateInpaintV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
|
|
3231
3465
|
/**
|
|
3232
3466
|
*
|
|
3233
|
-
* @param {
|
|
3467
|
+
* @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
|
|
3234
3468
|
* @param {*} [options] Override http request option.
|
|
3235
3469
|
* @throws {RequiredError}
|
|
3236
3470
|
*/
|
|
3237
|
-
|
|
3471
|
+
operationsControllerRunLindaHauteV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
|
|
3238
3472
|
/**
|
|
3239
3473
|
*
|
|
3240
|
-
* @param {
|
|
3474
|
+
* @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
|
|
3241
3475
|
* @param {*} [options] Override http request option.
|
|
3242
3476
|
* @throws {RequiredError}
|
|
3243
3477
|
*/
|
|
3244
|
-
|
|
3478
|
+
operationsControllerRunNaomiHauteV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): AxiosPromise<OperationEntity>;
|
|
3245
3479
|
/**
|
|
3246
3480
|
*
|
|
3247
3481
|
* @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
|
|
@@ -3337,44 +3571,44 @@ export declare class OperationsApi extends BaseAPI {
|
|
|
3337
3571
|
operationsControllerRunCutV1V1(cutV1ControllerInput: CutV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
|
|
3338
3572
|
/**
|
|
3339
3573
|
*
|
|
3340
|
-
* @param {
|
|
3574
|
+
* @param {GPTV1ControllerInput} gPTV1ControllerInput
|
|
3341
3575
|
* @param {*} [options] Override http request option.
|
|
3342
3576
|
* @throws {RequiredError}
|
|
3343
3577
|
* @memberof OperationsApi
|
|
3344
3578
|
*/
|
|
3345
|
-
|
|
3579
|
+
operationsControllerRunGptV1V1(gPTV1ControllerInput: GPTV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
|
|
3346
3580
|
/**
|
|
3347
3581
|
*
|
|
3348
|
-
* @param {
|
|
3582
|
+
* @param {KateImagineV1ControllerInput} kateImagineV1ControllerInput
|
|
3349
3583
|
* @param {*} [options] Override http request option.
|
|
3350
3584
|
* @throws {RequiredError}
|
|
3351
3585
|
* @memberof OperationsApi
|
|
3352
3586
|
*/
|
|
3353
|
-
|
|
3587
|
+
operationsControllerRunKateImagineV1V1(kateImagineV1ControllerInput: KateImagineV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
|
|
3354
3588
|
/**
|
|
3355
3589
|
*
|
|
3356
|
-
* @param {
|
|
3590
|
+
* @param {KateInpaintV1ControllerInput} kateInpaintV1ControllerInput
|
|
3357
3591
|
* @param {*} [options] Override http request option.
|
|
3358
3592
|
* @throws {RequiredError}
|
|
3359
3593
|
* @memberof OperationsApi
|
|
3360
3594
|
*/
|
|
3361
|
-
|
|
3595
|
+
operationsControllerRunKateInpaintV1V1(kateInpaintV1ControllerInput: KateInpaintV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
|
|
3362
3596
|
/**
|
|
3363
3597
|
*
|
|
3364
|
-
* @param {
|
|
3598
|
+
* @param {LindaHauteV1ControllerInput} lindaHauteV1ControllerInput
|
|
3365
3599
|
* @param {*} [options] Override http request option.
|
|
3366
3600
|
* @throws {RequiredError}
|
|
3367
3601
|
* @memberof OperationsApi
|
|
3368
3602
|
*/
|
|
3369
|
-
|
|
3603
|
+
operationsControllerRunLindaHauteV1V1(lindaHauteV1ControllerInput: LindaHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
|
|
3370
3604
|
/**
|
|
3371
3605
|
*
|
|
3372
|
-
* @param {
|
|
3606
|
+
* @param {NaomiHauteV1ControllerInput} naomiHauteV1ControllerInput
|
|
3373
3607
|
* @param {*} [options] Override http request option.
|
|
3374
3608
|
* @throws {RequiredError}
|
|
3375
3609
|
* @memberof OperationsApi
|
|
3376
3610
|
*/
|
|
3377
|
-
|
|
3611
|
+
operationsControllerRunNaomiHauteV1V1(naomiHauteV1ControllerInput: NaomiHauteV1ControllerInput, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OperationEntity, any>>;
|
|
3378
3612
|
/**
|
|
3379
3613
|
*
|
|
3380
3614
|
* @param {ObjectDetectionV1ControllerInput} objectDetectionV1ControllerInput
|
|
@@ -3636,6 +3870,14 @@ export declare const PosesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3636
3870
|
* @throws {RequiredError}
|
|
3637
3871
|
*/
|
|
3638
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>;
|
|
3639
3881
|
};
|
|
3640
3882
|
/**
|
|
3641
3883
|
* PosesApi - functional programming interface
|
|
@@ -3658,6 +3900,14 @@ export declare const PosesApiFp: (configuration?: Configuration) => {
|
|
|
3658
3900
|
* @throws {RequiredError}
|
|
3659
3901
|
*/
|
|
3660
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>>;
|
|
3661
3911
|
};
|
|
3662
3912
|
/**
|
|
3663
3913
|
* PosesApi - factory interface
|
|
@@ -3680,6 +3930,14 @@ export declare const PosesApiFactory: (configuration?: Configuration, basePath?:
|
|
|
3680
3930
|
* @throws {RequiredError}
|
|
3681
3931
|
*/
|
|
3682
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>;
|
|
3683
3941
|
};
|
|
3684
3942
|
/**
|
|
3685
3943
|
* PosesApi - object-oriented interface
|
|
@@ -3706,6 +3964,15 @@ export declare class PosesApi extends BaseAPI {
|
|
|
3706
3964
|
* @memberof PosesApi
|
|
3707
3965
|
*/
|
|
3708
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>>;
|
|
3709
3976
|
}
|
|
3710
3977
|
/**
|
|
3711
3978
|
* @export
|
|
@@ -4087,57 +4354,6 @@ export declare class StorageApi extends BaseAPI {
|
|
|
4087
4354
|
*/
|
|
4088
4355
|
storageControllerUpdateRecordV1(updateStorageRecordParamsDto: UpdateStorageRecordParamsDto, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorageEntity, any>>;
|
|
4089
4356
|
}
|
|
4090
|
-
/**
|
|
4091
|
-
* UploadApi - axios parameter creator
|
|
4092
|
-
* @export
|
|
4093
|
-
*/
|
|
4094
|
-
export declare const UploadApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4095
|
-
/**
|
|
4096
|
-
*
|
|
4097
|
-
* @param {*} [options] Override http request option.
|
|
4098
|
-
* @throws {RequiredError}
|
|
4099
|
-
*/
|
|
4100
|
-
uploadControllerUploadFileV1: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
4101
|
-
};
|
|
4102
|
-
/**
|
|
4103
|
-
* UploadApi - functional programming interface
|
|
4104
|
-
* @export
|
|
4105
|
-
*/
|
|
4106
|
-
export declare const UploadApiFp: (configuration?: Configuration) => {
|
|
4107
|
-
/**
|
|
4108
|
-
*
|
|
4109
|
-
* @param {*} [options] Override http request option.
|
|
4110
|
-
* @throws {RequiredError}
|
|
4111
|
-
*/
|
|
4112
|
-
uploadControllerUploadFileV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
4113
|
-
};
|
|
4114
|
-
/**
|
|
4115
|
-
* UploadApi - factory interface
|
|
4116
|
-
* @export
|
|
4117
|
-
*/
|
|
4118
|
-
export declare const UploadApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4119
|
-
/**
|
|
4120
|
-
*
|
|
4121
|
-
* @param {*} [options] Override http request option.
|
|
4122
|
-
* @throws {RequiredError}
|
|
4123
|
-
*/
|
|
4124
|
-
uploadControllerUploadFileV1(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
4125
|
-
};
|
|
4126
|
-
/**
|
|
4127
|
-
* UploadApi - object-oriented interface
|
|
4128
|
-
* @export
|
|
4129
|
-
* @class UploadApi
|
|
4130
|
-
* @extends {BaseAPI}
|
|
4131
|
-
*/
|
|
4132
|
-
export declare class UploadApi extends BaseAPI {
|
|
4133
|
-
/**
|
|
4134
|
-
*
|
|
4135
|
-
* @param {*} [options] Override http request option.
|
|
4136
|
-
* @throws {RequiredError}
|
|
4137
|
-
* @memberof UploadApi
|
|
4138
|
-
*/
|
|
4139
|
-
uploadControllerUploadFileV1(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
4140
|
-
}
|
|
4141
4357
|
/**
|
|
4142
4358
|
* WebsocketApi - axios parameter creator
|
|
4143
4359
|
* @export
|