@hautechai/sdk 2.6.0 → 2.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -142,6 +142,27 @@ interface AddBalanceParamsDto {
142
142
  idempotencyKey?: string;
143
143
  }
144
144
 
145
+ /**
146
+ * Generated by orval v7.10.0 🍺
147
+ * Do not edit manually.
148
+ * Hautech API
149
+ * OpenAPI spec version: 1.0
150
+ */
151
+ type AddChatItemsDtoItemsItem = {
152
+ [key: string]: unknown;
153
+ };
154
+
155
+ /**
156
+ * Generated by orval v7.10.0 🍺
157
+ * Do not edit manually.
158
+ * Hautech API
159
+ * OpenAPI spec version: 1.0
160
+ */
161
+
162
+ interface AddChatItemsDto {
163
+ items: AddChatItemsDtoItemsItem[];
164
+ }
165
+
145
166
  /**
146
167
  * Generated by orval v7.10.0 🍺
147
168
  * Do not edit manually.
@@ -604,6 +625,286 @@ interface BalanceResultDto {
604
625
  balance: string;
605
626
  }
606
627
 
628
+ /**
629
+ * Generated by orval v7.10.0 🍺
630
+ * Do not edit manually.
631
+ * Hautech API
632
+ * OpenAPI spec version: 1.0
633
+ */
634
+ type ChatControllerListChatsV1OrderBy = typeof ChatControllerListChatsV1OrderBy[keyof typeof ChatControllerListChatsV1OrderBy];
635
+ declare const ChatControllerListChatsV1OrderBy: {
636
+ readonly createdAt_ASC: "createdAt_ASC";
637
+ readonly createdAt_DESC: "createdAt_DESC";
638
+ readonly updatedAt_ASC: "updatedAt_ASC";
639
+ readonly updatedAt_DESC: "updatedAt_DESC";
640
+ };
641
+
642
+ /**
643
+ * Generated by orval v7.10.0 🍺
644
+ * Do not edit manually.
645
+ * Hautech API
646
+ * OpenAPI spec version: 1.0
647
+ */
648
+
649
+ type ChatControllerListChatsV1Params = {
650
+ orderBy?: ChatControllerListChatsV1OrderBy;
651
+ limit?: number;
652
+ cursor?: string;
653
+ };
654
+
655
+ /**
656
+ * Generated by orval v7.10.0 🍺
657
+ * Do not edit manually.
658
+ * Hautech API
659
+ * OpenAPI spec version: 1.0
660
+ */
661
+ type ChatDtoItemsItem = {
662
+ [key: string]: unknown;
663
+ };
664
+
665
+ /**
666
+ * Generated by orval v7.10.0 🍺
667
+ * Do not edit manually.
668
+ * Hautech API
669
+ * OpenAPI spec version: 1.0
670
+ */
671
+ /**
672
+ * The type of response format being defined: 'text' or 'json_object'.
673
+ */
674
+ type GPTV2ResponseFormatTextOrObjectDtoType = typeof GPTV2ResponseFormatTextOrObjectDtoType[keyof typeof GPTV2ResponseFormatTextOrObjectDtoType];
675
+ declare const GPTV2ResponseFormatTextOrObjectDtoType: {
676
+ readonly text: "text";
677
+ readonly json_object: "json_object";
678
+ };
679
+
680
+ /**
681
+ * Generated by orval v7.10.0 🍺
682
+ * Do not edit manually.
683
+ * Hautech API
684
+ * OpenAPI spec version: 1.0
685
+ */
686
+
687
+ interface GPTV2ResponseFormatTextOrObjectDto {
688
+ /** The type of response format being defined: 'text' or 'json_object'. */
689
+ type: GPTV2ResponseFormatTextOrObjectDtoType;
690
+ }
691
+
692
+ /**
693
+ * Generated by orval v7.10.0 🍺
694
+ * Do not edit manually.
695
+ * Hautech API
696
+ * OpenAPI spec version: 1.0
697
+ */
698
+ /**
699
+ * The type of response format being defined: json_schema.
700
+ */
701
+ type GPTV2ResponseFormatJsonSchemaDtoType = typeof GPTV2ResponseFormatJsonSchemaDtoType[keyof typeof GPTV2ResponseFormatJsonSchemaDtoType];
702
+ declare const GPTV2ResponseFormatJsonSchemaDtoType: {
703
+ readonly json_schema: "json_schema";
704
+ };
705
+
706
+ /**
707
+ * Generated by orval v7.10.0 🍺
708
+ * Do not edit manually.
709
+ * Hautech API
710
+ * OpenAPI spec version: 1.0
711
+ */
712
+ /**
713
+ * The schema for the response format, described as a JSON Schema object.
714
+ */
715
+ type GPTV2ResponseFormatJsonSchemaDetailsDtoSchema = {
716
+ [key: string]: unknown;
717
+ };
718
+
719
+ /**
720
+ * Generated by orval v7.10.0 🍺
721
+ * Do not edit manually.
722
+ * Hautech API
723
+ * OpenAPI spec version: 1.0
724
+ */
725
+
726
+ interface GPTV2ResponseFormatJsonSchemaDetailsDto {
727
+ /** The name of the response format. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64. */
728
+ name: string;
729
+ /** A description of what the response format is for, used by the model to determine how to respond in the format. */
730
+ description?: string;
731
+ /** The schema for the response format, described as a JSON Schema object. */
732
+ schema?: GPTV2ResponseFormatJsonSchemaDetailsDtoSchema;
733
+ /**
734
+ * Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the `schema` field. Only a subset of JSON Schema is supported when `strict` is `true`.
735
+ * @nullable
736
+ */
737
+ strict?: boolean | null;
738
+ }
739
+
740
+ /**
741
+ * Generated by orval v7.10.0 🍺
742
+ * Do not edit manually.
743
+ * Hautech API
744
+ * OpenAPI spec version: 1.0
745
+ */
746
+
747
+ interface GPTV2ResponseFormatJsonSchemaDto {
748
+ /** The type of response format being defined: json_schema. */
749
+ type: GPTV2ResponseFormatJsonSchemaDtoType;
750
+ /** The JSON schema definition for the response format. Required for type json_schema. */
751
+ json_schema: GPTV2ResponseFormatJsonSchemaDetailsDto;
752
+ }
753
+
754
+ /**
755
+ * Generated by orval v7.10.0 🍺
756
+ * Do not edit manually.
757
+ * Hautech API
758
+ * OpenAPI spec version: 1.0
759
+ */
760
+
761
+ /**
762
+ * The response format for the model output. See OpenAI docs for details.
763
+ */
764
+ type ChatParametersDtoResponseFormat = GPTV2ResponseFormatTextOrObjectDto | GPTV2ResponseFormatJsonSchemaDto;
765
+
766
+ /**
767
+ * Generated by orval v7.10.0 🍺
768
+ * Do not edit manually.
769
+ * Hautech API
770
+ * OpenAPI spec version: 1.0
771
+ */
772
+ /**
773
+ * The parameters the functions accepts, described as a JSON Schema object.
774
+ */
775
+ type GPTV2ToolFunctionDtoParameters = {
776
+ [key: string]: unknown;
777
+ };
778
+
779
+ /**
780
+ * Generated by orval v7.10.0 🍺
781
+ * Do not edit manually.
782
+ * Hautech API
783
+ * OpenAPI spec version: 1.0
784
+ */
785
+
786
+ interface GPTV2ToolFunctionDto {
787
+ /** The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64. */
788
+ name: string;
789
+ /** A description of what the function does, used by the model to choose when and how to call the function. */
790
+ description?: string;
791
+ /** The parameters the functions accepts, described as a JSON Schema object. */
792
+ parameters?: GPTV2ToolFunctionDtoParameters;
793
+ /**
794
+ * Whether to enable strict schema adherence when generating the function call.
795
+ * @nullable
796
+ */
797
+ strict?: boolean | null;
798
+ }
799
+
800
+ /**
801
+ * Generated by orval v7.10.0 🍺
802
+ * Do not edit manually.
803
+ * Hautech API
804
+ * OpenAPI spec version: 1.0
805
+ */
806
+ /**
807
+ * The type of the tool. Currently, only 'function' is supported.
808
+ */
809
+ type GPTV2ToolDtoType = typeof GPTV2ToolDtoType[keyof typeof GPTV2ToolDtoType];
810
+ declare const GPTV2ToolDtoType: {
811
+ readonly function: "function";
812
+ };
813
+
814
+ /**
815
+ * Generated by orval v7.10.0 🍺
816
+ * Do not edit manually.
817
+ * Hautech API
818
+ * OpenAPI spec version: 1.0
819
+ */
820
+
821
+ interface GPTV2ToolDto {
822
+ /** The function definition for the tool. Currently, only functions are supported. */
823
+ function: GPTV2ToolFunctionDto;
824
+ /** The type of the tool. Currently, only 'function' is supported. */
825
+ type: GPTV2ToolDtoType;
826
+ }
827
+
828
+ /**
829
+ * Generated by orval v7.10.0 🍺
830
+ * Do not edit manually.
831
+ * Hautech API
832
+ * OpenAPI spec version: 1.0
833
+ */
834
+ /**
835
+ * Controls which (if any) tool is called by the model. 'none', 'auto', 'required', or a specific function tool.
836
+ */
837
+ type GPTV2ToolChoiceDtoType = typeof GPTV2ToolChoiceDtoType[keyof typeof GPTV2ToolChoiceDtoType];
838
+ declare const GPTV2ToolChoiceDtoType: {
839
+ readonly none: "none";
840
+ readonly auto: "auto";
841
+ readonly required: "required";
842
+ readonly function: "function";
843
+ };
844
+
845
+ /**
846
+ * Generated by orval v7.10.0 🍺
847
+ * Do not edit manually.
848
+ * Hautech API
849
+ * OpenAPI spec version: 1.0
850
+ */
851
+ interface GPTV2ToolChoiceFunctionDto {
852
+ /** The name of the function to call. */
853
+ name: string;
854
+ }
855
+
856
+ /**
857
+ * Generated by orval v7.10.0 🍺
858
+ * Do not edit manually.
859
+ * Hautech API
860
+ * OpenAPI spec version: 1.0
861
+ */
862
+
863
+ interface GPTV2ToolChoiceDto {
864
+ /** Controls which (if any) tool is called by the model. 'none', 'auto', 'required', or a specific function tool. */
865
+ type: GPTV2ToolChoiceDtoType;
866
+ /** The function to call, if type is `function`. */
867
+ function?: GPTV2ToolChoiceFunctionDto;
868
+ }
869
+
870
+ /**
871
+ * Generated by orval v7.10.0 🍺
872
+ * Do not edit manually.
873
+ * Hautech API
874
+ * OpenAPI spec version: 1.0
875
+ */
876
+
877
+ interface ChatParametersDto {
878
+ /** The response format for the model output. See OpenAI docs for details. */
879
+ response_format?: ChatParametersDtoResponseFormat;
880
+ /** This feature is in Beta. If specified, OpenAI will make a best effort to sample deterministically, such that repeated requests with the same seed and parameters should return the same result. */
881
+ seed?: number;
882
+ /** A list of tools the model may call. Currently, only functions are supported as a tool. */
883
+ tools?: GPTV2ToolDto[];
884
+ /** Controls which (if any) tool is called by the model. 'none', 'auto', 'required', or a specific function tool. */
885
+ tool_choice?: GPTV2ToolChoiceDto;
886
+ response_format_text_or_object?: GPTV2ResponseFormatTextOrObjectDto;
887
+ max_completion_tokens?: number;
888
+ }
889
+
890
+ /**
891
+ * Generated by orval v7.10.0 🍺
892
+ * Do not edit manually.
893
+ * Hautech API
894
+ * OpenAPI spec version: 1.0
895
+ */
896
+
897
+ interface ChatDto {
898
+ id: string;
899
+ chatId: string;
900
+ modelName: string;
901
+ creatorId: string;
902
+ items: ChatDtoItemsItem[];
903
+ parameters: ChatParametersDto;
904
+ createdAt: string;
905
+ updatedAt: string;
906
+ }
907
+
607
908
  /**
608
909
  * Generated by orval v7.10.0 🍺
609
910
  * Do not edit manually.
@@ -1042,6 +1343,19 @@ interface CreateAccountParamsDto {
1042
1343
  alias?: string;
1043
1344
  }
1044
1345
 
1346
+ /**
1347
+ * Generated by orval v7.10.0 🍺
1348
+ * Do not edit manually.
1349
+ * Hautech API
1350
+ * OpenAPI spec version: 1.0
1351
+ */
1352
+
1353
+ interface CreateChatParamsDto {
1354
+ modelName: string;
1355
+ chatId: string;
1356
+ parameters: ChatParametersDto;
1357
+ }
1358
+
1045
1359
  /**
1046
1360
  * Generated by orval v7.10.0 🍺
1047
1361
  * Do not edit manually.
@@ -1894,218 +2208,9 @@ declare const GPTV2MessageToolCallDtoType: {
1894
2208
 
1895
2209
  interface GPTV2MessageToolCallDto {
1896
2210
  id: string;
1897
- function: GPTV2MessageToolCallDtoFunction;
1898
- type: GPTV2MessageToolCallDtoType;
1899
- }
1900
-
1901
- /**
1902
- * Generated by orval v7.10.0 🍺
1903
- * Do not edit manually.
1904
- * Hautech API
1905
- * OpenAPI spec version: 1.0
1906
- */
1907
-
1908
- interface GPTV2AssistantMessageDto {
1909
- /** The content of the assistant message. */
1910
- content?: string;
1911
- /** The role of the message sender. */
1912
- role: GPTV2AssistantMessageDtoRole;
1913
- /** The name of the sender, if applicable. */
1914
- name?: string;
1915
- /** The refusal message, if applicable. */
1916
- refusal?: string;
1917
- /** The tool calls made by the assistant, if any. */
1918
- tool_calls?: GPTV2MessageToolCallDto[];
1919
- }
1920
-
1921
- /**
1922
- * Generated by orval v7.10.0 🍺
1923
- * Do not edit manually.
1924
- * Hautech API
1925
- * OpenAPI spec version: 1.0
1926
- */
1927
- /**
1928
- * The role of the message sender.
1929
- */
1930
- type GPTV2DeveloperMessageDtoRole = typeof GPTV2DeveloperMessageDtoRole[keyof typeof GPTV2DeveloperMessageDtoRole];
1931
- declare const GPTV2DeveloperMessageDtoRole: {
1932
- readonly developer: "developer";
1933
- };
1934
-
1935
- /**
1936
- * Generated by orval v7.10.0 🍺
1937
- * Do not edit manually.
1938
- * Hautech API
1939
- * OpenAPI spec version: 1.0
1940
- */
1941
-
1942
- interface GPTV2DeveloperMessageDto {
1943
- /** The content of the developer message. */
1944
- content: string;
1945
- /** The role of the message sender. */
1946
- role: GPTV2DeveloperMessageDtoRole;
1947
- /** The name of the sender, if applicable. */
1948
- name?: string;
1949
- }
1950
-
1951
- /**
1952
- * Generated by orval v7.10.0 🍺
1953
- * Do not edit manually.
1954
- * Hautech API
1955
- * OpenAPI spec version: 1.0
1956
- */
1957
- /**
1958
- * ID of the model to use. See OpenAI docs for model endpoint compatibility.
1959
- */
1960
- type GPTV2InputModel = typeof GPTV2InputModel[keyof typeof GPTV2InputModel];
1961
- declare const GPTV2InputModel: {
1962
- readonly 'gpt-4o': "gpt-4o";
1963
- readonly o3: "o3";
1964
- readonly 'o3-mini': "o3-mini";
1965
- readonly 'gpt-41': "gpt-4.1";
1966
- readonly 'gpt-41-mini': "gpt-4.1-mini";
1967
- readonly 'gpt-41-nano': "gpt-4.1-nano";
1968
- };
1969
-
1970
- /**
1971
- * Generated by orval v7.10.0 🍺
1972
- * Do not edit manually.
1973
- * Hautech API
1974
- * OpenAPI spec version: 1.0
1975
- */
1976
- /**
1977
- * The role of the message sender.
1978
- */
1979
- type GPTV2SystemMessageDtoRole = typeof GPTV2SystemMessageDtoRole[keyof typeof GPTV2SystemMessageDtoRole];
1980
- declare const GPTV2SystemMessageDtoRole: {
1981
- readonly system: "system";
1982
- };
1983
-
1984
- /**
1985
- * Generated by orval v7.10.0 🍺
1986
- * Do not edit manually.
1987
- * Hautech API
1988
- * OpenAPI spec version: 1.0
1989
- */
1990
-
1991
- interface GPTV2SystemMessageDto {
1992
- /** The content of the system message. */
1993
- content: string;
1994
- /** The role of the message sender. */
1995
- role: GPTV2SystemMessageDtoRole;
1996
- /** The name of the sender, if applicable. */
1997
- name?: string;
1998
- }
1999
-
2000
- /**
2001
- * Generated by orval v7.10.0 🍺
2002
- * Do not edit manually.
2003
- * Hautech API
2004
- * OpenAPI spec version: 1.0
2005
- */
2006
- /**
2007
- * The role of the message sender.
2008
- */
2009
- type GPTV2UserMessageDtoRole = typeof GPTV2UserMessageDtoRole[keyof typeof GPTV2UserMessageDtoRole];
2010
- declare const GPTV2UserMessageDtoRole: {
2011
- readonly user: "user";
2012
- };
2013
-
2014
- /**
2015
- * Generated by orval v7.10.0 🍺
2016
- * Do not edit manually.
2017
- * Hautech API
2018
- * OpenAPI spec version: 1.0
2019
- */
2020
-
2021
- interface GPTV2UserMessageDto {
2022
- /** The content of the user message. */
2023
- content: string;
2024
- /** The role of the message sender. */
2025
- role: GPTV2UserMessageDtoRole;
2026
- /** The name of the sender, if applicable. */
2027
- name?: string;
2028
- }
2029
-
2030
- /**
2031
- * Generated by orval v7.10.0 🍺
2032
- * Do not edit manually.
2033
- * Hautech API
2034
- * OpenAPI spec version: 1.0
2035
- */
2036
- /**
2037
- * The role of the message sender.
2038
- */
2039
- type GPTV2ToolMessageDtoRole = typeof GPTV2ToolMessageDtoRole[keyof typeof GPTV2ToolMessageDtoRole];
2040
- declare const GPTV2ToolMessageDtoRole: {
2041
- readonly tool: "tool";
2042
- };
2043
-
2044
- /**
2045
- * Generated by orval v7.10.0 🍺
2046
- * Do not edit manually.
2047
- * Hautech API
2048
- * OpenAPI spec version: 1.0
2049
- */
2050
-
2051
- interface GPTV2ToolMessageDto {
2052
- /** The content of the tool message. */
2053
- content: string;
2054
- /** The role of the message sender. */
2055
- role: GPTV2ToolMessageDtoRole;
2056
- /** The ID of the tool call. */
2057
- tool_call_id: string;
2058
- }
2059
-
2060
- /**
2061
- * Generated by orval v7.10.0 🍺
2062
- * Do not edit manually.
2063
- * Hautech API
2064
- * OpenAPI spec version: 1.0
2065
- */
2066
-
2067
- type GPTV2InputMessagesItem = GPTV2SystemMessageDto | GPTV2UserMessageDto | GPTV2AssistantMessageDto | GPTV2ToolMessageDto | GPTV2DeveloperMessageDto;
2068
-
2069
- /**
2070
- * Generated by orval v7.10.0 🍺
2071
- * Do not edit manually.
2072
- * Hautech API
2073
- * OpenAPI spec version: 1.0
2074
- */
2075
- /**
2076
- * The type of response format being defined: 'text' or 'json_object'.
2077
- */
2078
- type GPTV2ResponseFormatTextOrObjectDtoType = typeof GPTV2ResponseFormatTextOrObjectDtoType[keyof typeof GPTV2ResponseFormatTextOrObjectDtoType];
2079
- declare const GPTV2ResponseFormatTextOrObjectDtoType: {
2080
- readonly text: "text";
2081
- readonly json_object: "json_object";
2082
- };
2083
-
2084
- /**
2085
- * Generated by orval v7.10.0 🍺
2086
- * Do not edit manually.
2087
- * Hautech API
2088
- * OpenAPI spec version: 1.0
2089
- */
2090
-
2091
- interface GPTV2ResponseFormatTextOrObjectDto {
2092
- /** The type of response format being defined: 'text' or 'json_object'. */
2093
- type: GPTV2ResponseFormatTextOrObjectDtoType;
2094
- }
2095
-
2096
- /**
2097
- * Generated by orval v7.10.0 🍺
2098
- * Do not edit manually.
2099
- * Hautech API
2100
- * OpenAPI spec version: 1.0
2101
- */
2102
- /**
2103
- * The type of response format being defined: json_schema.
2104
- */
2105
- type GPTV2ResponseFormatJsonSchemaDtoType = typeof GPTV2ResponseFormatJsonSchemaDtoType[keyof typeof GPTV2ResponseFormatJsonSchemaDtoType];
2106
- declare const GPTV2ResponseFormatJsonSchemaDtoType: {
2107
- readonly json_schema: "json_schema";
2108
- };
2211
+ function: GPTV2MessageToolCallDtoFunction;
2212
+ type: GPTV2MessageToolCallDtoType;
2213
+ }
2109
2214
 
2110
2215
  /**
2111
2216
  * Generated by orval v7.10.0 🍺
@@ -2113,12 +2218,19 @@ declare const GPTV2ResponseFormatJsonSchemaDtoType: {
2113
2218
  * Hautech API
2114
2219
  * OpenAPI spec version: 1.0
2115
2220
  */
2116
- /**
2117
- * The schema for the response format, described as a JSON Schema object.
2118
- */
2119
- type GPTV2ResponseFormatJsonSchemaDetailsDtoSchema = {
2120
- [key: string]: unknown;
2121
- };
2221
+
2222
+ interface GPTV2AssistantMessageDto {
2223
+ /** The content of the assistant message. */
2224
+ content?: string;
2225
+ /** The role of the message sender. */
2226
+ role: GPTV2AssistantMessageDtoRole;
2227
+ /** The name of the sender, if applicable. */
2228
+ name?: string;
2229
+ /** The refusal message, if applicable. */
2230
+ refusal?: string;
2231
+ /** The tool calls made by the assistant, if any. */
2232
+ tool_calls?: GPTV2MessageToolCallDto[];
2233
+ }
2122
2234
 
2123
2235
  /**
2124
2236
  * Generated by orval v7.10.0 🍺
@@ -2126,20 +2238,13 @@ type GPTV2ResponseFormatJsonSchemaDetailsDtoSchema = {
2126
2238
  * Hautech API
2127
2239
  * OpenAPI spec version: 1.0
2128
2240
  */
2129
-
2130
- interface GPTV2ResponseFormatJsonSchemaDetailsDto {
2131
- /** The name of the response format. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64. */
2132
- name: string;
2133
- /** A description of what the response format is for, used by the model to determine how to respond in the format. */
2134
- description?: string;
2135
- /** The schema for the response format, described as a JSON Schema object. */
2136
- schema?: GPTV2ResponseFormatJsonSchemaDetailsDtoSchema;
2137
- /**
2138
- * Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the `schema` field. Only a subset of JSON Schema is supported when `strict` is `true`.
2139
- * @nullable
2140
- */
2141
- strict?: boolean | null;
2142
- }
2241
+ /**
2242
+ * The role of the message sender.
2243
+ */
2244
+ type GPTV2DeveloperMessageDtoRole = typeof GPTV2DeveloperMessageDtoRole[keyof typeof GPTV2DeveloperMessageDtoRole];
2245
+ declare const GPTV2DeveloperMessageDtoRole: {
2246
+ readonly developer: "developer";
2247
+ };
2143
2248
 
2144
2249
  /**
2145
2250
  * Generated by orval v7.10.0 🍺
@@ -2148,11 +2253,13 @@ interface GPTV2ResponseFormatJsonSchemaDetailsDto {
2148
2253
  * OpenAPI spec version: 1.0
2149
2254
  */
2150
2255
 
2151
- interface GPTV2ResponseFormatJsonSchemaDto {
2152
- /** The type of response format being defined: json_schema. */
2153
- type: GPTV2ResponseFormatJsonSchemaDtoType;
2154
- /** The JSON schema definition for the response format. Required for type json_schema. */
2155
- json_schema: GPTV2ResponseFormatJsonSchemaDetailsDto;
2256
+ interface GPTV2DeveloperMessageDto {
2257
+ /** The content of the developer message. */
2258
+ content: string;
2259
+ /** The role of the message sender. */
2260
+ role: GPTV2DeveloperMessageDtoRole;
2261
+ /** The name of the sender, if applicable. */
2262
+ name?: string;
2156
2263
  }
2157
2264
 
2158
2265
  /**
@@ -2161,11 +2268,18 @@ interface GPTV2ResponseFormatJsonSchemaDto {
2161
2268
  * Hautech API
2162
2269
  * OpenAPI spec version: 1.0
2163
2270
  */
2164
-
2165
2271
  /**
2166
- * The response format for the model output. See OpenAI docs for details.
2272
+ * ID of the model to use. See OpenAI docs for model endpoint compatibility.
2167
2273
  */
2168
- type GPTV2InputResponseFormat = GPTV2ResponseFormatTextOrObjectDto | GPTV2ResponseFormatJsonSchemaDto;
2274
+ type GPTV2InputModel = typeof GPTV2InputModel[keyof typeof GPTV2InputModel];
2275
+ declare const GPTV2InputModel: {
2276
+ readonly 'gpt-4o': "gpt-4o";
2277
+ readonly o3: "o3";
2278
+ readonly 'o3-mini': "o3-mini";
2279
+ readonly 'gpt-41': "gpt-4.1";
2280
+ readonly 'gpt-41-mini': "gpt-4.1-mini";
2281
+ readonly 'gpt-41-nano': "gpt-4.1-nano";
2282
+ };
2169
2283
 
2170
2284
  /**
2171
2285
  * Generated by orval v7.10.0 🍺
@@ -2174,10 +2288,11 @@ type GPTV2InputResponseFormat = GPTV2ResponseFormatTextOrObjectDto | GPTV2Respon
2174
2288
  * OpenAPI spec version: 1.0
2175
2289
  */
2176
2290
  /**
2177
- * The parameters the functions accepts, described as a JSON Schema object.
2291
+ * The role of the message sender.
2178
2292
  */
2179
- type GPTV2ToolFunctionDtoParameters = {
2180
- [key: string]: unknown;
2293
+ type GPTV2SystemMessageDtoRole = typeof GPTV2SystemMessageDtoRole[keyof typeof GPTV2SystemMessageDtoRole];
2294
+ declare const GPTV2SystemMessageDtoRole: {
2295
+ readonly system: "system";
2181
2296
  };
2182
2297
 
2183
2298
  /**
@@ -2187,18 +2302,13 @@ type GPTV2ToolFunctionDtoParameters = {
2187
2302
  * OpenAPI spec version: 1.0
2188
2303
  */
2189
2304
 
2190
- interface GPTV2ToolFunctionDto {
2191
- /** The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64. */
2192
- name: string;
2193
- /** A description of what the function does, used by the model to choose when and how to call the function. */
2194
- description?: string;
2195
- /** The parameters the functions accepts, described as a JSON Schema object. */
2196
- parameters?: GPTV2ToolFunctionDtoParameters;
2197
- /**
2198
- * Whether to enable strict schema adherence when generating the function call.
2199
- * @nullable
2200
- */
2201
- strict?: boolean | null;
2305
+ interface GPTV2SystemMessageDto {
2306
+ /** The content of the system message. */
2307
+ content: string;
2308
+ /** The role of the message sender. */
2309
+ role: GPTV2SystemMessageDtoRole;
2310
+ /** The name of the sender, if applicable. */
2311
+ name?: string;
2202
2312
  }
2203
2313
 
2204
2314
  /**
@@ -2208,11 +2318,11 @@ interface GPTV2ToolFunctionDto {
2208
2318
  * OpenAPI spec version: 1.0
2209
2319
  */
2210
2320
  /**
2211
- * The type of the tool. Currently, only 'function' is supported.
2321
+ * The role of the message sender.
2212
2322
  */
2213
- type GPTV2ToolDtoType = typeof GPTV2ToolDtoType[keyof typeof GPTV2ToolDtoType];
2214
- declare const GPTV2ToolDtoType: {
2215
- readonly function: "function";
2323
+ type GPTV2UserMessageDtoRole = typeof GPTV2UserMessageDtoRole[keyof typeof GPTV2UserMessageDtoRole];
2324
+ declare const GPTV2UserMessageDtoRole: {
2325
+ readonly user: "user";
2216
2326
  };
2217
2327
 
2218
2328
  /**
@@ -2222,11 +2332,13 @@ declare const GPTV2ToolDtoType: {
2222
2332
  * OpenAPI spec version: 1.0
2223
2333
  */
2224
2334
 
2225
- interface GPTV2ToolDto {
2226
- /** The function definition for the tool. Currently, only functions are supported. */
2227
- function: GPTV2ToolFunctionDto;
2228
- /** The type of the tool. Currently, only 'function' is supported. */
2229
- type: GPTV2ToolDtoType;
2335
+ interface GPTV2UserMessageDto {
2336
+ /** The content of the user message. */
2337
+ content: string;
2338
+ /** The role of the message sender. */
2339
+ role: GPTV2UserMessageDtoRole;
2340
+ /** The name of the sender, if applicable. */
2341
+ name?: string;
2230
2342
  }
2231
2343
 
2232
2344
  /**
@@ -2236,14 +2348,11 @@ interface GPTV2ToolDto {
2236
2348
  * OpenAPI spec version: 1.0
2237
2349
  */
2238
2350
  /**
2239
- * Controls which (if any) tool is called by the model. 'none', 'auto', 'required', or a specific function tool.
2351
+ * The role of the message sender.
2240
2352
  */
2241
- type GPTV2ToolChoiceDtoType = typeof GPTV2ToolChoiceDtoType[keyof typeof GPTV2ToolChoiceDtoType];
2242
- declare const GPTV2ToolChoiceDtoType: {
2243
- readonly none: "none";
2244
- readonly auto: "auto";
2245
- readonly required: "required";
2246
- readonly function: "function";
2353
+ type GPTV2ToolMessageDtoRole = typeof GPTV2ToolMessageDtoRole[keyof typeof GPTV2ToolMessageDtoRole];
2354
+ declare const GPTV2ToolMessageDtoRole: {
2355
+ readonly tool: "tool";
2247
2356
  };
2248
2357
 
2249
2358
  /**
@@ -2252,9 +2361,14 @@ declare const GPTV2ToolChoiceDtoType: {
2252
2361
  * Hautech API
2253
2362
  * OpenAPI spec version: 1.0
2254
2363
  */
2255
- interface GPTV2ToolChoiceFunctionDto {
2256
- /** The name of the function to call. */
2257
- name: string;
2364
+
2365
+ interface GPTV2ToolMessageDto {
2366
+ /** The content of the tool message. */
2367
+ content: string;
2368
+ /** The role of the message sender. */
2369
+ role: GPTV2ToolMessageDtoRole;
2370
+ /** The ID of the tool call. */
2371
+ tool_call_id: string;
2258
2372
  }
2259
2373
 
2260
2374
  /**
@@ -2264,12 +2378,19 @@ interface GPTV2ToolChoiceFunctionDto {
2264
2378
  * OpenAPI spec version: 1.0
2265
2379
  */
2266
2380
 
2267
- interface GPTV2ToolChoiceDto {
2268
- /** Controls which (if any) tool is called by the model. 'none', 'auto', 'required', or a specific function tool. */
2269
- type: GPTV2ToolChoiceDtoType;
2270
- /** The function to call, if type is `function`. */
2271
- function?: GPTV2ToolChoiceFunctionDto;
2272
- }
2381
+ type GPTV2InputMessagesItem = GPTV2SystemMessageDto | GPTV2UserMessageDto | GPTV2AssistantMessageDto | GPTV2ToolMessageDto | GPTV2DeveloperMessageDto;
2382
+
2383
+ /**
2384
+ * Generated by orval v7.10.0 🍺
2385
+ * Do not edit manually.
2386
+ * Hautech API
2387
+ * OpenAPI spec version: 1.0
2388
+ */
2389
+
2390
+ /**
2391
+ * The response format for the model output. See OpenAI docs for details.
2392
+ */
2393
+ type GPTV2InputResponseFormat = GPTV2ResponseFormatTextOrObjectDto | GPTV2ResponseFormatJsonSchemaDto;
2273
2394
 
2274
2395
  /**
2275
2396
  * Generated by orval v7.10.0 🍺
@@ -5748,6 +5869,107 @@ interface GiseleVtonV1Input {
5748
5869
  seed: number;
5749
5870
  }
5750
5871
 
5872
+ /**
5873
+ * Generated by orval v7.10.0 🍺
5874
+ * Do not edit manually.
5875
+ * Hautech API
5876
+ * OpenAPI spec version: 1.0
5877
+ */
5878
+ interface GoogleNanoBananaV1Input {
5879
+ /** @minItems 1 */
5880
+ imageIds: string[];
5881
+ prompt: string;
5882
+ negativePrompt?: string;
5883
+ }
5884
+
5885
+ /**
5886
+ * Generated by orval v7.10.0 🍺
5887
+ * Do not edit manually.
5888
+ * Hautech API
5889
+ * OpenAPI spec version: 1.0
5890
+ */
5891
+ type GoogleNanoBananaV1RequestMetadata = {
5892
+ [key: string]: unknown;
5893
+ };
5894
+
5895
+ /**
5896
+ * Generated by orval v7.10.0 🍺
5897
+ * Do not edit manually.
5898
+ * Hautech API
5899
+ * OpenAPI spec version: 1.0
5900
+ */
5901
+
5902
+ interface GoogleNanoBananaV1Request {
5903
+ input: GoogleNanoBananaV1Input;
5904
+ metadata?: GoogleNanoBananaV1RequestMetadata;
5905
+ }
5906
+
5907
+ /**
5908
+ * Generated by orval v7.10.0 🍺
5909
+ * Do not edit manually.
5910
+ * Hautech API
5911
+ * OpenAPI spec version: 1.0
5912
+ */
5913
+ type GoogleNanoBananaV1ResponseKind = typeof GoogleNanoBananaV1ResponseKind[keyof typeof GoogleNanoBananaV1ResponseKind];
5914
+ declare const GoogleNanoBananaV1ResponseKind: {
5915
+ readonly operation: "operation";
5916
+ };
5917
+
5918
+ /**
5919
+ * Generated by orval v7.10.0 🍺
5920
+ * Do not edit manually.
5921
+ * Hautech API
5922
+ * OpenAPI spec version: 1.0
5923
+ */
5924
+ type GoogleNanoBananaV1ResponseInput = {
5925
+ [key: string]: unknown;
5926
+ };
5927
+
5928
+ /**
5929
+ * Generated by orval v7.10.0 🍺
5930
+ * Do not edit manually.
5931
+ * Hautech API
5932
+ * OpenAPI spec version: 1.0
5933
+ */
5934
+ type GoogleNanoBananaV1ResponseStatus = typeof GoogleNanoBananaV1ResponseStatus[keyof typeof GoogleNanoBananaV1ResponseStatus];
5935
+ declare const GoogleNanoBananaV1ResponseStatus: {
5936
+ readonly pending: "pending";
5937
+ readonly finished: "finished";
5938
+ readonly failed: "failed";
5939
+ };
5940
+
5941
+ /**
5942
+ * Generated by orval v7.10.0 🍺
5943
+ * Do not edit manually.
5944
+ * Hautech API
5945
+ * OpenAPI spec version: 1.0
5946
+ */
5947
+ type GoogleNanoBananaV1ResponseMetadata = {
5948
+ [key: string]: unknown;
5949
+ };
5950
+
5951
+ /**
5952
+ * Generated by orval v7.10.0 🍺
5953
+ * Do not edit manually.
5954
+ * Hautech API
5955
+ * OpenAPI spec version: 1.0
5956
+ */
5957
+
5958
+ interface GoogleNanoBananaV1Response {
5959
+ kind: GoogleNanoBananaV1ResponseKind;
5960
+ output: OperationOutputImageSingle;
5961
+ input: GoogleNanoBananaV1ResponseInput;
5962
+ status: GoogleNanoBananaV1ResponseStatus;
5963
+ type: string;
5964
+ price?: string;
5965
+ estimatedPrice?: string;
5966
+ id: string;
5967
+ creatorId: string;
5968
+ metadata: GoogleNanoBananaV1ResponseMetadata;
5969
+ createdAt: string;
5970
+ updatedAt: string;
5971
+ }
5972
+
5751
5973
  /**
5752
5974
  * Generated by orval v7.10.0 🍺
5753
5975
  * Do not edit manually.
@@ -7213,6 +7435,18 @@ interface ListAccountsParamsDto {
7213
7435
  cursor?: string;
7214
7436
  }
7215
7437
 
7438
+ /**
7439
+ * Generated by orval v7.10.0 🍺
7440
+ * Do not edit manually.
7441
+ * Hautech API
7442
+ * OpenAPI spec version: 1.0
7443
+ */
7444
+
7445
+ interface ListChatsDto {
7446
+ data: ChatDto[];
7447
+ pageInfo: PageInfoDto;
7448
+ }
7449
+
7216
7450
  /**
7217
7451
  * Generated by orval v7.10.0 🍺
7218
7452
  * Do not edit manually.
@@ -11173,7 +11407,7 @@ type SubscribePayload = {
11173
11407
  };
11174
11408
 
11175
11409
  declare class WsClient {
11176
- private config;
11410
+ config: Config;
11177
11411
  private socket?;
11178
11412
  constructor(config: Config);
11179
11413
  private getSocket;
@@ -11375,6 +11609,11 @@ declare const apiDefinitions: {
11375
11609
  echo: {
11376
11610
  v1: (echoV1Request: EchoV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<EchoV1Response, any>>;
11377
11611
  };
11612
+ google: {
11613
+ nano_banana: {
11614
+ v1: (googleNanoBananaV1Request: GoogleNanoBananaV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<GoogleNanoBananaV1Response, any>>;
11615
+ };
11616
+ };
11378
11617
  };
11379
11618
  get: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<OperationEntity | null, any>>;
11380
11619
  getMany: (getOperationsParamsDto: GetOperationsParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<OperationEntity[], any>>;
@@ -11415,6 +11654,13 @@ declare const apiDefinitions: {
11415
11654
  }>;
11416
11655
  };
11417
11656
  }>;
11657
+ chats: ApiDefinitionTree<{
11658
+ create: (createChatParamsDto: CreateChatParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ChatDto, any>>;
11659
+ list: (params?: ChatControllerListChatsV1Params, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ListChatsDto, any>>;
11660
+ get: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ChatDto | null, any>>;
11661
+ delete: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<void, any>>;
11662
+ addItems: (chatId: string, addChatItemsDto: AddChatItemsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ChatDto, any>>;
11663
+ }>;
11418
11664
  balances: ApiDefinitionTree<{
11419
11665
  add: (id: string, addBalanceControllerParamsDto: AddBalanceControllerParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<void, any>>;
11420
11666
  get: (options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<BalanceResultDto, any>>;
@@ -11639,6 +11885,11 @@ declare const pipelineDefinitions: {
11639
11885
  v1: (lumaPhotonV1Request: LumaPhotonV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<LumaPhotonV1Response, any>>;
11640
11886
  };
11641
11887
  };
11888
+ google: {
11889
+ nano_banana: {
11890
+ v1: (googleNanoBananaV1Request: GoogleNanoBananaV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<GoogleNanoBananaV1Response, any>>;
11891
+ };
11892
+ };
11642
11893
  };
11643
11894
  };
11644
11895
  poses: {
@@ -11809,4 +12060,4 @@ declare const createTokenSigner: (options: {
11809
12060
  }) => Promise<string>;
11810
12061
  };
11811
12062
 
11812
- export { type AccountEntity, AccountEntityType, AccountsControllerListAccountsV1OrderBy, type AccountsControllerListAccountsV1Params, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRole, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRole, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddItemsToCollectionControllerParamsDto, type AddItemsToCollectionParamsDto, type AddItemsToStackControllerParamsDto, type AddItemsToStackParamsDto, type AnimateCreatomateV1Input, type AnimateCreatomateV1InputTemplate, type AnimateCreatomateV1InputTemplateOneOf, type AnimateCreatomateV1Request, type AnimateCreatomateV1RequestMetadata, type AnimateCreatomateV1Response, type AnimateCreatomateV1ResponseInput, AnimateCreatomateV1ResponseKind, type AnimateCreatomateV1ResponseMetadata, AnimateCreatomateV1ResponseStatus, type AnimateKling16ProV1Input, AnimateKling16ProV1InputAspectRatio, AnimateKling16ProV1InputDuration, type AnimateKling16ProV1Request, type AnimateKling16ProV1RequestMetadata, type AnimateKling16ProV1Response, type AnimateKling16ProV1ResponseInput, AnimateKling16ProV1ResponseKind, type AnimateKling16ProV1ResponseMetadata, AnimateKling16ProV1ResponseStatus, type AnimateKling21V1Input, AnimateKling21V1InputDuration, type AnimateKling21V1Request, type AnimateKling21V1RequestMetadata, type AnimateKling21V1Response, type AnimateKling21V1ResponseInput, AnimateKling21V1ResponseKind, type AnimateKling21V1ResponseMetadata, AnimateKling21V1ResponseStatus, type ApiDefinitionTree, type AttachAccessControllerParamsDto, type AttachAccessParamsDto, type BalanceResultDto, type BaseWsEvent, type BaseWsEventType, type CollectionEntity, CollectionEntityKind, type CollectionEntityMetadata, CollectionsControllerListCollectionsV1OrderBy, type CollectionsControllerListCollectionsV1Params, CollectionsControllerListItemsV1Kind, CollectionsControllerListItemsV1OrderBy, type CollectionsControllerListItemsV1Params, type CompositeElement, CompositeElementBlend, CompositeElementFit, type CompositeV1Input, type CompositeV1Request, type CompositeV1RequestMetadata, type CompositeV1Response, type CompositeV1ResponseInput, CompositeV1ResponseKind, type CompositeV1ResponseMetadata, CompositeV1ResponseStatus, type ContrastV1Input, type ContrastV1Request, type ContrastV1RequestMetadata, type ContrastV1Response, type ContrastV1ResponseInput, ContrastV1ResponseKind, type ContrastV1ResponseMetadata, ContrastV1ResponseStatus, type CountPipelinesResultDto, type CreateAccountParamsDto, type CreateCollectionParamsDto, type CreateCollectionParamsDtoMetadata, type CreateImageParamsDto, type CreatePipelineParamsDto, type CreatePipelineParamsDtoMetadata, type CreatePipelineParamsDtoOutputRef, type CreatePipelineParamsDtoPipelineInput, type CreatePipelineParamsDtoState, type CreatePipelineTaskDto, type CreatePipelineTaskDtoArgsItem, type CreatePipelineTaskDtoArgsItemOneOf, type CreateStackParamsDto, type CreateStackParamsDtoMetadata, type CreateStorageRecordParamsDto, type CreateStorageRecordParamsDtoValue, type CreateStorageRecordParamsDtoValueOneOf, type CreateVideoParamsDto, type CreateWorkflowParamsDto, type CreateWorkflowParamsDtoData, type CreateWorkflowParamsDtoMetadata, type CropV1Input, type CropV1Request, type CropV1RequestMetadata, type CropV1Response, type CropV1ResponseInput, CropV1ResponseKind, type CropV1ResponseMetadata, CropV1ResponseStatus, type CutV1Input, type CutV1Request, type CutV1RequestMetadata, type CutV1Response, type CutV1ResponseInput, CutV1ResponseKind, type CutV1ResponseMetadata, CutV1ResponseStatus, type Decimal, type DeepWrap, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type EchoV1Input, type EchoV1Request, type EchoV1RequestMetadata, type EchoV1Response, type EchoV1ResponseInput, EchoV1ResponseKind, type EchoV1ResponseMetadata, EchoV1ResponseStatus, type EditFluxKontextDevV1Input, type EditFluxKontextDevV1Request, type EditFluxKontextDevV1RequestMetadata, type EditFluxKontextDevV1Response, type EditFluxKontextDevV1ResponseInput, EditFluxKontextDevV1ResponseKind, type EditFluxKontextDevV1ResponseMetadata, EditFluxKontextDevV1ResponseStatus, type EntityEventKeys, type EntityEventPayload, type Flux11ProUltraV1Input, type Flux11ProUltraV1Request, type Flux11ProUltraV1RequestMetadata, type Flux11ProUltraV1Response, type Flux11ProUltraV1ResponseInput, Flux11ProUltraV1ResponseKind, type Flux11ProUltraV1ResponseMetadata, Flux11ProUltraV1ResponseStatus, type GPTV1Input, GPTV1InputModel, type GPTV2AssistantMessageDto, GPTV2AssistantMessageDtoRole, type GPTV2DeveloperMessageDto, GPTV2DeveloperMessageDtoRole, type GPTV2Input, type GPTV2InputMessagesItem, GPTV2InputModel, type GPTV2InputResponseFormat, type GPTV2MessageToolCallDto, type GPTV2MessageToolCallDtoFunction, GPTV2MessageToolCallDtoType, type GPTV2ResponseFormatJsonSchemaDetailsDto, type GPTV2ResponseFormatJsonSchemaDetailsDtoSchema, type GPTV2ResponseFormatJsonSchemaDto, GPTV2ResponseFormatJsonSchemaDtoType, type GPTV2ResponseFormatTextOrObjectDto, GPTV2ResponseFormatTextOrObjectDtoType, type GPTV2SystemMessageDto, GPTV2SystemMessageDtoRole, type GPTV2ToolChoiceDto, GPTV2ToolChoiceDtoType, type GPTV2ToolChoiceFunctionDto, type GPTV2ToolDto, GPTV2ToolDtoType, type GPTV2ToolFunctionDto, type GPTV2ToolFunctionDtoParameters, type GPTV2ToolMessageDto, GPTV2ToolMessageDtoRole, type GPTV2UserMessageDto, GPTV2UserMessageDtoRole, type GPTV3AnnotationDto, GPTV3AnnotationDtoType, type GPTV3AssistantMessageDto, type GPTV3AssistantMessageDtoContent, type GPTV3AssistantMessageDtoContentOneOfItem, GPTV3AssistantMessageDtoRole, GPTV3AssistantMessageDtoType, type GPTV3ContentWithAnnotationsDto, GPTV3ContentWithAnnotationsDtoType, type GPTV3DeveloperMessageDto, type GPTV3DeveloperMessageDtoContent, type GPTV3DeveloperMessageDtoContentOneOfItem, GPTV3DeveloperMessageDtoRole, GPTV3DeveloperMessageDtoType, type GPTV3FileSearchCallDetailsDto, type GPTV3FileSearchCallDetailsDtoFilters, type GPTV3FileSearchCallDetailsDtoRanking, type GPTV3FileSearchCallDto, GPTV3FileSearchCallDtoType, type GPTV3FileSearchFileDto, type GPTV3FileSearchResultDto, type GPTV3FileSearchResultDtoSearchResults, GPTV3FileSearchResultDtoStatus, GPTV3FileSearchResultDtoType, type GPTV3FileSearchResultsDto, type GPTV3FileSearchToolDto, type GPTV3FileSearchToolDtoFilters, type GPTV3FileSearchToolDtoRanking, GPTV3FileSearchToolDtoType, type GPTV3FunctionCallDetailsDto, type GPTV3FunctionCallDto, GPTV3FunctionCallDtoType, type GPTV3FunctionToolDto, type GPTV3FunctionToolDtoParameters, GPTV3FunctionToolDtoType, type GPTV3ImageGenerationCallDto, GPTV3ImageGenerationCallDtoType, type GPTV3ImageGenerationResultDto, type GPTV3ImageGenerationResultDtoMetadata, GPTV3ImageGenerationResultDtoStatus, GPTV3ImageGenerationResultDtoType, type GPTV3ImageGenerationResultsDto, type GPTV3ImageGenerationToolDto, GPTV3ImageGenerationToolDtoQuality, GPTV3ImageGenerationToolDtoSize, GPTV3ImageGenerationToolDtoType, type GPTV3ImageInputDto, GPTV3ImageInputDtoDetail, GPTV3ImageInputDtoType, type GPTV3Input, type GPTV3InputInput, type GPTV3InputInputOneOfItem, GPTV3InputModel, type GPTV3InputToolChoice, type GPTV3InputToolsItem, type GPTV3MessageContentDto, GPTV3MessageContentDtoRole, GPTV3MessageContentDtoType, type GPTV3Output, GPTV3OutputKind, type GPTV3ResponseCodeInterpreterToolCallDto, type GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem, GPTV3ResponseCodeInterpreterToolCallDtoStatus, GPTV3ResponseCodeInterpreterToolCallDtoType, type GPTV3ResponseCodeInterpreterToolCallImageDto, GPTV3ResponseCodeInterpreterToolCallImageDtoType, type GPTV3ResponseCodeInterpreterToolCallLogsDto, GPTV3ResponseCodeInterpreterToolCallLogsDtoType, type GPTV3ResponseComputerToolCallClickDto, GPTV3ResponseComputerToolCallClickDtoButton, GPTV3ResponseComputerToolCallClickDtoType, type GPTV3ResponseComputerToolCallDoubleClickDto, GPTV3ResponseComputerToolCallDoubleClickDtoType, type GPTV3ResponseComputerToolCallDragDto, GPTV3ResponseComputerToolCallDragDtoType, type GPTV3ResponseComputerToolCallDragPathDto, type GPTV3ResponseComputerToolCallDto, type GPTV3ResponseComputerToolCallDtoAction, GPTV3ResponseComputerToolCallDtoStatus, GPTV3ResponseComputerToolCallDtoType, type GPTV3ResponseComputerToolCallKeypressDto, GPTV3ResponseComputerToolCallKeypressDtoType, type GPTV3ResponseComputerToolCallMoveDto, GPTV3ResponseComputerToolCallMoveDtoType, type GPTV3ResponseComputerToolCallPendingSafetyCheckDto, type GPTV3ResponseComputerToolCallScreenshotDto, GPTV3ResponseComputerToolCallScreenshotDtoType, type GPTV3ResponseComputerToolCallScrollDto, GPTV3ResponseComputerToolCallScrollDtoType, type GPTV3ResponseComputerToolCallTypeDto, GPTV3ResponseComputerToolCallTypeDtoType, type GPTV3ResponseComputerToolCallWaitDto, GPTV3ResponseComputerToolCallWaitDtoType, type GPTV3ResponseCustomToolCallDto, GPTV3ResponseCustomToolCallDtoStatus, GPTV3ResponseCustomToolCallDtoType, type GPTV3ResponseCustomToolCallOutputDto, GPTV3ResponseCustomToolCallOutputDtoType, type GPTV3ResponseDto, type GPTV3ResponseDtoContent, GPTV3ResponseDtoFinishReason, type GPTV3ResponseDtoOutputItem, GPTV3ResponseDtoRole, type GPTV3ResponseDtoToolCallsItem, type GPTV3ResponseFileSearchToolCallDto, GPTV3ResponseFileSearchToolCallDtoStatus, GPTV3ResponseFileSearchToolCallDtoType, type GPTV3ResponseFileSearchToolCallResultDto, type GPTV3ResponseFileSearchToolCallResultDtoAttributes, type GPTV3ResponseFormatJsonSchemaDto, type GPTV3ResponseFormatJsonSchemaDtoSchema, GPTV3ResponseFormatJsonSchemaDtoType, type GPTV3ResponseFormatTextDto, GPTV3ResponseFormatTextDtoType, type GPTV3ResponseFunctionToolCallDto, GPTV3ResponseFunctionToolCallDtoStatus, GPTV3ResponseFunctionToolCallDtoType, type GPTV3ResponseFunctionWebSearchDto, GPTV3ResponseFunctionWebSearchDtoStatus, GPTV3ResponseFunctionWebSearchDtoType, type GPTV3ResponseImageGenerationResultsDto, type GPTV3ResponseInputComputerCallOutputAcknowledgedSafetyCheckDto, type GPTV3ResponseInputComputerCallOutputDto, GPTV3ResponseInputComputerCallOutputDtoStatus, GPTV3ResponseInputComputerCallOutputDtoType, type GPTV3ResponseInputComputerCallOutputScreenshotDto, GPTV3ResponseInputComputerCallOutputScreenshotDtoType, type GPTV3ResponseInputFunctionCallOutputDto, GPTV3ResponseInputFunctionCallOutputDtoStatus, GPTV3ResponseInputFunctionCallOutputDtoType, type GPTV3ResponseInputItemImageGenerationCallDto, GPTV3ResponseInputItemImageGenerationCallDtoStatus, GPTV3ResponseInputItemImageGenerationCallDtoType, type GPTV3ResponseInputItemMessage, type GPTV3ResponseInputItemMessageContentItem, GPTV3ResponseInputItemMessageRole, GPTV3ResponseInputItemMessageStatus, GPTV3ResponseInputItemMessageType, type GPTV3ResponseInputItemReferenceDto, GPTV3ResponseInputItemReferenceDtoType, type GPTV3ResponseInputLocalShellCallActionDto, type GPTV3ResponseInputLocalShellCallActionDtoEnv, GPTV3ResponseInputLocalShellCallActionDtoType, type GPTV3ResponseInputLocalShellCallDto, GPTV3ResponseInputLocalShellCallDtoStatus, GPTV3ResponseInputLocalShellCallDtoType, type GPTV3ResponseInputLocalShellCallOutputDto, GPTV3ResponseInputLocalShellCallOutputDtoStatus, GPTV3ResponseInputLocalShellCallOutputDtoType, type GPTV3ResponseInputMcpApprovalRequestDto, GPTV3ResponseInputMcpApprovalRequestDtoType, type GPTV3ResponseInputMcpApprovalResponseDto, GPTV3ResponseInputMcpApprovalResponseDtoType, type GPTV3ResponseInputMcpCallDto, GPTV3ResponseInputMcpCallDtoType, type GPTV3ResponseInputMcpListToolsDto, GPTV3ResponseInputMcpListToolsDtoType, type GPTV3ResponseInputMcpListToolsToolDto, type GPTV3ResponseInputMcpListToolsToolDtoAnnotations, type GPTV3ResponseInputMcpListToolsToolDtoInputSchema, type GPTV3ResponseLocalShellCallActionDto, type GPTV3ResponseLocalShellCallActionDtoEnv, GPTV3ResponseLocalShellCallActionDtoType, type GPTV3ResponseLocalShellCallDto, GPTV3ResponseLocalShellCallDtoStatus, GPTV3ResponseLocalShellCallDtoType, type GPTV3ResponseMcpApprovalRequestDto, GPTV3ResponseMcpApprovalRequestDtoType, type GPTV3ResponseMcpCallDto, GPTV3ResponseMcpCallDtoType, type GPTV3ResponseMcpListToolsDto, GPTV3ResponseMcpListToolsDtoType, type GPTV3ResponseMcpListToolsToolDto, type GPTV3ResponseMcpListToolsToolDtoAnnotations, type GPTV3ResponseMcpListToolsToolDtoInputSchema, type GPTV3ResponseOutputItemImageGenerationCallDto, type GPTV3ResponseOutputItemImageGenerationCallDtoMetadata, GPTV3ResponseOutputItemImageGenerationCallDtoStatus, GPTV3ResponseOutputItemImageGenerationCallDtoType, type GPTV3ResponseOutputMessageDto, type GPTV3ResponseOutputMessageDtoContentItem, GPTV3ResponseOutputMessageDtoRole, type GPTV3ResponseOutputMessageDtoStatus, GPTV3ResponseOutputMessageDtoType, type GPTV3ResponseOutputRefusalDto, GPTV3ResponseOutputRefusalDtoType, type GPTV3ResponseOutputTextContainerFileCitationDto, GPTV3ResponseOutputTextContainerFileCitationDtoType, type GPTV3ResponseOutputTextDto, type GPTV3ResponseOutputTextDtoAnnotationsItem, GPTV3ResponseOutputTextDtoType, type GPTV3ResponseOutputTextFileCitationDto, GPTV3ResponseOutputTextFileCitationDtoType, type GPTV3ResponseOutputTextFilePathDto, GPTV3ResponseOutputTextFilePathDtoType, type GPTV3ResponseOutputTextLogprobDto, type GPTV3ResponseOutputTextLogprobTopLogprobDto, type GPTV3ResponseOutputTextURLCitationDto, GPTV3ResponseOutputTextURLCitationDtoType, type GPTV3ResponseReasoningItemDto, GPTV3ResponseReasoningItemDtoStatus, GPTV3ResponseReasoningItemDtoType, type GPTV3ResponseReasoningItemSummaryDto, GPTV3ResponseReasoningItemSummaryDtoType, type GPTV3SystemMessageDto, type GPTV3SystemMessageDtoContent, type GPTV3SystemMessageDtoContentItemOneOfItem, type GPTV3SystemMessageDtoContentOneOfItem, GPTV3SystemMessageDtoRole, GPTV3SystemMessageDtoType, type GPTV3TextConfigDto, type GPTV3TextConfigDtoFormat, type GPTV3TextInputDto, GPTV3TextInputDtoType, type GPTV3ToolChoiceDto, GPTV3ToolChoiceDtoType, type GPTV3ToolChoiceFunctionDto, type GPTV3ToolDto, GPTV3ToolDtoType, type GPTV3UserMessageDto, type GPTV3UserMessageDtoContent, type GPTV3UserMessageDtoContentOneOfItem, GPTV3UserMessageDtoRole, GPTV3UserMessageDtoType, type GPTV3WebSearchCallDto, GPTV3WebSearchCallDtoType, type GPTV3WebSearchResultDto, GPTV3WebSearchResultDtoStatus, GPTV3WebSearchResultDtoType, type GPTV3WebSearchToolDto, GPTV3WebSearchToolDtoSearchContextSize, GPTV3WebSearchToolDtoType, type GetAccountParamsDto, type GetBalanceParamsDto, type GetCollectionParamsDto, type GetGroupParamsDto, type GetImageParamsDto, type GetImageRepresentationParamsDto, GetImageRepresentationParamsDtoType, type GetOperationParamsDto, type GetOperationsParamsDto, type GetPoseParamsDto, type GetStackParamsDto, type GetStorageRecordParamsDto, type GetUploadedFileUrlResponseDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategory, type GptV1Request, type GptV1RequestMetadata, type GptV1Response, type GptV1ResponseInput, GptV1ResponseKind, type GptV1ResponseMetadata, GptV1ResponseStatus, type GptV2Request, type GptV2RequestMetadata, type GptV2Response, type GptV2ResponseInput, GptV2ResponseKind, type GptV2ResponseMetadata, GptV2ResponseStatus, type GptV3Request, type GptV3RequestMetadata, type GptV3Response, type GptV3ResponseInput, GptV3ResponseKind, type GptV3ResponseMetadata, GptV3ResponseStatus, type GrantAccessControllerParams, GrantAccessControllerParamsAccess, GrantAccessControllerParamsPrincipalType, type GroupEntity, type HauteLindaV1Request, type HauteLindaV1RequestMetadata, type HauteLindaV1Response, type HauteLindaV1ResponseInput, HauteLindaV1ResponseKind, type HauteLindaV1ResponseMetadata, HauteLindaV1ResponseStatus, type HauteNaomiV1Request, type HauteNaomiV1RequestMetadata, type HauteNaomiV1Response, type HauteNaomiV1ResponseInput, HauteNaomiV1ResponseKind, type HauteNaomiV1ResponseMetadata, HauteNaomiV1ResponseStatus, type IdeogramCharacterV1Input, type IdeogramCharacterV1Request, type IdeogramCharacterV1RequestMetadata, type IdeogramCharacterV1Response, type IdeogramCharacterV1ResponseInput, IdeogramCharacterV1ResponseKind, type IdeogramCharacterV1ResponseMetadata, IdeogramCharacterV1ResponseStatus, type ImageEntity, ImageEntityKind, type ImageEntityMetadata, type ImageRepresentationResponseDto, type ImageUrlResponseDto, type Imagen4Input, Imagen4InputAspectRatio, Imagen4InputSafetyFilterLevel, type Imagen4V1Request, type Imagen4V1RequestMetadata, type Imagen4V1Response, type Imagen4V1ResponseInput, Imagen4V1ResponseKind, type Imagen4V1ResponseMetadata, Imagen4V1ResponseStatus, type ImagineFlux11ProUltraV1Request, type ImagineFlux11ProUltraV1RequestMetadata, type ImagineFlux11ProUltraV1Response, type ImagineFlux11ProUltraV1ResponseInput, ImagineFlux11ProUltraV1ResponseKind, type ImagineFlux11ProUltraV1ResponseMetadata, ImagineFlux11ProUltraV1ResponseStatus, type ImagineKateV1Request, type ImagineKateV1RequestMetadata, type ImagineKateV1Response, type ImagineKateV1ResponseInput, ImagineKateV1ResponseKind, type ImagineKateV1ResponseMetadata, ImagineKateV1ResponseStatus, type InitializeGenericUploadParamsDto, type InitializeGenericUploadResponseDto, type InitializeImageUploadResultDto, type InpaintKateV1Request, type InpaintKateV1RequestMetadata, type InpaintKateV1Response, type InpaintKateV1ResponseInput, InpaintKateV1ResponseKind, type InpaintKateV1ResponseMetadata, InpaintKateV1ResponseStatus, type KateImagineV1Input, KateImagineV1InputAspectRatio, type KateInpaintV1Input, KateInpaintV1InputBranch, type LindaHauteV1Input, LindaHauteV1InputAspectRatio, type ListAccessControllerAttachmentsDto, type ListAccessControllerDto, type ListAccessControllerGrantsDto, ListAccessControllerGrantsDtoAccess, type ListAccountsDto, type ListAccountsParamsDto, ListAccountsParamsDtoOrderBy, type ListCollectionItemsDto, type ListCollectionItemsParamsDto, ListCollectionItemsParamsDtoKind, ListCollectionItemsParamsDtoOrderBy, type ListCollectionsDto, type ListCollectionsParamsDto, ListCollectionsParamsDtoOrderBy, type ListLorasDto, type ListOperationsDto, type ListOperationsParamsDto, ListOperationsParamsDtoOrderBy, type ListPipelinesDto, type ListPosesDto, type ListPosesParamsDto, ListPosesParamsDtoOrderBy, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderBy, type ListWorkflowsDto, type LoraControllerGetV1200, LoraControllerListV1OrderBy, type LoraControllerListV1Params, LoraControllerListV1Status, type LoraDto, type LoraDtoInput, type LoraDtoOutput, LoraDtoStatus, type LoraWebhookDto, type LoraWebhookDtoInput, type LoraWebhookDtoMetrics, type LoraWebhookDtoOutput, LoraWebhookDtoStatus, type LoraWebhookDtoUrls, type LumaPhotonV1Input, LumaPhotonV1InputAspectRatio, type LumaPhotonV1Request, type LumaPhotonV1RequestMetadata, type LumaPhotonV1Response, type LumaPhotonV1ResponseInput, LumaPhotonV1ResponseKind, type LumaPhotonV1ResponseMetadata, LumaPhotonV1ResponseStatus, type MathV1Input, type MathV1InputInput, type MathV1Request, type MathV1RequestMetadata, type MathV1Response, type MathV1ResponseInput, MathV1ResponseKind, type MathV1ResponseMetadata, MathV1ResponseStatus, type MethodsPermissions, type ModifyAccessParamsDto, ModifyAccessParamsDtoAccess, ModifyAccessParamsDtoPrincipalType, type NaomiHauteV1Input, NaomiHauteV1InputMode, type NegateImageV1Input, type NegateImageV1Request, type NegateImageV1RequestMetadata, type NegateImageV1Response, type NegateImageV1ResponseInput, NegateImageV1ResponseKind, type NegateImageV1ResponseMetadata, NegateImageV1ResponseStatus, type NoiseV1Input, type NoiseV1Request, type NoiseV1RequestMetadata, type NoiseV1Response, type NoiseV1ResponseInput, NoiseV1ResponseKind, type NoiseV1ResponseMetadata, NoiseV1ResponseStatus, type ObjectDetectionV1Input, type ObjectDetectionV1Output, ObjectDetectionV1OutputKind, type ObjectDetectionV1Request, type ObjectDetectionV1RequestMetadata, type ObjectDetectionV1Response, type ObjectDetectionV1ResponseInput, ObjectDetectionV1ResponseKind, type ObjectDetectionV1ResponseMetadata, ObjectDetectionV1ResponseStatus, type OneCompilerV1Input, type OneCompilerV1InputInput, OneCompilerV1InputLanguage, type OnecompilerV1Output, type OnecompilerV1OutputData, type OnecompilerV1OutputDataResult, type OnecompilerV1OutputDataResultOneOf, OnecompilerV1OutputKind, type OnecompilerV1Request, type OnecompilerV1RequestMetadata, type OnecompilerV1Response, type OnecompilerV1ResponseInput, OnecompilerV1ResponseKind, type OnecompilerV1ResponseMetadata, OnecompilerV1ResponseStatus, type OperationEntity, type OperationEntityInput, OperationEntityKind, type OperationEntityMetadata, type OperationEntityOutput, OperationEntityStatus, type OperationOutputImageMultiple, OperationOutputImageMultipleKind, type OperationOutputImageSingle, OperationOutputImageSingleKind, type OperationOutputJSON, type OperationOutputJSONData, type OperationOutputJSONDataOneOf, OperationOutputJSONKind, type OperationOutputTextSingle, OperationOutputTextSingleKind, type OperationOutputVideoSingle, OperationOutputVideoSingleKind, OperationsControllerListOperationsV1OrderBy, type OperationsControllerListOperationsV1Params, type PageInfoDto, type PipelineDto, type PipelineDtoInput, PipelineDtoKind, type PipelineDtoMetadata, type PipelineDtoOutput, type PipelineDtoState, type PipelineDtoStateOutput, PipelineDtoStateStatus, PipelineDtoStatus, type PipelineMapV1Input, type PipelineMapV1InputInputItem, type PipelineMapV1Request, type PipelineMapV1RequestMetadata, type PipelineMapV1Response, type PipelineMapV1ResponseInput, PipelineMapV1ResponseKind, type PipelineMapV1ResponseMetadata, PipelineMapV1ResponseStatus, type PipelinePreviewDto, PipelinePreviewDtoKind, type PipelinePreviewDtoMetadata, PipelinePreviewDtoStatus, type PipelineSDK, type PipelinesControllerCountPipelinesV1Params, PipelinesControllerCountPipelinesV1Status, PipelinesControllerListPipelinesV1OrderBy, type PipelinesControllerListPipelinesV1Params, PipelinesControllerListPipelinesV1Status, type PoseEntity, PoseEntityKind, type PoseEntityMetadata, type PoseEstimationV1Input, type PoseEstimationV1Output, type PoseEstimationV1OutputData, PoseEstimationV1OutputKind, type PoseEstimationV1Request, type PoseEstimationV1RequestMetadata, type PoseEstimationV1Response, type PoseEstimationV1ResponseInput, PoseEstimationV1ResponseKind, type PoseEstimationV1ResponseMetadata, PoseEstimationV1ResponseStatus, PosesControllerListPosesV1OrderBy, type PosesControllerListPosesV1Params, type RemoveAccountFromGroupControllerParamsDto, RemoveAccountFromGroupControllerParamsDtoRole, type RemoveAccountFromGroupParamsDto, RemoveAccountFromGroupParamsDtoRole, type RemoveItemsFromCollectionControllerParamsDto, type RemoveItemsFromCollectionParamsDto, type RemoveItemsFromStackParamsDto, type ResizeV1Input, type ResizeV1Request, type ResizeV1RequestMetadata, type ResizeV1Response, type ResizeV1ResponseInput, ResizeV1ResponseKind, type ResizeV1ResponseMetadata, ResizeV1ResponseStatus, type ResourceEntity, ResourceEntityKind, type ResourceEntityMetadata, type RevokeAccessControllerParamsDto, RevokeAccessControllerParamsDtoAccess, RevokeAccessControllerParamsDtoPrincipalType, type RunWorkflowParamsDto, type RunWorkflowParamsDtoInput, type RunWorkflowParamsDtoMetadata, type RunWorkflowResponseDto, type SDK, type SDKOptions, type Seedream3V1Input, Seedream3V1InputAspectRatio, Seedream3V1InputSize, type Seedream3V1Request, type Seedream3V1RequestMetadata, type Seedream3V1Response, type Seedream3V1ResponseInput, Seedream3V1ResponseKind, type Seedream3V1ResponseMetadata, Seedream3V1ResponseStatus, type SegmentAnythingEmbeddingsV1Input, type SegmentAnythingEmbeddingsV1Request, type SegmentAnythingEmbeddingsV1RequestMetadata, type SegmentAnythingEmbeddingsV1Response, type SegmentAnythingEmbeddingsV1ResponseInput, SegmentAnythingEmbeddingsV1ResponseKind, type SegmentAnythingEmbeddingsV1ResponseMetadata, SegmentAnythingEmbeddingsV1ResponseStatus, type SegmentAnythingMaskV1Input, type SegmentAnythingMaskV1Request, type SegmentAnythingMaskV1RequestMetadata, type SegmentAnythingMaskV1Response, type SegmentAnythingMaskV1ResponseInput, SegmentAnythingMaskV1ResponseKind, type SegmentAnythingMaskV1ResponseMetadata, SegmentAnythingMaskV1ResponseStatus, type SelfAccountDto, type SelfAccountDtoPermissions, SelfAccountDtoType, type SetPosePreviewControllerParamsDto, type SetPosePreviewDto, type StackEntity, type StackEntityItemsItem, StackEntityKind, type StackEntityMetadata, StacksControllerListStacksV1OrderBy, type StacksControllerListStacksV1Params, type StartLoraTrainingParamsDto, type StorageEntity, StorageEntityKind, type StorageEntityMetadata, type StorageEntityValue, type StorageRecordsResultDto, type StorageRecordsResultDtoValue, type StorageRecordsResultDtoValueOneOf, type StringsTemplateV1Input, type StringsTemplateV1Request, type StringsTemplateV1RequestMetadata, type StringsTemplateV1Response, type StringsTemplateV1ResponseInput, StringsTemplateV1ResponseKind, type StringsTemplateV1ResponseMetadata, StringsTemplateV1ResponseStatus, type SubscribePayload, type SupportFile, type TaskDto, type TaskDtoArgsItem, type TaskDtoArgsItemOneOf, type TopazUpscaleV1Input, TopazUpscaleV1InputEnhanceModel, TopazUpscaleV1InputSubjectDetection, TopazUpscaleV1InputUpscaleFactor, type TopazUpscaleV1Request, type TopazUpscaleV1RequestMetadata, type TopazUpscaleV1Response, type TopazUpscaleV1ResponseInput, TopazUpscaleV1ResponseKind, type TopazUpscaleV1ResponseMetadata, TopazUpscaleV1ResponseStatus, type TranslateV1Input, type TranslateV1Output, type TranslateV1OutputData, TranslateV1OutputKind, type TranslateV1Request, type TranslateV1RequestMetadata, type TranslateV1Response, type TranslateV1ResponseInput, TranslateV1ResponseKind, type TranslateV1ResponseMetadata, TranslateV1ResponseStatus, type UpdateAccountControllerParamsDto, type UpdateAccountParamsDto, type UpdateMetadataDto, type UpdateMetadataDtoOverwrite, type UpdateResourceMetadataDto, type UpdateStorageRecordParamsDto, type UpdateStorageRecordParamsDtoValue, type UpdateStorageRecordParamsDtoValueOneOf, type UpdateWorkflowParamsDto, type UpdateWorkflowParamsDtoData, type UpdateWorkflowParamsDtoMetadata, type UploadControllerGetUploadedFileUrlV1Params, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1RequestMetadata, type UpscaleV1Response, type UpscaleV1ResponseInput, UpscaleV1ResponseKind, type UpscaleV1ResponseMetadata, UpscaleV1ResponseStatus, type VariableDto, type Veo3FastV1Request, type Veo3FastV1RequestMetadata, type Veo3FastV1Response, type Veo3FastV1ResponseInput, Veo3FastV1ResponseKind, type Veo3FastV1ResponseMetadata, Veo3FastV1ResponseStatus, type Veo3V1Input, Veo3V1InputResolution, type Veo3V1Request, type Veo3V1RequestMetadata, type Veo3V1Response, type Veo3V1ResponseInput, Veo3V1ResponseKind, type Veo3V1ResponseMetadata, Veo3V1ResponseStatus, type VideoEntity, VideoEntityKind, type VideoEntityMetadata, type VideoUrlResponseDto, type VideosControllerGetVideosV1Params, type VtonGiseleV1Request, type VtonGiseleV1RequestMetadata, type VtonGiseleV1Response, type VtonGiseleV1ResponseInput, VtonGiseleV1ResponseKind, type VtonGiseleV1ResponseMetadata, VtonGiseleV1ResponseStatus, type WaitOperationParamsDto, type WorkflowDto, type WorkflowDtoData, type WorkflowDtoMetadata, WorkflowsControllerListWorkflowsV1OrderBy, type WorkflowsControllerListWorkflowsV1Params, type WsEventEntity, type WsEventMap, createSDK, createTokenSigner };
12063
+ export { type AccountEntity, AccountEntityType, AccountsControllerListAccountsV1OrderBy, type AccountsControllerListAccountsV1Params, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRole, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRole, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddChatItemsDto, type AddChatItemsDtoItemsItem, type AddItemsToCollectionControllerParamsDto, type AddItemsToCollectionParamsDto, type AddItemsToStackControllerParamsDto, type AddItemsToStackParamsDto, type AnimateCreatomateV1Input, type AnimateCreatomateV1InputTemplate, type AnimateCreatomateV1InputTemplateOneOf, type AnimateCreatomateV1Request, type AnimateCreatomateV1RequestMetadata, type AnimateCreatomateV1Response, type AnimateCreatomateV1ResponseInput, AnimateCreatomateV1ResponseKind, type AnimateCreatomateV1ResponseMetadata, AnimateCreatomateV1ResponseStatus, type AnimateKling16ProV1Input, AnimateKling16ProV1InputAspectRatio, AnimateKling16ProV1InputDuration, type AnimateKling16ProV1Request, type AnimateKling16ProV1RequestMetadata, type AnimateKling16ProV1Response, type AnimateKling16ProV1ResponseInput, AnimateKling16ProV1ResponseKind, type AnimateKling16ProV1ResponseMetadata, AnimateKling16ProV1ResponseStatus, type AnimateKling21V1Input, AnimateKling21V1InputDuration, type AnimateKling21V1Request, type AnimateKling21V1RequestMetadata, type AnimateKling21V1Response, type AnimateKling21V1ResponseInput, AnimateKling21V1ResponseKind, type AnimateKling21V1ResponseMetadata, AnimateKling21V1ResponseStatus, type ApiDefinitionTree, type AttachAccessControllerParamsDto, type AttachAccessParamsDto, type BalanceResultDto, type BaseWsEvent, type BaseWsEventType, ChatControllerListChatsV1OrderBy, type ChatControllerListChatsV1Params, type ChatDto, type ChatDtoItemsItem, type ChatParametersDto, type ChatParametersDtoResponseFormat, type CollectionEntity, CollectionEntityKind, type CollectionEntityMetadata, CollectionsControllerListCollectionsV1OrderBy, type CollectionsControllerListCollectionsV1Params, CollectionsControllerListItemsV1Kind, CollectionsControllerListItemsV1OrderBy, type CollectionsControllerListItemsV1Params, type CompositeElement, CompositeElementBlend, CompositeElementFit, type CompositeV1Input, type CompositeV1Request, type CompositeV1RequestMetadata, type CompositeV1Response, type CompositeV1ResponseInput, CompositeV1ResponseKind, type CompositeV1ResponseMetadata, CompositeV1ResponseStatus, type ContrastV1Input, type ContrastV1Request, type ContrastV1RequestMetadata, type ContrastV1Response, type ContrastV1ResponseInput, ContrastV1ResponseKind, type ContrastV1ResponseMetadata, ContrastV1ResponseStatus, type CountPipelinesResultDto, type CreateAccountParamsDto, type CreateChatParamsDto, type CreateCollectionParamsDto, type CreateCollectionParamsDtoMetadata, type CreateImageParamsDto, type CreatePipelineParamsDto, type CreatePipelineParamsDtoMetadata, type CreatePipelineParamsDtoOutputRef, type CreatePipelineParamsDtoPipelineInput, type CreatePipelineParamsDtoState, type CreatePipelineTaskDto, type CreatePipelineTaskDtoArgsItem, type CreatePipelineTaskDtoArgsItemOneOf, type CreateStackParamsDto, type CreateStackParamsDtoMetadata, type CreateStorageRecordParamsDto, type CreateStorageRecordParamsDtoValue, type CreateStorageRecordParamsDtoValueOneOf, type CreateVideoParamsDto, type CreateWorkflowParamsDto, type CreateWorkflowParamsDtoData, type CreateWorkflowParamsDtoMetadata, type CropV1Input, type CropV1Request, type CropV1RequestMetadata, type CropV1Response, type CropV1ResponseInput, CropV1ResponseKind, type CropV1ResponseMetadata, CropV1ResponseStatus, type CutV1Input, type CutV1Request, type CutV1RequestMetadata, type CutV1Response, type CutV1ResponseInput, CutV1ResponseKind, type CutV1ResponseMetadata, CutV1ResponseStatus, type Decimal, type DeepWrap, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type EchoV1Input, type EchoV1Request, type EchoV1RequestMetadata, type EchoV1Response, type EchoV1ResponseInput, EchoV1ResponseKind, type EchoV1ResponseMetadata, EchoV1ResponseStatus, type EditFluxKontextDevV1Input, type EditFluxKontextDevV1Request, type EditFluxKontextDevV1RequestMetadata, type EditFluxKontextDevV1Response, type EditFluxKontextDevV1ResponseInput, EditFluxKontextDevV1ResponseKind, type EditFluxKontextDevV1ResponseMetadata, EditFluxKontextDevV1ResponseStatus, type EntityEventKeys, type EntityEventPayload, type Flux11ProUltraV1Input, type Flux11ProUltraV1Request, type Flux11ProUltraV1RequestMetadata, type Flux11ProUltraV1Response, type Flux11ProUltraV1ResponseInput, Flux11ProUltraV1ResponseKind, type Flux11ProUltraV1ResponseMetadata, Flux11ProUltraV1ResponseStatus, type GPTV1Input, GPTV1InputModel, type GPTV2AssistantMessageDto, GPTV2AssistantMessageDtoRole, type GPTV2DeveloperMessageDto, GPTV2DeveloperMessageDtoRole, type GPTV2Input, type GPTV2InputMessagesItem, GPTV2InputModel, type GPTV2InputResponseFormat, type GPTV2MessageToolCallDto, type GPTV2MessageToolCallDtoFunction, GPTV2MessageToolCallDtoType, type GPTV2ResponseFormatJsonSchemaDetailsDto, type GPTV2ResponseFormatJsonSchemaDetailsDtoSchema, type GPTV2ResponseFormatJsonSchemaDto, GPTV2ResponseFormatJsonSchemaDtoType, type GPTV2ResponseFormatTextOrObjectDto, GPTV2ResponseFormatTextOrObjectDtoType, type GPTV2SystemMessageDto, GPTV2SystemMessageDtoRole, type GPTV2ToolChoiceDto, GPTV2ToolChoiceDtoType, type GPTV2ToolChoiceFunctionDto, type GPTV2ToolDto, GPTV2ToolDtoType, type GPTV2ToolFunctionDto, type GPTV2ToolFunctionDtoParameters, type GPTV2ToolMessageDto, GPTV2ToolMessageDtoRole, type GPTV2UserMessageDto, GPTV2UserMessageDtoRole, type GPTV3AnnotationDto, GPTV3AnnotationDtoType, type GPTV3AssistantMessageDto, type GPTV3AssistantMessageDtoContent, type GPTV3AssistantMessageDtoContentOneOfItem, GPTV3AssistantMessageDtoRole, GPTV3AssistantMessageDtoType, type GPTV3ContentWithAnnotationsDto, GPTV3ContentWithAnnotationsDtoType, type GPTV3DeveloperMessageDto, type GPTV3DeveloperMessageDtoContent, type GPTV3DeveloperMessageDtoContentOneOfItem, GPTV3DeveloperMessageDtoRole, GPTV3DeveloperMessageDtoType, type GPTV3FileSearchCallDetailsDto, type GPTV3FileSearchCallDetailsDtoFilters, type GPTV3FileSearchCallDetailsDtoRanking, type GPTV3FileSearchCallDto, GPTV3FileSearchCallDtoType, type GPTV3FileSearchFileDto, type GPTV3FileSearchResultDto, type GPTV3FileSearchResultDtoSearchResults, GPTV3FileSearchResultDtoStatus, GPTV3FileSearchResultDtoType, type GPTV3FileSearchResultsDto, type GPTV3FileSearchToolDto, type GPTV3FileSearchToolDtoFilters, type GPTV3FileSearchToolDtoRanking, GPTV3FileSearchToolDtoType, type GPTV3FunctionCallDetailsDto, type GPTV3FunctionCallDto, GPTV3FunctionCallDtoType, type GPTV3FunctionToolDto, type GPTV3FunctionToolDtoParameters, GPTV3FunctionToolDtoType, type GPTV3ImageGenerationCallDto, GPTV3ImageGenerationCallDtoType, type GPTV3ImageGenerationResultDto, type GPTV3ImageGenerationResultDtoMetadata, GPTV3ImageGenerationResultDtoStatus, GPTV3ImageGenerationResultDtoType, type GPTV3ImageGenerationResultsDto, type GPTV3ImageGenerationToolDto, GPTV3ImageGenerationToolDtoQuality, GPTV3ImageGenerationToolDtoSize, GPTV3ImageGenerationToolDtoType, type GPTV3ImageInputDto, GPTV3ImageInputDtoDetail, GPTV3ImageInputDtoType, type GPTV3Input, type GPTV3InputInput, type GPTV3InputInputOneOfItem, GPTV3InputModel, type GPTV3InputToolChoice, type GPTV3InputToolsItem, type GPTV3MessageContentDto, GPTV3MessageContentDtoRole, GPTV3MessageContentDtoType, type GPTV3Output, GPTV3OutputKind, type GPTV3ResponseCodeInterpreterToolCallDto, type GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem, GPTV3ResponseCodeInterpreterToolCallDtoStatus, GPTV3ResponseCodeInterpreterToolCallDtoType, type GPTV3ResponseCodeInterpreterToolCallImageDto, GPTV3ResponseCodeInterpreterToolCallImageDtoType, type GPTV3ResponseCodeInterpreterToolCallLogsDto, GPTV3ResponseCodeInterpreterToolCallLogsDtoType, type GPTV3ResponseComputerToolCallClickDto, GPTV3ResponseComputerToolCallClickDtoButton, GPTV3ResponseComputerToolCallClickDtoType, type GPTV3ResponseComputerToolCallDoubleClickDto, GPTV3ResponseComputerToolCallDoubleClickDtoType, type GPTV3ResponseComputerToolCallDragDto, GPTV3ResponseComputerToolCallDragDtoType, type GPTV3ResponseComputerToolCallDragPathDto, type GPTV3ResponseComputerToolCallDto, type GPTV3ResponseComputerToolCallDtoAction, GPTV3ResponseComputerToolCallDtoStatus, GPTV3ResponseComputerToolCallDtoType, type GPTV3ResponseComputerToolCallKeypressDto, GPTV3ResponseComputerToolCallKeypressDtoType, type GPTV3ResponseComputerToolCallMoveDto, GPTV3ResponseComputerToolCallMoveDtoType, type GPTV3ResponseComputerToolCallPendingSafetyCheckDto, type GPTV3ResponseComputerToolCallScreenshotDto, GPTV3ResponseComputerToolCallScreenshotDtoType, type GPTV3ResponseComputerToolCallScrollDto, GPTV3ResponseComputerToolCallScrollDtoType, type GPTV3ResponseComputerToolCallTypeDto, GPTV3ResponseComputerToolCallTypeDtoType, type GPTV3ResponseComputerToolCallWaitDto, GPTV3ResponseComputerToolCallWaitDtoType, type GPTV3ResponseCustomToolCallDto, GPTV3ResponseCustomToolCallDtoStatus, GPTV3ResponseCustomToolCallDtoType, type GPTV3ResponseCustomToolCallOutputDto, GPTV3ResponseCustomToolCallOutputDtoType, type GPTV3ResponseDto, type GPTV3ResponseDtoContent, GPTV3ResponseDtoFinishReason, type GPTV3ResponseDtoOutputItem, GPTV3ResponseDtoRole, type GPTV3ResponseDtoToolCallsItem, type GPTV3ResponseFileSearchToolCallDto, GPTV3ResponseFileSearchToolCallDtoStatus, GPTV3ResponseFileSearchToolCallDtoType, type GPTV3ResponseFileSearchToolCallResultDto, type GPTV3ResponseFileSearchToolCallResultDtoAttributes, type GPTV3ResponseFormatJsonSchemaDto, type GPTV3ResponseFormatJsonSchemaDtoSchema, GPTV3ResponseFormatJsonSchemaDtoType, type GPTV3ResponseFormatTextDto, GPTV3ResponseFormatTextDtoType, type GPTV3ResponseFunctionToolCallDto, GPTV3ResponseFunctionToolCallDtoStatus, GPTV3ResponseFunctionToolCallDtoType, type GPTV3ResponseFunctionWebSearchDto, GPTV3ResponseFunctionWebSearchDtoStatus, GPTV3ResponseFunctionWebSearchDtoType, type GPTV3ResponseImageGenerationResultsDto, type GPTV3ResponseInputComputerCallOutputAcknowledgedSafetyCheckDto, type GPTV3ResponseInputComputerCallOutputDto, GPTV3ResponseInputComputerCallOutputDtoStatus, GPTV3ResponseInputComputerCallOutputDtoType, type GPTV3ResponseInputComputerCallOutputScreenshotDto, GPTV3ResponseInputComputerCallOutputScreenshotDtoType, type GPTV3ResponseInputFunctionCallOutputDto, GPTV3ResponseInputFunctionCallOutputDtoStatus, GPTV3ResponseInputFunctionCallOutputDtoType, type GPTV3ResponseInputItemImageGenerationCallDto, GPTV3ResponseInputItemImageGenerationCallDtoStatus, GPTV3ResponseInputItemImageGenerationCallDtoType, type GPTV3ResponseInputItemMessage, type GPTV3ResponseInputItemMessageContentItem, GPTV3ResponseInputItemMessageRole, GPTV3ResponseInputItemMessageStatus, GPTV3ResponseInputItemMessageType, type GPTV3ResponseInputItemReferenceDto, GPTV3ResponseInputItemReferenceDtoType, type GPTV3ResponseInputLocalShellCallActionDto, type GPTV3ResponseInputLocalShellCallActionDtoEnv, GPTV3ResponseInputLocalShellCallActionDtoType, type GPTV3ResponseInputLocalShellCallDto, GPTV3ResponseInputLocalShellCallDtoStatus, GPTV3ResponseInputLocalShellCallDtoType, type GPTV3ResponseInputLocalShellCallOutputDto, GPTV3ResponseInputLocalShellCallOutputDtoStatus, GPTV3ResponseInputLocalShellCallOutputDtoType, type GPTV3ResponseInputMcpApprovalRequestDto, GPTV3ResponseInputMcpApprovalRequestDtoType, type GPTV3ResponseInputMcpApprovalResponseDto, GPTV3ResponseInputMcpApprovalResponseDtoType, type GPTV3ResponseInputMcpCallDto, GPTV3ResponseInputMcpCallDtoType, type GPTV3ResponseInputMcpListToolsDto, GPTV3ResponseInputMcpListToolsDtoType, type GPTV3ResponseInputMcpListToolsToolDto, type GPTV3ResponseInputMcpListToolsToolDtoAnnotations, type GPTV3ResponseInputMcpListToolsToolDtoInputSchema, type GPTV3ResponseLocalShellCallActionDto, type GPTV3ResponseLocalShellCallActionDtoEnv, GPTV3ResponseLocalShellCallActionDtoType, type GPTV3ResponseLocalShellCallDto, GPTV3ResponseLocalShellCallDtoStatus, GPTV3ResponseLocalShellCallDtoType, type GPTV3ResponseMcpApprovalRequestDto, GPTV3ResponseMcpApprovalRequestDtoType, type GPTV3ResponseMcpCallDto, GPTV3ResponseMcpCallDtoType, type GPTV3ResponseMcpListToolsDto, GPTV3ResponseMcpListToolsDtoType, type GPTV3ResponseMcpListToolsToolDto, type GPTV3ResponseMcpListToolsToolDtoAnnotations, type GPTV3ResponseMcpListToolsToolDtoInputSchema, type GPTV3ResponseOutputItemImageGenerationCallDto, type GPTV3ResponseOutputItemImageGenerationCallDtoMetadata, GPTV3ResponseOutputItemImageGenerationCallDtoStatus, GPTV3ResponseOutputItemImageGenerationCallDtoType, type GPTV3ResponseOutputMessageDto, type GPTV3ResponseOutputMessageDtoContentItem, GPTV3ResponseOutputMessageDtoRole, type GPTV3ResponseOutputMessageDtoStatus, GPTV3ResponseOutputMessageDtoType, type GPTV3ResponseOutputRefusalDto, GPTV3ResponseOutputRefusalDtoType, type GPTV3ResponseOutputTextContainerFileCitationDto, GPTV3ResponseOutputTextContainerFileCitationDtoType, type GPTV3ResponseOutputTextDto, type GPTV3ResponseOutputTextDtoAnnotationsItem, GPTV3ResponseOutputTextDtoType, type GPTV3ResponseOutputTextFileCitationDto, GPTV3ResponseOutputTextFileCitationDtoType, type GPTV3ResponseOutputTextFilePathDto, GPTV3ResponseOutputTextFilePathDtoType, type GPTV3ResponseOutputTextLogprobDto, type GPTV3ResponseOutputTextLogprobTopLogprobDto, type GPTV3ResponseOutputTextURLCitationDto, GPTV3ResponseOutputTextURLCitationDtoType, type GPTV3ResponseReasoningItemDto, GPTV3ResponseReasoningItemDtoStatus, GPTV3ResponseReasoningItemDtoType, type GPTV3ResponseReasoningItemSummaryDto, GPTV3ResponseReasoningItemSummaryDtoType, type GPTV3SystemMessageDto, type GPTV3SystemMessageDtoContent, type GPTV3SystemMessageDtoContentItemOneOfItem, type GPTV3SystemMessageDtoContentOneOfItem, GPTV3SystemMessageDtoRole, GPTV3SystemMessageDtoType, type GPTV3TextConfigDto, type GPTV3TextConfigDtoFormat, type GPTV3TextInputDto, GPTV3TextInputDtoType, type GPTV3ToolChoiceDto, GPTV3ToolChoiceDtoType, type GPTV3ToolChoiceFunctionDto, type GPTV3ToolDto, GPTV3ToolDtoType, type GPTV3UserMessageDto, type GPTV3UserMessageDtoContent, type GPTV3UserMessageDtoContentOneOfItem, GPTV3UserMessageDtoRole, GPTV3UserMessageDtoType, type GPTV3WebSearchCallDto, GPTV3WebSearchCallDtoType, type GPTV3WebSearchResultDto, GPTV3WebSearchResultDtoStatus, GPTV3WebSearchResultDtoType, type GPTV3WebSearchToolDto, GPTV3WebSearchToolDtoSearchContextSize, GPTV3WebSearchToolDtoType, type GetAccountParamsDto, type GetBalanceParamsDto, type GetCollectionParamsDto, type GetGroupParamsDto, type GetImageParamsDto, type GetImageRepresentationParamsDto, GetImageRepresentationParamsDtoType, type GetOperationParamsDto, type GetOperationsParamsDto, type GetPoseParamsDto, type GetStackParamsDto, type GetStorageRecordParamsDto, type GetUploadedFileUrlResponseDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategory, type GoogleNanoBananaV1Input, type GoogleNanoBananaV1Request, type GoogleNanoBananaV1RequestMetadata, type GoogleNanoBananaV1Response, type GoogleNanoBananaV1ResponseInput, GoogleNanoBananaV1ResponseKind, type GoogleNanoBananaV1ResponseMetadata, GoogleNanoBananaV1ResponseStatus, type GptV1Request, type GptV1RequestMetadata, type GptV1Response, type GptV1ResponseInput, GptV1ResponseKind, type GptV1ResponseMetadata, GptV1ResponseStatus, type GptV2Request, type GptV2RequestMetadata, type GptV2Response, type GptV2ResponseInput, GptV2ResponseKind, type GptV2ResponseMetadata, GptV2ResponseStatus, type GptV3Request, type GptV3RequestMetadata, type GptV3Response, type GptV3ResponseInput, GptV3ResponseKind, type GptV3ResponseMetadata, GptV3ResponseStatus, type GrantAccessControllerParams, GrantAccessControllerParamsAccess, GrantAccessControllerParamsPrincipalType, type GroupEntity, type HauteLindaV1Request, type HauteLindaV1RequestMetadata, type HauteLindaV1Response, type HauteLindaV1ResponseInput, HauteLindaV1ResponseKind, type HauteLindaV1ResponseMetadata, HauteLindaV1ResponseStatus, type HauteNaomiV1Request, type HauteNaomiV1RequestMetadata, type HauteNaomiV1Response, type HauteNaomiV1ResponseInput, HauteNaomiV1ResponseKind, type HauteNaomiV1ResponseMetadata, HauteNaomiV1ResponseStatus, type IdeogramCharacterV1Input, type IdeogramCharacterV1Request, type IdeogramCharacterV1RequestMetadata, type IdeogramCharacterV1Response, type IdeogramCharacterV1ResponseInput, IdeogramCharacterV1ResponseKind, type IdeogramCharacterV1ResponseMetadata, IdeogramCharacterV1ResponseStatus, type ImageEntity, ImageEntityKind, type ImageEntityMetadata, type ImageRepresentationResponseDto, type ImageUrlResponseDto, type Imagen4Input, Imagen4InputAspectRatio, Imagen4InputSafetyFilterLevel, type Imagen4V1Request, type Imagen4V1RequestMetadata, type Imagen4V1Response, type Imagen4V1ResponseInput, Imagen4V1ResponseKind, type Imagen4V1ResponseMetadata, Imagen4V1ResponseStatus, type ImagineFlux11ProUltraV1Request, type ImagineFlux11ProUltraV1RequestMetadata, type ImagineFlux11ProUltraV1Response, type ImagineFlux11ProUltraV1ResponseInput, ImagineFlux11ProUltraV1ResponseKind, type ImagineFlux11ProUltraV1ResponseMetadata, ImagineFlux11ProUltraV1ResponseStatus, type ImagineKateV1Request, type ImagineKateV1RequestMetadata, type ImagineKateV1Response, type ImagineKateV1ResponseInput, ImagineKateV1ResponseKind, type ImagineKateV1ResponseMetadata, ImagineKateV1ResponseStatus, type InitializeGenericUploadParamsDto, type InitializeGenericUploadResponseDto, type InitializeImageUploadResultDto, type InpaintKateV1Request, type InpaintKateV1RequestMetadata, type InpaintKateV1Response, type InpaintKateV1ResponseInput, InpaintKateV1ResponseKind, type InpaintKateV1ResponseMetadata, InpaintKateV1ResponseStatus, type KateImagineV1Input, KateImagineV1InputAspectRatio, type KateInpaintV1Input, KateInpaintV1InputBranch, type LindaHauteV1Input, LindaHauteV1InputAspectRatio, type ListAccessControllerAttachmentsDto, type ListAccessControllerDto, type ListAccessControllerGrantsDto, ListAccessControllerGrantsDtoAccess, type ListAccountsDto, type ListAccountsParamsDto, ListAccountsParamsDtoOrderBy, type ListChatsDto, type ListCollectionItemsDto, type ListCollectionItemsParamsDto, ListCollectionItemsParamsDtoKind, ListCollectionItemsParamsDtoOrderBy, type ListCollectionsDto, type ListCollectionsParamsDto, ListCollectionsParamsDtoOrderBy, type ListLorasDto, type ListOperationsDto, type ListOperationsParamsDto, ListOperationsParamsDtoOrderBy, type ListPipelinesDto, type ListPosesDto, type ListPosesParamsDto, ListPosesParamsDtoOrderBy, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderBy, type ListWorkflowsDto, type LoraControllerGetV1200, LoraControllerListV1OrderBy, type LoraControllerListV1Params, LoraControllerListV1Status, type LoraDto, type LoraDtoInput, type LoraDtoOutput, LoraDtoStatus, type LoraWebhookDto, type LoraWebhookDtoInput, type LoraWebhookDtoMetrics, type LoraWebhookDtoOutput, LoraWebhookDtoStatus, type LoraWebhookDtoUrls, type LumaPhotonV1Input, LumaPhotonV1InputAspectRatio, type LumaPhotonV1Request, type LumaPhotonV1RequestMetadata, type LumaPhotonV1Response, type LumaPhotonV1ResponseInput, LumaPhotonV1ResponseKind, type LumaPhotonV1ResponseMetadata, LumaPhotonV1ResponseStatus, type MathV1Input, type MathV1InputInput, type MathV1Request, type MathV1RequestMetadata, type MathV1Response, type MathV1ResponseInput, MathV1ResponseKind, type MathV1ResponseMetadata, MathV1ResponseStatus, type MethodsPermissions, type ModifyAccessParamsDto, ModifyAccessParamsDtoAccess, ModifyAccessParamsDtoPrincipalType, type NaomiHauteV1Input, NaomiHauteV1InputMode, type NegateImageV1Input, type NegateImageV1Request, type NegateImageV1RequestMetadata, type NegateImageV1Response, type NegateImageV1ResponseInput, NegateImageV1ResponseKind, type NegateImageV1ResponseMetadata, NegateImageV1ResponseStatus, type NoiseV1Input, type NoiseV1Request, type NoiseV1RequestMetadata, type NoiseV1Response, type NoiseV1ResponseInput, NoiseV1ResponseKind, type NoiseV1ResponseMetadata, NoiseV1ResponseStatus, type ObjectDetectionV1Input, type ObjectDetectionV1Output, ObjectDetectionV1OutputKind, type ObjectDetectionV1Request, type ObjectDetectionV1RequestMetadata, type ObjectDetectionV1Response, type ObjectDetectionV1ResponseInput, ObjectDetectionV1ResponseKind, type ObjectDetectionV1ResponseMetadata, ObjectDetectionV1ResponseStatus, type OneCompilerV1Input, type OneCompilerV1InputInput, OneCompilerV1InputLanguage, type OnecompilerV1Output, type OnecompilerV1OutputData, type OnecompilerV1OutputDataResult, type OnecompilerV1OutputDataResultOneOf, OnecompilerV1OutputKind, type OnecompilerV1Request, type OnecompilerV1RequestMetadata, type OnecompilerV1Response, type OnecompilerV1ResponseInput, OnecompilerV1ResponseKind, type OnecompilerV1ResponseMetadata, OnecompilerV1ResponseStatus, type OperationEntity, type OperationEntityInput, OperationEntityKind, type OperationEntityMetadata, type OperationEntityOutput, OperationEntityStatus, type OperationOutputImageMultiple, OperationOutputImageMultipleKind, type OperationOutputImageSingle, OperationOutputImageSingleKind, type OperationOutputJSON, type OperationOutputJSONData, type OperationOutputJSONDataOneOf, OperationOutputJSONKind, type OperationOutputTextSingle, OperationOutputTextSingleKind, type OperationOutputVideoSingle, OperationOutputVideoSingleKind, OperationsControllerListOperationsV1OrderBy, type OperationsControllerListOperationsV1Params, type PageInfoDto, type PipelineDto, type PipelineDtoInput, PipelineDtoKind, type PipelineDtoMetadata, type PipelineDtoOutput, type PipelineDtoState, type PipelineDtoStateOutput, PipelineDtoStateStatus, PipelineDtoStatus, type PipelineMapV1Input, type PipelineMapV1InputInputItem, type PipelineMapV1Request, type PipelineMapV1RequestMetadata, type PipelineMapV1Response, type PipelineMapV1ResponseInput, PipelineMapV1ResponseKind, type PipelineMapV1ResponseMetadata, PipelineMapV1ResponseStatus, type PipelinePreviewDto, PipelinePreviewDtoKind, type PipelinePreviewDtoMetadata, PipelinePreviewDtoStatus, type PipelineSDK, type PipelinesControllerCountPipelinesV1Params, PipelinesControllerCountPipelinesV1Status, PipelinesControllerListPipelinesV1OrderBy, type PipelinesControllerListPipelinesV1Params, PipelinesControllerListPipelinesV1Status, type PoseEntity, PoseEntityKind, type PoseEntityMetadata, type PoseEstimationV1Input, type PoseEstimationV1Output, type PoseEstimationV1OutputData, PoseEstimationV1OutputKind, type PoseEstimationV1Request, type PoseEstimationV1RequestMetadata, type PoseEstimationV1Response, type PoseEstimationV1ResponseInput, PoseEstimationV1ResponseKind, type PoseEstimationV1ResponseMetadata, PoseEstimationV1ResponseStatus, PosesControllerListPosesV1OrderBy, type PosesControllerListPosesV1Params, type RemoveAccountFromGroupControllerParamsDto, RemoveAccountFromGroupControllerParamsDtoRole, type RemoveAccountFromGroupParamsDto, RemoveAccountFromGroupParamsDtoRole, type RemoveItemsFromCollectionControllerParamsDto, type RemoveItemsFromCollectionParamsDto, type RemoveItemsFromStackParamsDto, type ResizeV1Input, type ResizeV1Request, type ResizeV1RequestMetadata, type ResizeV1Response, type ResizeV1ResponseInput, ResizeV1ResponseKind, type ResizeV1ResponseMetadata, ResizeV1ResponseStatus, type ResourceEntity, ResourceEntityKind, type ResourceEntityMetadata, type RevokeAccessControllerParamsDto, RevokeAccessControllerParamsDtoAccess, RevokeAccessControllerParamsDtoPrincipalType, type RunWorkflowParamsDto, type RunWorkflowParamsDtoInput, type RunWorkflowParamsDtoMetadata, type RunWorkflowResponseDto, type SDK, type SDKOptions, type Seedream3V1Input, Seedream3V1InputAspectRatio, Seedream3V1InputSize, type Seedream3V1Request, type Seedream3V1RequestMetadata, type Seedream3V1Response, type Seedream3V1ResponseInput, Seedream3V1ResponseKind, type Seedream3V1ResponseMetadata, Seedream3V1ResponseStatus, type SegmentAnythingEmbeddingsV1Input, type SegmentAnythingEmbeddingsV1Request, type SegmentAnythingEmbeddingsV1RequestMetadata, type SegmentAnythingEmbeddingsV1Response, type SegmentAnythingEmbeddingsV1ResponseInput, SegmentAnythingEmbeddingsV1ResponseKind, type SegmentAnythingEmbeddingsV1ResponseMetadata, SegmentAnythingEmbeddingsV1ResponseStatus, type SegmentAnythingMaskV1Input, type SegmentAnythingMaskV1Request, type SegmentAnythingMaskV1RequestMetadata, type SegmentAnythingMaskV1Response, type SegmentAnythingMaskV1ResponseInput, SegmentAnythingMaskV1ResponseKind, type SegmentAnythingMaskV1ResponseMetadata, SegmentAnythingMaskV1ResponseStatus, type SelfAccountDto, type SelfAccountDtoPermissions, SelfAccountDtoType, type SetPosePreviewControllerParamsDto, type SetPosePreviewDto, type StackEntity, type StackEntityItemsItem, StackEntityKind, type StackEntityMetadata, StacksControllerListStacksV1OrderBy, type StacksControllerListStacksV1Params, type StartLoraTrainingParamsDto, type StorageEntity, StorageEntityKind, type StorageEntityMetadata, type StorageEntityValue, type StorageRecordsResultDto, type StorageRecordsResultDtoValue, type StorageRecordsResultDtoValueOneOf, type StringsTemplateV1Input, type StringsTemplateV1Request, type StringsTemplateV1RequestMetadata, type StringsTemplateV1Response, type StringsTemplateV1ResponseInput, StringsTemplateV1ResponseKind, type StringsTemplateV1ResponseMetadata, StringsTemplateV1ResponseStatus, type SubscribePayload, type SupportFile, type TaskDto, type TaskDtoArgsItem, type TaskDtoArgsItemOneOf, type TopazUpscaleV1Input, TopazUpscaleV1InputEnhanceModel, TopazUpscaleV1InputSubjectDetection, TopazUpscaleV1InputUpscaleFactor, type TopazUpscaleV1Request, type TopazUpscaleV1RequestMetadata, type TopazUpscaleV1Response, type TopazUpscaleV1ResponseInput, TopazUpscaleV1ResponseKind, type TopazUpscaleV1ResponseMetadata, TopazUpscaleV1ResponseStatus, type TranslateV1Input, type TranslateV1Output, type TranslateV1OutputData, TranslateV1OutputKind, type TranslateV1Request, type TranslateV1RequestMetadata, type TranslateV1Response, type TranslateV1ResponseInput, TranslateV1ResponseKind, type TranslateV1ResponseMetadata, TranslateV1ResponseStatus, type UpdateAccountControllerParamsDto, type UpdateAccountParamsDto, type UpdateMetadataDto, type UpdateMetadataDtoOverwrite, type UpdateResourceMetadataDto, type UpdateStorageRecordParamsDto, type UpdateStorageRecordParamsDtoValue, type UpdateStorageRecordParamsDtoValueOneOf, type UpdateWorkflowParamsDto, type UpdateWorkflowParamsDtoData, type UpdateWorkflowParamsDtoMetadata, type UploadControllerGetUploadedFileUrlV1Params, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1RequestMetadata, type UpscaleV1Response, type UpscaleV1ResponseInput, UpscaleV1ResponseKind, type UpscaleV1ResponseMetadata, UpscaleV1ResponseStatus, type VariableDto, type Veo3FastV1Request, type Veo3FastV1RequestMetadata, type Veo3FastV1Response, type Veo3FastV1ResponseInput, Veo3FastV1ResponseKind, type Veo3FastV1ResponseMetadata, Veo3FastV1ResponseStatus, type Veo3V1Input, Veo3V1InputResolution, type Veo3V1Request, type Veo3V1RequestMetadata, type Veo3V1Response, type Veo3V1ResponseInput, Veo3V1ResponseKind, type Veo3V1ResponseMetadata, Veo3V1ResponseStatus, type VideoEntity, VideoEntityKind, type VideoEntityMetadata, type VideoUrlResponseDto, type VideosControllerGetVideosV1Params, type VtonGiseleV1Request, type VtonGiseleV1RequestMetadata, type VtonGiseleV1Response, type VtonGiseleV1ResponseInput, VtonGiseleV1ResponseKind, type VtonGiseleV1ResponseMetadata, VtonGiseleV1ResponseStatus, type WaitOperationParamsDto, type WorkflowDto, type WorkflowDtoData, type WorkflowDtoMetadata, WorkflowsControllerListWorkflowsV1OrderBy, type WorkflowsControllerListWorkflowsV1Params, type WsEventEntity, type WsEventMap, createSDK, createTokenSigner };