@hautechai/sdk 2.21.0 → 2.21.2
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.mts +819 -180
- package/dist/index.d.ts +819 -180
- package/dist/index.js +189 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +175 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -23,21 +23,6 @@ interface CreateUserProfileDto {
|
|
|
23
23
|
pictureUrl?: string | null;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
/**
|
|
27
|
-
* Generated by orval v7.10.0 🍺
|
|
28
|
-
* Do not edit manually.
|
|
29
|
-
* directory-api
|
|
30
|
-
* OpenAPI spec version: none
|
|
31
|
-
*/
|
|
32
|
-
interface PublicUserProfileDto {
|
|
33
|
-
/** @pattern ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$ */
|
|
34
|
-
id: string;
|
|
35
|
-
handle: string;
|
|
36
|
-
name: string;
|
|
37
|
-
/** @nullable */
|
|
38
|
-
pictureUrl?: string | null;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
26
|
/**
|
|
42
27
|
* Generated by orval v7.10.0 🍺
|
|
43
28
|
* Do not edit manually.
|
|
@@ -56,27 +41,6 @@ interface UpdateUserProfileDto {
|
|
|
56
41
|
pictureUrl?: string | null;
|
|
57
42
|
}
|
|
58
43
|
|
|
59
|
-
/**
|
|
60
|
-
* Generated by orval v7.10.0 🍺
|
|
61
|
-
* Do not edit manually.
|
|
62
|
-
* directory-api
|
|
63
|
-
* OpenAPI spec version: none
|
|
64
|
-
*/
|
|
65
|
-
interface UserProfileDto {
|
|
66
|
-
/** @pattern ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$ */
|
|
67
|
-
id: string;
|
|
68
|
-
externalId: string;
|
|
69
|
-
handle: string;
|
|
70
|
-
name: string;
|
|
71
|
-
/**
|
|
72
|
-
* @nullable
|
|
73
|
-
* @pattern ^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$
|
|
74
|
-
*/
|
|
75
|
-
email?: string | null;
|
|
76
|
-
/** @nullable */
|
|
77
|
-
pictureUrl?: string | null;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
44
|
/**
|
|
81
45
|
* Generated by orval v7.10.0 🍺
|
|
82
46
|
* Do not edit manually.
|
|
@@ -2013,7 +1977,603 @@ declare const CutV1ResponseKind: {
|
|
|
2013
1977
|
* Hautech API
|
|
2014
1978
|
* OpenAPI spec version: 1.0
|
|
2015
1979
|
*/
|
|
2016
|
-
type CutV1ResponseInput = {
|
|
1980
|
+
type CutV1ResponseInput = {
|
|
1981
|
+
[key: string]: unknown;
|
|
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
|
+
type CutV1ResponseStatus = typeof CutV1ResponseStatus[keyof typeof CutV1ResponseStatus];
|
|
1991
|
+
declare const CutV1ResponseStatus: {
|
|
1992
|
+
readonly pending: "pending";
|
|
1993
|
+
readonly finished: "finished";
|
|
1994
|
+
readonly failed: "failed";
|
|
1995
|
+
};
|
|
1996
|
+
|
|
1997
|
+
/**
|
|
1998
|
+
* Generated by orval v7.10.0 🍺
|
|
1999
|
+
* Do not edit manually.
|
|
2000
|
+
* Hautech API
|
|
2001
|
+
* OpenAPI spec version: 1.0
|
|
2002
|
+
*/
|
|
2003
|
+
type CutV1ResponseMetadata = {
|
|
2004
|
+
[key: string]: unknown;
|
|
2005
|
+
};
|
|
2006
|
+
|
|
2007
|
+
/**
|
|
2008
|
+
* Generated by orval v7.10.0 🍺
|
|
2009
|
+
* Do not edit manually.
|
|
2010
|
+
* Hautech API
|
|
2011
|
+
* OpenAPI spec version: 1.0
|
|
2012
|
+
*/
|
|
2013
|
+
|
|
2014
|
+
interface CutV1Response {
|
|
2015
|
+
kind: CutV1ResponseKind;
|
|
2016
|
+
output: OperationOutputImageSingle;
|
|
2017
|
+
input: CutV1ResponseInput;
|
|
2018
|
+
status: CutV1ResponseStatus;
|
|
2019
|
+
type: string;
|
|
2020
|
+
price?: string;
|
|
2021
|
+
estimatedPrice?: string;
|
|
2022
|
+
errorMessage?: string;
|
|
2023
|
+
errorCode?: string;
|
|
2024
|
+
id: string;
|
|
2025
|
+
creatorId: string;
|
|
2026
|
+
metadata: CutV1ResponseMetadata;
|
|
2027
|
+
createdAt: string;
|
|
2028
|
+
updatedAt: string;
|
|
2029
|
+
}
|
|
2030
|
+
|
|
2031
|
+
/**
|
|
2032
|
+
* Generated by orval v7.10.0 🍺
|
|
2033
|
+
* Do not edit manually.
|
|
2034
|
+
* Hautech API
|
|
2035
|
+
* OpenAPI spec version: 1.0
|
|
2036
|
+
*/
|
|
2037
|
+
interface DatasetItemDto {
|
|
2038
|
+
garmentImageId: string;
|
|
2039
|
+
outputImageId: string;
|
|
2040
|
+
prompt: string;
|
|
2041
|
+
category: string;
|
|
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
|
+
interface DeleteParamsDto {
|
|
2051
|
+
id: string;
|
|
2052
|
+
}
|
|
2053
|
+
|
|
2054
|
+
/**
|
|
2055
|
+
* Generated by orval v7.10.0 🍺
|
|
2056
|
+
* Do not edit manually.
|
|
2057
|
+
* Hautech API
|
|
2058
|
+
* OpenAPI spec version: 1.0
|
|
2059
|
+
*/
|
|
2060
|
+
interface DeleteStorageParamsDto {
|
|
2061
|
+
key: string;
|
|
2062
|
+
}
|
|
2063
|
+
|
|
2064
|
+
/**
|
|
2065
|
+
* Generated by orval v7.10.0 🍺
|
|
2066
|
+
* Do not edit manually.
|
|
2067
|
+
* Hautech API
|
|
2068
|
+
* OpenAPI spec version: 1.0
|
|
2069
|
+
*/
|
|
2070
|
+
interface DetachAccessControllerParamsDto {
|
|
2071
|
+
parentResourceId: string;
|
|
2072
|
+
}
|
|
2073
|
+
|
|
2074
|
+
/**
|
|
2075
|
+
* Generated by orval v7.10.0 🍺
|
|
2076
|
+
* Do not edit manually.
|
|
2077
|
+
* Hautech API
|
|
2078
|
+
* OpenAPI spec version: 1.0
|
|
2079
|
+
*/
|
|
2080
|
+
interface EchoV1Input {
|
|
2081
|
+
text: string;
|
|
2082
|
+
delay?: number;
|
|
2083
|
+
}
|
|
2084
|
+
|
|
2085
|
+
/**
|
|
2086
|
+
* Generated by orval v7.10.0 🍺
|
|
2087
|
+
* Do not edit manually.
|
|
2088
|
+
* Hautech API
|
|
2089
|
+
* OpenAPI spec version: 1.0
|
|
2090
|
+
*/
|
|
2091
|
+
type EchoV1RequestMetadata = {
|
|
2092
|
+
[key: string]: unknown;
|
|
2093
|
+
};
|
|
2094
|
+
|
|
2095
|
+
/**
|
|
2096
|
+
* Generated by orval v7.10.0 🍺
|
|
2097
|
+
* Do not edit manually.
|
|
2098
|
+
* Hautech API
|
|
2099
|
+
* OpenAPI spec version: 1.0
|
|
2100
|
+
*/
|
|
2101
|
+
|
|
2102
|
+
interface EchoV1Request {
|
|
2103
|
+
input: EchoV1Input;
|
|
2104
|
+
metadata?: EchoV1RequestMetadata;
|
|
2105
|
+
}
|
|
2106
|
+
|
|
2107
|
+
/**
|
|
2108
|
+
* Generated by orval v7.10.0 🍺
|
|
2109
|
+
* Do not edit manually.
|
|
2110
|
+
* Hautech API
|
|
2111
|
+
* OpenAPI spec version: 1.0
|
|
2112
|
+
*/
|
|
2113
|
+
type EchoV1ResponseKind = typeof EchoV1ResponseKind[keyof typeof EchoV1ResponseKind];
|
|
2114
|
+
declare const EchoV1ResponseKind: {
|
|
2115
|
+
readonly operation: "operation";
|
|
2116
|
+
};
|
|
2117
|
+
|
|
2118
|
+
/**
|
|
2119
|
+
* Generated by orval v7.10.0 🍺
|
|
2120
|
+
* Do not edit manually.
|
|
2121
|
+
* Hautech API
|
|
2122
|
+
* OpenAPI spec version: 1.0
|
|
2123
|
+
*/
|
|
2124
|
+
type OperationOutputTextSingleKind = typeof OperationOutputTextSingleKind[keyof typeof OperationOutputTextSingleKind];
|
|
2125
|
+
declare const OperationOutputTextSingleKind: {
|
|
2126
|
+
readonly 'text/single': "text/single";
|
|
2127
|
+
};
|
|
2128
|
+
|
|
2129
|
+
/**
|
|
2130
|
+
* Generated by orval v7.10.0 🍺
|
|
2131
|
+
* Do not edit manually.
|
|
2132
|
+
* Hautech API
|
|
2133
|
+
* OpenAPI spec version: 1.0
|
|
2134
|
+
*/
|
|
2135
|
+
|
|
2136
|
+
interface OperationOutputTextSingle {
|
|
2137
|
+
kind: OperationOutputTextSingleKind;
|
|
2138
|
+
text: string;
|
|
2139
|
+
}
|
|
2140
|
+
|
|
2141
|
+
/**
|
|
2142
|
+
* Generated by orval v7.10.0 🍺
|
|
2143
|
+
* Do not edit manually.
|
|
2144
|
+
* Hautech API
|
|
2145
|
+
* OpenAPI spec version: 1.0
|
|
2146
|
+
*/
|
|
2147
|
+
type EchoV1ResponseInput = {
|
|
2148
|
+
[key: string]: unknown;
|
|
2149
|
+
};
|
|
2150
|
+
|
|
2151
|
+
/**
|
|
2152
|
+
* Generated by orval v7.10.0 🍺
|
|
2153
|
+
* Do not edit manually.
|
|
2154
|
+
* Hautech API
|
|
2155
|
+
* OpenAPI spec version: 1.0
|
|
2156
|
+
*/
|
|
2157
|
+
type EchoV1ResponseStatus = typeof EchoV1ResponseStatus[keyof typeof EchoV1ResponseStatus];
|
|
2158
|
+
declare const EchoV1ResponseStatus: {
|
|
2159
|
+
readonly pending: "pending";
|
|
2160
|
+
readonly finished: "finished";
|
|
2161
|
+
readonly failed: "failed";
|
|
2162
|
+
};
|
|
2163
|
+
|
|
2164
|
+
/**
|
|
2165
|
+
* Generated by orval v7.10.0 🍺
|
|
2166
|
+
* Do not edit manually.
|
|
2167
|
+
* Hautech API
|
|
2168
|
+
* OpenAPI spec version: 1.0
|
|
2169
|
+
*/
|
|
2170
|
+
type EchoV1ResponseMetadata = {
|
|
2171
|
+
[key: string]: unknown;
|
|
2172
|
+
};
|
|
2173
|
+
|
|
2174
|
+
/**
|
|
2175
|
+
* Generated by orval v7.10.0 🍺
|
|
2176
|
+
* Do not edit manually.
|
|
2177
|
+
* Hautech API
|
|
2178
|
+
* OpenAPI spec version: 1.0
|
|
2179
|
+
*/
|
|
2180
|
+
|
|
2181
|
+
interface EchoV1Response {
|
|
2182
|
+
kind: EchoV1ResponseKind;
|
|
2183
|
+
output: OperationOutputTextSingle;
|
|
2184
|
+
input: EchoV1ResponseInput;
|
|
2185
|
+
status: EchoV1ResponseStatus;
|
|
2186
|
+
type: string;
|
|
2187
|
+
price?: string;
|
|
2188
|
+
estimatedPrice?: string;
|
|
2189
|
+
errorMessage?: string;
|
|
2190
|
+
errorCode?: string;
|
|
2191
|
+
id: string;
|
|
2192
|
+
creatorId: string;
|
|
2193
|
+
metadata: EchoV1ResponseMetadata;
|
|
2194
|
+
createdAt: string;
|
|
2195
|
+
updatedAt: string;
|
|
2196
|
+
}
|
|
2197
|
+
|
|
2198
|
+
/**
|
|
2199
|
+
* Generated by orval v7.10.0 🍺
|
|
2200
|
+
* Do not edit manually.
|
|
2201
|
+
* Hautech API
|
|
2202
|
+
* OpenAPI spec version: 1.0
|
|
2203
|
+
*/
|
|
2204
|
+
interface EditFluxKontextDevV1Input {
|
|
2205
|
+
prompt: string;
|
|
2206
|
+
imageId?: string;
|
|
2207
|
+
/**
|
|
2208
|
+
* @minimum 4
|
|
2209
|
+
* @maximum 50
|
|
2210
|
+
*/
|
|
2211
|
+
numberOfSteps?: number;
|
|
2212
|
+
/**
|
|
2213
|
+
* @minimum 0
|
|
2214
|
+
* @maximum 10
|
|
2215
|
+
*/
|
|
2216
|
+
guidance?: number;
|
|
2217
|
+
seed?: number;
|
|
2218
|
+
}
|
|
2219
|
+
|
|
2220
|
+
/**
|
|
2221
|
+
* Generated by orval v7.10.0 🍺
|
|
2222
|
+
* Do not edit manually.
|
|
2223
|
+
* Hautech API
|
|
2224
|
+
* OpenAPI spec version: 1.0
|
|
2225
|
+
*/
|
|
2226
|
+
type EditFluxKontextDevV1RequestMetadata = {
|
|
2227
|
+
[key: string]: unknown;
|
|
2228
|
+
};
|
|
2229
|
+
|
|
2230
|
+
/**
|
|
2231
|
+
* Generated by orval v7.10.0 🍺
|
|
2232
|
+
* Do not edit manually.
|
|
2233
|
+
* Hautech API
|
|
2234
|
+
* OpenAPI spec version: 1.0
|
|
2235
|
+
*/
|
|
2236
|
+
|
|
2237
|
+
interface EditFluxKontextDevV1Request {
|
|
2238
|
+
input: EditFluxKontextDevV1Input;
|
|
2239
|
+
metadata?: EditFluxKontextDevV1RequestMetadata;
|
|
2240
|
+
}
|
|
2241
|
+
|
|
2242
|
+
/**
|
|
2243
|
+
* Generated by orval v7.10.0 🍺
|
|
2244
|
+
* Do not edit manually.
|
|
2245
|
+
* Hautech API
|
|
2246
|
+
* OpenAPI spec version: 1.0
|
|
2247
|
+
*/
|
|
2248
|
+
type EditFluxKontextDevV1ResponseKind = typeof EditFluxKontextDevV1ResponseKind[keyof typeof EditFluxKontextDevV1ResponseKind];
|
|
2249
|
+
declare const EditFluxKontextDevV1ResponseKind: {
|
|
2250
|
+
readonly operation: "operation";
|
|
2251
|
+
};
|
|
2252
|
+
|
|
2253
|
+
/**
|
|
2254
|
+
* Generated by orval v7.10.0 🍺
|
|
2255
|
+
* Do not edit manually.
|
|
2256
|
+
* Hautech API
|
|
2257
|
+
* OpenAPI spec version: 1.0
|
|
2258
|
+
*/
|
|
2259
|
+
type EditFluxKontextDevV1ResponseInput = {
|
|
2260
|
+
[key: string]: unknown;
|
|
2261
|
+
};
|
|
2262
|
+
|
|
2263
|
+
/**
|
|
2264
|
+
* Generated by orval v7.10.0 🍺
|
|
2265
|
+
* Do not edit manually.
|
|
2266
|
+
* Hautech API
|
|
2267
|
+
* OpenAPI spec version: 1.0
|
|
2268
|
+
*/
|
|
2269
|
+
type EditFluxKontextDevV1ResponseStatus = typeof EditFluxKontextDevV1ResponseStatus[keyof typeof EditFluxKontextDevV1ResponseStatus];
|
|
2270
|
+
declare const EditFluxKontextDevV1ResponseStatus: {
|
|
2271
|
+
readonly pending: "pending";
|
|
2272
|
+
readonly finished: "finished";
|
|
2273
|
+
readonly failed: "failed";
|
|
2274
|
+
};
|
|
2275
|
+
|
|
2276
|
+
/**
|
|
2277
|
+
* Generated by orval v7.10.0 🍺
|
|
2278
|
+
* Do not edit manually.
|
|
2279
|
+
* Hautech API
|
|
2280
|
+
* OpenAPI spec version: 1.0
|
|
2281
|
+
*/
|
|
2282
|
+
type EditFluxKontextDevV1ResponseMetadata = {
|
|
2283
|
+
[key: string]: unknown;
|
|
2284
|
+
};
|
|
2285
|
+
|
|
2286
|
+
/**
|
|
2287
|
+
* Generated by orval v7.10.0 🍺
|
|
2288
|
+
* Do not edit manually.
|
|
2289
|
+
* Hautech API
|
|
2290
|
+
* OpenAPI spec version: 1.0
|
|
2291
|
+
*/
|
|
2292
|
+
|
|
2293
|
+
interface EditFluxKontextDevV1Response {
|
|
2294
|
+
kind: EditFluxKontextDevV1ResponseKind;
|
|
2295
|
+
output: OperationOutputImageSingle;
|
|
2296
|
+
input: EditFluxKontextDevV1ResponseInput;
|
|
2297
|
+
status: EditFluxKontextDevV1ResponseStatus;
|
|
2298
|
+
type: string;
|
|
2299
|
+
price?: string;
|
|
2300
|
+
estimatedPrice?: string;
|
|
2301
|
+
errorMessage?: string;
|
|
2302
|
+
errorCode?: string;
|
|
2303
|
+
id: string;
|
|
2304
|
+
creatorId: string;
|
|
2305
|
+
metadata: EditFluxKontextDevV1ResponseMetadata;
|
|
2306
|
+
createdAt: string;
|
|
2307
|
+
updatedAt: string;
|
|
2308
|
+
}
|
|
2309
|
+
|
|
2310
|
+
/**
|
|
2311
|
+
* Generated by orval v7.10.0 🍺
|
|
2312
|
+
* Do not edit manually.
|
|
2313
|
+
* Hautech API
|
|
2314
|
+
* OpenAPI spec version: 1.0
|
|
2315
|
+
*/
|
|
2316
|
+
type FashnVtonV1InputCategory = typeof FashnVtonV1InputCategory[keyof typeof FashnVtonV1InputCategory];
|
|
2317
|
+
declare const FashnVtonV1InputCategory: {
|
|
2318
|
+
readonly tops: "tops";
|
|
2319
|
+
readonly bottoms: "bottoms";
|
|
2320
|
+
readonly 'one-pieces': "one-pieces";
|
|
2321
|
+
readonly auto: "auto";
|
|
2322
|
+
};
|
|
2323
|
+
|
|
2324
|
+
/**
|
|
2325
|
+
* Generated by orval v7.10.0 🍺
|
|
2326
|
+
* Do not edit manually.
|
|
2327
|
+
* Hautech API
|
|
2328
|
+
* OpenAPI spec version: 1.0
|
|
2329
|
+
*/
|
|
2330
|
+
type FashnVtonV1InputMode = typeof FashnVtonV1InputMode[keyof typeof FashnVtonV1InputMode];
|
|
2331
|
+
declare const FashnVtonV1InputMode: {
|
|
2332
|
+
readonly performance: "performance";
|
|
2333
|
+
readonly balanced: "balanced";
|
|
2334
|
+
readonly quality: "quality";
|
|
2335
|
+
};
|
|
2336
|
+
|
|
2337
|
+
/**
|
|
2338
|
+
* Generated by orval v7.10.0 🍺
|
|
2339
|
+
* Do not edit manually.
|
|
2340
|
+
* Hautech API
|
|
2341
|
+
* OpenAPI spec version: 1.0
|
|
2342
|
+
*/
|
|
2343
|
+
type FashnVtonV1InputGarmentPhotoType = typeof FashnVtonV1InputGarmentPhotoType[keyof typeof FashnVtonV1InputGarmentPhotoType];
|
|
2344
|
+
declare const FashnVtonV1InputGarmentPhotoType: {
|
|
2345
|
+
readonly auto: "auto";
|
|
2346
|
+
readonly model: "model";
|
|
2347
|
+
readonly 'flat-lay': "flat-lay";
|
|
2348
|
+
};
|
|
2349
|
+
|
|
2350
|
+
/**
|
|
2351
|
+
* Generated by orval v7.10.0 🍺
|
|
2352
|
+
* Do not edit manually.
|
|
2353
|
+
* Hautech API
|
|
2354
|
+
* OpenAPI spec version: 1.0
|
|
2355
|
+
*/
|
|
2356
|
+
type FashnVtonV1InputModerationLevel = typeof FashnVtonV1InputModerationLevel[keyof typeof FashnVtonV1InputModerationLevel];
|
|
2357
|
+
declare const FashnVtonV1InputModerationLevel: {
|
|
2358
|
+
readonly none: "none";
|
|
2359
|
+
readonly permissive: "permissive";
|
|
2360
|
+
readonly conservative: "conservative";
|
|
2361
|
+
};
|
|
2362
|
+
|
|
2363
|
+
/**
|
|
2364
|
+
* Generated by orval v7.10.0 🍺
|
|
2365
|
+
* Do not edit manually.
|
|
2366
|
+
* Hautech API
|
|
2367
|
+
* OpenAPI spec version: 1.0
|
|
2368
|
+
*/
|
|
2369
|
+
|
|
2370
|
+
interface FashnVtonV1Input {
|
|
2371
|
+
modelImageId: string;
|
|
2372
|
+
garmentImageId: string;
|
|
2373
|
+
category?: FashnVtonV1InputCategory;
|
|
2374
|
+
mode?: FashnVtonV1InputMode;
|
|
2375
|
+
garmentPhotoType?: FashnVtonV1InputGarmentPhotoType;
|
|
2376
|
+
moderationLevel?: FashnVtonV1InputModerationLevel;
|
|
2377
|
+
seed?: number;
|
|
2378
|
+
segmentationFree?: boolean;
|
|
2379
|
+
}
|
|
2380
|
+
|
|
2381
|
+
/**
|
|
2382
|
+
* Generated by orval v7.10.0 🍺
|
|
2383
|
+
* Do not edit manually.
|
|
2384
|
+
* Hautech API
|
|
2385
|
+
* OpenAPI spec version: 1.0
|
|
2386
|
+
*/
|
|
2387
|
+
type FashnVton16V1RequestMetadata = {
|
|
2388
|
+
[key: string]: unknown;
|
|
2389
|
+
};
|
|
2390
|
+
|
|
2391
|
+
/**
|
|
2392
|
+
* Generated by orval v7.10.0 🍺
|
|
2393
|
+
* Do not edit manually.
|
|
2394
|
+
* Hautech API
|
|
2395
|
+
* OpenAPI spec version: 1.0
|
|
2396
|
+
*/
|
|
2397
|
+
|
|
2398
|
+
interface FashnVton16V1Request {
|
|
2399
|
+
input: FashnVtonV1Input;
|
|
2400
|
+
metadata?: FashnVton16V1RequestMetadata;
|
|
2401
|
+
}
|
|
2402
|
+
|
|
2403
|
+
/**
|
|
2404
|
+
* Generated by orval v7.10.0 🍺
|
|
2405
|
+
* Do not edit manually.
|
|
2406
|
+
* Hautech API
|
|
2407
|
+
* OpenAPI spec version: 1.0
|
|
2408
|
+
*/
|
|
2409
|
+
type FashnVton16V1ResponseKind = typeof FashnVton16V1ResponseKind[keyof typeof FashnVton16V1ResponseKind];
|
|
2410
|
+
declare const FashnVton16V1ResponseKind: {
|
|
2411
|
+
readonly operation: "operation";
|
|
2412
|
+
};
|
|
2413
|
+
|
|
2414
|
+
/**
|
|
2415
|
+
* Generated by orval v7.10.0 🍺
|
|
2416
|
+
* Do not edit manually.
|
|
2417
|
+
* Hautech API
|
|
2418
|
+
* OpenAPI spec version: 1.0
|
|
2419
|
+
*/
|
|
2420
|
+
type FashnVton16V1ResponseInput = {
|
|
2421
|
+
[key: string]: unknown;
|
|
2422
|
+
};
|
|
2423
|
+
|
|
2424
|
+
/**
|
|
2425
|
+
* Generated by orval v7.10.0 🍺
|
|
2426
|
+
* Do not edit manually.
|
|
2427
|
+
* Hautech API
|
|
2428
|
+
* OpenAPI spec version: 1.0
|
|
2429
|
+
*/
|
|
2430
|
+
type FashnVton16V1ResponseStatus = typeof FashnVton16V1ResponseStatus[keyof typeof FashnVton16V1ResponseStatus];
|
|
2431
|
+
declare const FashnVton16V1ResponseStatus: {
|
|
2432
|
+
readonly pending: "pending";
|
|
2433
|
+
readonly finished: "finished";
|
|
2434
|
+
readonly failed: "failed";
|
|
2435
|
+
};
|
|
2436
|
+
|
|
2437
|
+
/**
|
|
2438
|
+
* Generated by orval v7.10.0 🍺
|
|
2439
|
+
* Do not edit manually.
|
|
2440
|
+
* Hautech API
|
|
2441
|
+
* OpenAPI spec version: 1.0
|
|
2442
|
+
*/
|
|
2443
|
+
type FashnVton16V1ResponseMetadata = {
|
|
2444
|
+
[key: string]: unknown;
|
|
2445
|
+
};
|
|
2446
|
+
|
|
2447
|
+
/**
|
|
2448
|
+
* Generated by orval v7.10.0 🍺
|
|
2449
|
+
* Do not edit manually.
|
|
2450
|
+
* Hautech API
|
|
2451
|
+
* OpenAPI spec version: 1.0
|
|
2452
|
+
*/
|
|
2453
|
+
|
|
2454
|
+
interface FashnVton16V1Response {
|
|
2455
|
+
kind: FashnVton16V1ResponseKind;
|
|
2456
|
+
output: OperationOutputImageSingle;
|
|
2457
|
+
input: FashnVton16V1ResponseInput;
|
|
2458
|
+
status: FashnVton16V1ResponseStatus;
|
|
2459
|
+
type: string;
|
|
2460
|
+
price?: string;
|
|
2461
|
+
estimatedPrice?: string;
|
|
2462
|
+
errorMessage?: string;
|
|
2463
|
+
errorCode?: string;
|
|
2464
|
+
id: string;
|
|
2465
|
+
creatorId: string;
|
|
2466
|
+
metadata: FashnVton16V1ResponseMetadata;
|
|
2467
|
+
createdAt: string;
|
|
2468
|
+
updatedAt: string;
|
|
2469
|
+
}
|
|
2470
|
+
|
|
2471
|
+
/**
|
|
2472
|
+
* Generated by orval v7.10.0 🍺
|
|
2473
|
+
* Do not edit manually.
|
|
2474
|
+
* Hautech API
|
|
2475
|
+
* OpenAPI spec version: 1.0
|
|
2476
|
+
*/
|
|
2477
|
+
interface Flux11ProUltraV1Input {
|
|
2478
|
+
[key: string]: unknown;
|
|
2479
|
+
}
|
|
2480
|
+
|
|
2481
|
+
/**
|
|
2482
|
+
* Generated by orval v7.10.0 🍺
|
|
2483
|
+
* Do not edit manually.
|
|
2484
|
+
* Hautech API
|
|
2485
|
+
* OpenAPI spec version: 1.0
|
|
2486
|
+
*/
|
|
2487
|
+
interface FluxKontextDatasetItemDto {
|
|
2488
|
+
startImageId: string;
|
|
2489
|
+
endImageId: string;
|
|
2490
|
+
prompt: string;
|
|
2491
|
+
}
|
|
2492
|
+
|
|
2493
|
+
/**
|
|
2494
|
+
* Generated by orval v7.10.0 🍺
|
|
2495
|
+
* Do not edit manually.
|
|
2496
|
+
* Hautech API
|
|
2497
|
+
* OpenAPI spec version: 1.0
|
|
2498
|
+
*/
|
|
2499
|
+
|
|
2500
|
+
interface FluxKontextPrepareDatasetInputDto {
|
|
2501
|
+
items: FluxKontextDatasetItemDto[];
|
|
2502
|
+
}
|
|
2503
|
+
|
|
2504
|
+
/**
|
|
2505
|
+
* Generated by orval v7.10.0 🍺
|
|
2506
|
+
* Do not edit manually.
|
|
2507
|
+
* Hautech API
|
|
2508
|
+
* OpenAPI spec version: 1.0
|
|
2509
|
+
*/
|
|
2510
|
+
type FluxKontextDevPrepareDatasetV1RequestMetadata = {
|
|
2511
|
+
[key: string]: unknown;
|
|
2512
|
+
};
|
|
2513
|
+
|
|
2514
|
+
/**
|
|
2515
|
+
* Generated by orval v7.10.0 🍺
|
|
2516
|
+
* Do not edit manually.
|
|
2517
|
+
* Hautech API
|
|
2518
|
+
* OpenAPI spec version: 1.0
|
|
2519
|
+
*/
|
|
2520
|
+
|
|
2521
|
+
interface FluxKontextDevPrepareDatasetV1Request {
|
|
2522
|
+
input: FluxKontextPrepareDatasetInputDto;
|
|
2523
|
+
metadata?: FluxKontextDevPrepareDatasetV1RequestMetadata;
|
|
2524
|
+
}
|
|
2525
|
+
|
|
2526
|
+
/**
|
|
2527
|
+
* Generated by orval v7.10.0 🍺
|
|
2528
|
+
* Do not edit manually.
|
|
2529
|
+
* Hautech API
|
|
2530
|
+
* OpenAPI spec version: 1.0
|
|
2531
|
+
*/
|
|
2532
|
+
type FluxKontextDevPrepareDatasetV1ResponseKind = typeof FluxKontextDevPrepareDatasetV1ResponseKind[keyof typeof FluxKontextDevPrepareDatasetV1ResponseKind];
|
|
2533
|
+
declare const FluxKontextDevPrepareDatasetV1ResponseKind: {
|
|
2534
|
+
readonly operation: "operation";
|
|
2535
|
+
};
|
|
2536
|
+
|
|
2537
|
+
/**
|
|
2538
|
+
* Generated by orval v7.10.0 🍺
|
|
2539
|
+
* Do not edit manually.
|
|
2540
|
+
* Hautech API
|
|
2541
|
+
* OpenAPI spec version: 1.0
|
|
2542
|
+
*/
|
|
2543
|
+
type FluxKontextPrepareDatasetOutputDtoKind = typeof FluxKontextPrepareDatasetOutputDtoKind[keyof typeof FluxKontextPrepareDatasetOutputDtoKind];
|
|
2544
|
+
declare const FluxKontextPrepareDatasetOutputDtoKind: {
|
|
2545
|
+
readonly json: "json";
|
|
2546
|
+
};
|
|
2547
|
+
|
|
2548
|
+
/**
|
|
2549
|
+
* Generated by orval v7.10.0 🍺
|
|
2550
|
+
* Do not edit manually.
|
|
2551
|
+
* Hautech API
|
|
2552
|
+
* OpenAPI spec version: 1.0
|
|
2553
|
+
*/
|
|
2554
|
+
interface FluxKontextPrepareDatasetResultDto {
|
|
2555
|
+
fileId: string;
|
|
2556
|
+
}
|
|
2557
|
+
|
|
2558
|
+
/**
|
|
2559
|
+
* Generated by orval v7.10.0 🍺
|
|
2560
|
+
* Do not edit manually.
|
|
2561
|
+
* Hautech API
|
|
2562
|
+
* OpenAPI spec version: 1.0
|
|
2563
|
+
*/
|
|
2564
|
+
|
|
2565
|
+
interface FluxKontextPrepareDatasetOutputDto {
|
|
2566
|
+
kind: FluxKontextPrepareDatasetOutputDtoKind;
|
|
2567
|
+
data: FluxKontextPrepareDatasetResultDto;
|
|
2568
|
+
}
|
|
2569
|
+
|
|
2570
|
+
/**
|
|
2571
|
+
* Generated by orval v7.10.0 🍺
|
|
2572
|
+
* Do not edit manually.
|
|
2573
|
+
* Hautech API
|
|
2574
|
+
* OpenAPI spec version: 1.0
|
|
2575
|
+
*/
|
|
2576
|
+
type FluxKontextDevPrepareDatasetV1ResponseInput = {
|
|
2017
2577
|
[key: string]: unknown;
|
|
2018
2578
|
};
|
|
2019
2579
|
|
|
@@ -2023,8 +2583,8 @@ type CutV1ResponseInput = {
|
|
|
2023
2583
|
* Hautech API
|
|
2024
2584
|
* OpenAPI spec version: 1.0
|
|
2025
2585
|
*/
|
|
2026
|
-
type
|
|
2027
|
-
declare const
|
|
2586
|
+
type FluxKontextDevPrepareDatasetV1ResponseStatus = typeof FluxKontextDevPrepareDatasetV1ResponseStatus[keyof typeof FluxKontextDevPrepareDatasetV1ResponseStatus];
|
|
2587
|
+
declare const FluxKontextDevPrepareDatasetV1ResponseStatus: {
|
|
2028
2588
|
readonly pending: "pending";
|
|
2029
2589
|
readonly finished: "finished";
|
|
2030
2590
|
readonly failed: "failed";
|
|
@@ -2036,7 +2596,7 @@ declare const CutV1ResponseStatus: {
|
|
|
2036
2596
|
* Hautech API
|
|
2037
2597
|
* OpenAPI spec version: 1.0
|
|
2038
2598
|
*/
|
|
2039
|
-
type
|
|
2599
|
+
type FluxKontextDevPrepareDatasetV1ResponseMetadata = {
|
|
2040
2600
|
[key: string]: unknown;
|
|
2041
2601
|
};
|
|
2042
2602
|
|
|
@@ -2047,11 +2607,11 @@ type CutV1ResponseMetadata = {
|
|
|
2047
2607
|
* OpenAPI spec version: 1.0
|
|
2048
2608
|
*/
|
|
2049
2609
|
|
|
2050
|
-
interface
|
|
2051
|
-
kind:
|
|
2052
|
-
output:
|
|
2053
|
-
input:
|
|
2054
|
-
status:
|
|
2610
|
+
interface FluxKontextDevPrepareDatasetV1Response {
|
|
2611
|
+
kind: FluxKontextDevPrepareDatasetV1ResponseKind;
|
|
2612
|
+
output: FluxKontextPrepareDatasetOutputDto;
|
|
2613
|
+
input: FluxKontextDevPrepareDatasetV1ResponseInput;
|
|
2614
|
+
status: FluxKontextDevPrepareDatasetV1ResponseStatus;
|
|
2055
2615
|
type: string;
|
|
2056
2616
|
price?: string;
|
|
2057
2617
|
estimatedPrice?: string;
|
|
@@ -2059,7 +2619,7 @@ interface CutV1Response {
|
|
|
2059
2619
|
errorCode?: string;
|
|
2060
2620
|
id: string;
|
|
2061
2621
|
creatorId: string;
|
|
2062
|
-
metadata:
|
|
2622
|
+
metadata: FluxKontextDevPrepareDatasetV1ResponseMetadata;
|
|
2063
2623
|
createdAt: string;
|
|
2064
2624
|
updatedAt: string;
|
|
2065
2625
|
}
|
|
@@ -2070,21 +2630,9 @@ interface CutV1Response {
|
|
|
2070
2630
|
* Hautech API
|
|
2071
2631
|
* OpenAPI spec version: 1.0
|
|
2072
2632
|
*/
|
|
2073
|
-
interface
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
prompt: string;
|
|
2077
|
-
category: string;
|
|
2078
|
-
}
|
|
2079
|
-
|
|
2080
|
-
/**
|
|
2081
|
-
* Generated by orval v7.10.0 🍺
|
|
2082
|
-
* Do not edit manually.
|
|
2083
|
-
* Hautech API
|
|
2084
|
-
* OpenAPI spec version: 1.0
|
|
2085
|
-
*/
|
|
2086
|
-
interface DeleteParamsDto {
|
|
2087
|
-
id: string;
|
|
2633
|
+
interface FluxKontextTrainInputDto {
|
|
2634
|
+
datasetFileId: string;
|
|
2635
|
+
training_steps?: number;
|
|
2088
2636
|
}
|
|
2089
2637
|
|
|
2090
2638
|
/**
|
|
@@ -2093,9 +2641,9 @@ interface DeleteParamsDto {
|
|
|
2093
2641
|
* Hautech API
|
|
2094
2642
|
* OpenAPI spec version: 1.0
|
|
2095
2643
|
*/
|
|
2096
|
-
|
|
2097
|
-
key: string;
|
|
2098
|
-
}
|
|
2644
|
+
type FluxKontextDevTrainV1RequestMetadata = {
|
|
2645
|
+
[key: string]: unknown;
|
|
2646
|
+
};
|
|
2099
2647
|
|
|
2100
2648
|
/**
|
|
2101
2649
|
* Generated by orval v7.10.0 🍺
|
|
@@ -2103,19 +2651,10 @@ interface DeleteStorageParamsDto {
|
|
|
2103
2651
|
* Hautech API
|
|
2104
2652
|
* OpenAPI spec version: 1.0
|
|
2105
2653
|
*/
|
|
2106
|
-
interface DetachAccessControllerParamsDto {
|
|
2107
|
-
parentResourceId: string;
|
|
2108
|
-
}
|
|
2109
2654
|
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
* Hautech API
|
|
2114
|
-
* OpenAPI spec version: 1.0
|
|
2115
|
-
*/
|
|
2116
|
-
interface EchoV1Input {
|
|
2117
|
-
text: string;
|
|
2118
|
-
delay?: number;
|
|
2655
|
+
interface FluxKontextDevTrainV1Request {
|
|
2656
|
+
input: FluxKontextTrainInputDto;
|
|
2657
|
+
metadata?: FluxKontextDevTrainV1RequestMetadata;
|
|
2119
2658
|
}
|
|
2120
2659
|
|
|
2121
2660
|
/**
|
|
@@ -2124,8 +2663,9 @@ interface EchoV1Input {
|
|
|
2124
2663
|
* Hautech API
|
|
2125
2664
|
* OpenAPI spec version: 1.0
|
|
2126
2665
|
*/
|
|
2127
|
-
type
|
|
2128
|
-
|
|
2666
|
+
type FluxKontextDevTrainV1ResponseKind = typeof FluxKontextDevTrainV1ResponseKind[keyof typeof FluxKontextDevTrainV1ResponseKind];
|
|
2667
|
+
declare const FluxKontextDevTrainV1ResponseKind: {
|
|
2668
|
+
readonly operation: "operation";
|
|
2129
2669
|
};
|
|
2130
2670
|
|
|
2131
2671
|
/**
|
|
@@ -2134,21 +2674,9 @@ type EchoV1RequestMetadata = {
|
|
|
2134
2674
|
* Hautech API
|
|
2135
2675
|
* OpenAPI spec version: 1.0
|
|
2136
2676
|
*/
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
metadata?: EchoV1RequestMetadata;
|
|
2141
|
-
}
|
|
2142
|
-
|
|
2143
|
-
/**
|
|
2144
|
-
* Generated by orval v7.10.0 🍺
|
|
2145
|
-
* Do not edit manually.
|
|
2146
|
-
* Hautech API
|
|
2147
|
-
* OpenAPI spec version: 1.0
|
|
2148
|
-
*/
|
|
2149
|
-
type EchoV1ResponseKind = typeof EchoV1ResponseKind[keyof typeof EchoV1ResponseKind];
|
|
2150
|
-
declare const EchoV1ResponseKind: {
|
|
2151
|
-
readonly operation: "operation";
|
|
2677
|
+
type FluxKontextTrainOutputDtoKind = typeof FluxKontextTrainOutputDtoKind[keyof typeof FluxKontextTrainOutputDtoKind];
|
|
2678
|
+
declare const FluxKontextTrainOutputDtoKind: {
|
|
2679
|
+
readonly json: "json";
|
|
2152
2680
|
};
|
|
2153
2681
|
|
|
2154
2682
|
/**
|
|
@@ -2157,10 +2685,9 @@ declare const EchoV1ResponseKind: {
|
|
|
2157
2685
|
* Hautech API
|
|
2158
2686
|
* OpenAPI spec version: 1.0
|
|
2159
2687
|
*/
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
};
|
|
2688
|
+
interface FluxKontextTrainResultDto {
|
|
2689
|
+
loraId: string;
|
|
2690
|
+
}
|
|
2164
2691
|
|
|
2165
2692
|
/**
|
|
2166
2693
|
* Generated by orval v7.10.0 🍺
|
|
@@ -2169,9 +2696,9 @@ declare const OperationOutputTextSingleKind: {
|
|
|
2169
2696
|
* OpenAPI spec version: 1.0
|
|
2170
2697
|
*/
|
|
2171
2698
|
|
|
2172
|
-
interface
|
|
2173
|
-
kind:
|
|
2174
|
-
|
|
2699
|
+
interface FluxKontextTrainOutputDto {
|
|
2700
|
+
kind: FluxKontextTrainOutputDtoKind;
|
|
2701
|
+
data: FluxKontextTrainResultDto;
|
|
2175
2702
|
}
|
|
2176
2703
|
|
|
2177
2704
|
/**
|
|
@@ -2180,7 +2707,7 @@ interface OperationOutputTextSingle {
|
|
|
2180
2707
|
* Hautech API
|
|
2181
2708
|
* OpenAPI spec version: 1.0
|
|
2182
2709
|
*/
|
|
2183
|
-
type
|
|
2710
|
+
type FluxKontextDevTrainV1ResponseInput = {
|
|
2184
2711
|
[key: string]: unknown;
|
|
2185
2712
|
};
|
|
2186
2713
|
|
|
@@ -2190,8 +2717,8 @@ type EchoV1ResponseInput = {
|
|
|
2190
2717
|
* Hautech API
|
|
2191
2718
|
* OpenAPI spec version: 1.0
|
|
2192
2719
|
*/
|
|
2193
|
-
type
|
|
2194
|
-
declare const
|
|
2720
|
+
type FluxKontextDevTrainV1ResponseStatus = typeof FluxKontextDevTrainV1ResponseStatus[keyof typeof FluxKontextDevTrainV1ResponseStatus];
|
|
2721
|
+
declare const FluxKontextDevTrainV1ResponseStatus: {
|
|
2195
2722
|
readonly pending: "pending";
|
|
2196
2723
|
readonly finished: "finished";
|
|
2197
2724
|
readonly failed: "failed";
|
|
@@ -2203,7 +2730,7 @@ declare const EchoV1ResponseStatus: {
|
|
|
2203
2730
|
* Hautech API
|
|
2204
2731
|
* OpenAPI spec version: 1.0
|
|
2205
2732
|
*/
|
|
2206
|
-
type
|
|
2733
|
+
type FluxKontextDevTrainV1ResponseMetadata = {
|
|
2207
2734
|
[key: string]: unknown;
|
|
2208
2735
|
};
|
|
2209
2736
|
|
|
@@ -2214,11 +2741,11 @@ type EchoV1ResponseMetadata = {
|
|
|
2214
2741
|
* OpenAPI spec version: 1.0
|
|
2215
2742
|
*/
|
|
2216
2743
|
|
|
2217
|
-
interface
|
|
2218
|
-
kind:
|
|
2219
|
-
output:
|
|
2220
|
-
input:
|
|
2221
|
-
status:
|
|
2744
|
+
interface FluxKontextDevTrainV1Response {
|
|
2745
|
+
kind: FluxKontextDevTrainV1ResponseKind;
|
|
2746
|
+
output: FluxKontextTrainOutputDto;
|
|
2747
|
+
input: FluxKontextDevTrainV1ResponseInput;
|
|
2748
|
+
status: FluxKontextDevTrainV1ResponseStatus;
|
|
2222
2749
|
type: string;
|
|
2223
2750
|
price?: string;
|
|
2224
2751
|
estimatedPrice?: string;
|
|
@@ -2226,7 +2753,7 @@ interface EchoV1Response {
|
|
|
2226
2753
|
errorCode?: string;
|
|
2227
2754
|
id: string;
|
|
2228
2755
|
creatorId: string;
|
|
2229
|
-
metadata:
|
|
2756
|
+
metadata: FluxKontextDevTrainV1ResponseMetadata;
|
|
2230
2757
|
createdAt: string;
|
|
2231
2758
|
updatedAt: string;
|
|
2232
2759
|
}
|
|
@@ -2237,19 +2764,21 @@ interface EchoV1Response {
|
|
|
2237
2764
|
* Hautech API
|
|
2238
2765
|
* OpenAPI spec version: 1.0
|
|
2239
2766
|
*/
|
|
2240
|
-
interface
|
|
2767
|
+
interface FluxKontextV1InputDto {
|
|
2241
2768
|
prompt: string;
|
|
2242
2769
|
imageId?: string;
|
|
2770
|
+
loraId?: string;
|
|
2243
2771
|
/**
|
|
2244
2772
|
* @minimum 4
|
|
2245
2773
|
* @maximum 50
|
|
2246
2774
|
*/
|
|
2247
|
-
|
|
2775
|
+
numInferenceSteps?: number;
|
|
2248
2776
|
/**
|
|
2249
2777
|
* @minimum 0
|
|
2250
2778
|
* @maximum 10
|
|
2251
2779
|
*/
|
|
2252
2780
|
guidance?: number;
|
|
2781
|
+
loraStrength?: number;
|
|
2253
2782
|
seed?: number;
|
|
2254
2783
|
}
|
|
2255
2784
|
|
|
@@ -2259,7 +2788,7 @@ interface EditFluxKontextDevV1Input {
|
|
|
2259
2788
|
* Hautech API
|
|
2260
2789
|
* OpenAPI spec version: 1.0
|
|
2261
2790
|
*/
|
|
2262
|
-
type
|
|
2791
|
+
type FluxKontextDevV1RequestMetadata = {
|
|
2263
2792
|
[key: string]: unknown;
|
|
2264
2793
|
};
|
|
2265
2794
|
|
|
@@ -2270,9 +2799,9 @@ type EditFluxKontextDevV1RequestMetadata = {
|
|
|
2270
2799
|
* OpenAPI spec version: 1.0
|
|
2271
2800
|
*/
|
|
2272
2801
|
|
|
2273
|
-
interface
|
|
2274
|
-
input:
|
|
2275
|
-
metadata?:
|
|
2802
|
+
interface FluxKontextDevV1Request {
|
|
2803
|
+
input: FluxKontextV1InputDto;
|
|
2804
|
+
metadata?: FluxKontextDevV1RequestMetadata;
|
|
2276
2805
|
}
|
|
2277
2806
|
|
|
2278
2807
|
/**
|
|
@@ -2281,8 +2810,8 @@ interface EditFluxKontextDevV1Request {
|
|
|
2281
2810
|
* Hautech API
|
|
2282
2811
|
* OpenAPI spec version: 1.0
|
|
2283
2812
|
*/
|
|
2284
|
-
type
|
|
2285
|
-
declare const
|
|
2813
|
+
type FluxKontextDevV1ResponseKind = typeof FluxKontextDevV1ResponseKind[keyof typeof FluxKontextDevV1ResponseKind];
|
|
2814
|
+
declare const FluxKontextDevV1ResponseKind: {
|
|
2286
2815
|
readonly operation: "operation";
|
|
2287
2816
|
};
|
|
2288
2817
|
|
|
@@ -2292,7 +2821,7 @@ declare const EditFluxKontextDevV1ResponseKind: {
|
|
|
2292
2821
|
* Hautech API
|
|
2293
2822
|
* OpenAPI spec version: 1.0
|
|
2294
2823
|
*/
|
|
2295
|
-
type
|
|
2824
|
+
type FluxKontextDevV1ResponseInput = {
|
|
2296
2825
|
[key: string]: unknown;
|
|
2297
2826
|
};
|
|
2298
2827
|
|
|
@@ -2302,8 +2831,8 @@ type EditFluxKontextDevV1ResponseInput = {
|
|
|
2302
2831
|
* Hautech API
|
|
2303
2832
|
* OpenAPI spec version: 1.0
|
|
2304
2833
|
*/
|
|
2305
|
-
type
|
|
2306
|
-
declare const
|
|
2834
|
+
type FluxKontextDevV1ResponseStatus = typeof FluxKontextDevV1ResponseStatus[keyof typeof FluxKontextDevV1ResponseStatus];
|
|
2835
|
+
declare const FluxKontextDevV1ResponseStatus: {
|
|
2307
2836
|
readonly pending: "pending";
|
|
2308
2837
|
readonly finished: "finished";
|
|
2309
2838
|
readonly failed: "failed";
|
|
@@ -2315,7 +2844,7 @@ declare const EditFluxKontextDevV1ResponseStatus: {
|
|
|
2315
2844
|
* Hautech API
|
|
2316
2845
|
* OpenAPI spec version: 1.0
|
|
2317
2846
|
*/
|
|
2318
|
-
type
|
|
2847
|
+
type FluxKontextDevV1ResponseMetadata = {
|
|
2319
2848
|
[key: string]: unknown;
|
|
2320
2849
|
};
|
|
2321
2850
|
|
|
@@ -2326,11 +2855,11 @@ type EditFluxKontextDevV1ResponseMetadata = {
|
|
|
2326
2855
|
* OpenAPI spec version: 1.0
|
|
2327
2856
|
*/
|
|
2328
2857
|
|
|
2329
|
-
interface
|
|
2330
|
-
kind:
|
|
2858
|
+
interface FluxKontextDevV1Response {
|
|
2859
|
+
kind: FluxKontextDevV1ResponseKind;
|
|
2331
2860
|
output: OperationOutputImageSingle;
|
|
2332
|
-
input:
|
|
2333
|
-
status:
|
|
2861
|
+
input: FluxKontextDevV1ResponseInput;
|
|
2862
|
+
status: FluxKontextDevV1ResponseStatus;
|
|
2334
2863
|
type: string;
|
|
2335
2864
|
price?: string;
|
|
2336
2865
|
estimatedPrice?: string;
|
|
@@ -2338,7 +2867,7 @@ interface EditFluxKontextDevV1Response {
|
|
|
2338
2867
|
errorCode?: string;
|
|
2339
2868
|
id: string;
|
|
2340
2869
|
creatorId: string;
|
|
2341
|
-
metadata:
|
|
2870
|
+
metadata: FluxKontextDevV1ResponseMetadata;
|
|
2342
2871
|
createdAt: string;
|
|
2343
2872
|
updatedAt: string;
|
|
2344
2873
|
}
|
|
@@ -2349,12 +2878,8 @@ interface EditFluxKontextDevV1Response {
|
|
|
2349
2878
|
* Hautech API
|
|
2350
2879
|
* OpenAPI spec version: 1.0
|
|
2351
2880
|
*/
|
|
2352
|
-
type
|
|
2353
|
-
|
|
2354
|
-
readonly tops: "tops";
|
|
2355
|
-
readonly bottoms: "bottoms";
|
|
2356
|
-
readonly 'one-pieces': "one-pieces";
|
|
2357
|
-
readonly auto: "auto";
|
|
2881
|
+
type FluxKontextPrepareDatasetV1RequestMetadata = {
|
|
2882
|
+
[key: string]: unknown;
|
|
2358
2883
|
};
|
|
2359
2884
|
|
|
2360
2885
|
/**
|
|
@@ -2363,11 +2888,21 @@ declare const FashnVtonV1InputCategory: {
|
|
|
2363
2888
|
* Hautech API
|
|
2364
2889
|
* OpenAPI spec version: 1.0
|
|
2365
2890
|
*/
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2891
|
+
|
|
2892
|
+
interface FluxKontextPrepareDatasetV1Request {
|
|
2893
|
+
input: FluxKontextPrepareDatasetInputDto;
|
|
2894
|
+
metadata?: FluxKontextPrepareDatasetV1RequestMetadata;
|
|
2895
|
+
}
|
|
2896
|
+
|
|
2897
|
+
/**
|
|
2898
|
+
* Generated by orval v7.10.0 🍺
|
|
2899
|
+
* Do not edit manually.
|
|
2900
|
+
* Hautech API
|
|
2901
|
+
* OpenAPI spec version: 1.0
|
|
2902
|
+
*/
|
|
2903
|
+
type FluxKontextPrepareDatasetV1ResponseKind = typeof FluxKontextPrepareDatasetV1ResponseKind[keyof typeof FluxKontextPrepareDatasetV1ResponseKind];
|
|
2904
|
+
declare const FluxKontextPrepareDatasetV1ResponseKind: {
|
|
2905
|
+
readonly operation: "operation";
|
|
2371
2906
|
};
|
|
2372
2907
|
|
|
2373
2908
|
/**
|
|
@@ -2376,11 +2911,8 @@ declare const FashnVtonV1InputMode: {
|
|
|
2376
2911
|
* Hautech API
|
|
2377
2912
|
* OpenAPI spec version: 1.0
|
|
2378
2913
|
*/
|
|
2379
|
-
type
|
|
2380
|
-
|
|
2381
|
-
readonly auto: "auto";
|
|
2382
|
-
readonly model: "model";
|
|
2383
|
-
readonly 'flat-lay': "flat-lay";
|
|
2914
|
+
type FluxKontextPrepareDatasetV1ResponseInput = {
|
|
2915
|
+
[key: string]: unknown;
|
|
2384
2916
|
};
|
|
2385
2917
|
|
|
2386
2918
|
/**
|
|
@@ -2389,11 +2921,11 @@ declare const FashnVtonV1InputGarmentPhotoType: {
|
|
|
2389
2921
|
* Hautech API
|
|
2390
2922
|
* OpenAPI spec version: 1.0
|
|
2391
2923
|
*/
|
|
2392
|
-
type
|
|
2393
|
-
declare const
|
|
2394
|
-
readonly
|
|
2395
|
-
readonly
|
|
2396
|
-
readonly
|
|
2924
|
+
type FluxKontextPrepareDatasetV1ResponseStatus = typeof FluxKontextPrepareDatasetV1ResponseStatus[keyof typeof FluxKontextPrepareDatasetV1ResponseStatus];
|
|
2925
|
+
declare const FluxKontextPrepareDatasetV1ResponseStatus: {
|
|
2926
|
+
readonly pending: "pending";
|
|
2927
|
+
readonly finished: "finished";
|
|
2928
|
+
readonly failed: "failed";
|
|
2397
2929
|
};
|
|
2398
2930
|
|
|
2399
2931
|
/**
|
|
@@ -2402,16 +2934,32 @@ declare const FashnVtonV1InputModerationLevel: {
|
|
|
2402
2934
|
* Hautech API
|
|
2403
2935
|
* OpenAPI spec version: 1.0
|
|
2404
2936
|
*/
|
|
2937
|
+
type FluxKontextPrepareDatasetV1ResponseMetadata = {
|
|
2938
|
+
[key: string]: unknown;
|
|
2939
|
+
};
|
|
2405
2940
|
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2941
|
+
/**
|
|
2942
|
+
* Generated by orval v7.10.0 🍺
|
|
2943
|
+
* Do not edit manually.
|
|
2944
|
+
* Hautech API
|
|
2945
|
+
* OpenAPI spec version: 1.0
|
|
2946
|
+
*/
|
|
2947
|
+
|
|
2948
|
+
interface FluxKontextPrepareDatasetV1Response {
|
|
2949
|
+
kind: FluxKontextPrepareDatasetV1ResponseKind;
|
|
2950
|
+
output: FluxKontextPrepareDatasetOutputDto;
|
|
2951
|
+
input: FluxKontextPrepareDatasetV1ResponseInput;
|
|
2952
|
+
status: FluxKontextPrepareDatasetV1ResponseStatus;
|
|
2953
|
+
type: string;
|
|
2954
|
+
price?: string;
|
|
2955
|
+
estimatedPrice?: string;
|
|
2956
|
+
errorMessage?: string;
|
|
2957
|
+
errorCode?: string;
|
|
2958
|
+
id: string;
|
|
2959
|
+
creatorId: string;
|
|
2960
|
+
metadata: FluxKontextPrepareDatasetV1ResponseMetadata;
|
|
2961
|
+
createdAt: string;
|
|
2962
|
+
updatedAt: string;
|
|
2415
2963
|
}
|
|
2416
2964
|
|
|
2417
2965
|
/**
|
|
@@ -2420,7 +2968,7 @@ interface FashnVtonV1Input {
|
|
|
2420
2968
|
* Hautech API
|
|
2421
2969
|
* OpenAPI spec version: 1.0
|
|
2422
2970
|
*/
|
|
2423
|
-
type
|
|
2971
|
+
type FluxKontextTrainV1RequestMetadata = {
|
|
2424
2972
|
[key: string]: unknown;
|
|
2425
2973
|
};
|
|
2426
2974
|
|
|
@@ -2431,9 +2979,9 @@ type FashnVton16V1RequestMetadata = {
|
|
|
2431
2979
|
* OpenAPI spec version: 1.0
|
|
2432
2980
|
*/
|
|
2433
2981
|
|
|
2434
|
-
interface
|
|
2435
|
-
input:
|
|
2436
|
-
metadata?:
|
|
2982
|
+
interface FluxKontextTrainV1Request {
|
|
2983
|
+
input: FluxKontextTrainInputDto;
|
|
2984
|
+
metadata?: FluxKontextTrainV1RequestMetadata;
|
|
2437
2985
|
}
|
|
2438
2986
|
|
|
2439
2987
|
/**
|
|
@@ -2442,8 +2990,8 @@ interface FashnVton16V1Request {
|
|
|
2442
2990
|
* Hautech API
|
|
2443
2991
|
* OpenAPI spec version: 1.0
|
|
2444
2992
|
*/
|
|
2445
|
-
type
|
|
2446
|
-
declare const
|
|
2993
|
+
type FluxKontextTrainV1ResponseKind = typeof FluxKontextTrainV1ResponseKind[keyof typeof FluxKontextTrainV1ResponseKind];
|
|
2994
|
+
declare const FluxKontextTrainV1ResponseKind: {
|
|
2447
2995
|
readonly operation: "operation";
|
|
2448
2996
|
};
|
|
2449
2997
|
|
|
@@ -2453,7 +3001,7 @@ declare const FashnVton16V1ResponseKind: {
|
|
|
2453
3001
|
* Hautech API
|
|
2454
3002
|
* OpenAPI spec version: 1.0
|
|
2455
3003
|
*/
|
|
2456
|
-
type
|
|
3004
|
+
type FluxKontextTrainV1ResponseInput = {
|
|
2457
3005
|
[key: string]: unknown;
|
|
2458
3006
|
};
|
|
2459
3007
|
|
|
@@ -2463,8 +3011,8 @@ type FashnVton16V1ResponseInput = {
|
|
|
2463
3011
|
* Hautech API
|
|
2464
3012
|
* OpenAPI spec version: 1.0
|
|
2465
3013
|
*/
|
|
2466
|
-
type
|
|
2467
|
-
declare const
|
|
3014
|
+
type FluxKontextTrainV1ResponseStatus = typeof FluxKontextTrainV1ResponseStatus[keyof typeof FluxKontextTrainV1ResponseStatus];
|
|
3015
|
+
declare const FluxKontextTrainV1ResponseStatus: {
|
|
2468
3016
|
readonly pending: "pending";
|
|
2469
3017
|
readonly finished: "finished";
|
|
2470
3018
|
readonly failed: "failed";
|
|
@@ -2476,7 +3024,7 @@ declare const FashnVton16V1ResponseStatus: {
|
|
|
2476
3024
|
* Hautech API
|
|
2477
3025
|
* OpenAPI spec version: 1.0
|
|
2478
3026
|
*/
|
|
2479
|
-
type
|
|
3027
|
+
type FluxKontextTrainV1ResponseMetadata = {
|
|
2480
3028
|
[key: string]: unknown;
|
|
2481
3029
|
};
|
|
2482
3030
|
|
|
@@ -2487,11 +3035,11 @@ type FashnVton16V1ResponseMetadata = {
|
|
|
2487
3035
|
* OpenAPI spec version: 1.0
|
|
2488
3036
|
*/
|
|
2489
3037
|
|
|
2490
|
-
interface
|
|
2491
|
-
kind:
|
|
2492
|
-
output:
|
|
2493
|
-
input:
|
|
2494
|
-
status:
|
|
3038
|
+
interface FluxKontextTrainV1Response {
|
|
3039
|
+
kind: FluxKontextTrainV1ResponseKind;
|
|
3040
|
+
output: FluxKontextTrainOutputDto;
|
|
3041
|
+
input: FluxKontextTrainV1ResponseInput;
|
|
3042
|
+
status: FluxKontextTrainV1ResponseStatus;
|
|
2495
3043
|
type: string;
|
|
2496
3044
|
price?: string;
|
|
2497
3045
|
estimatedPrice?: string;
|
|
@@ -2499,7 +3047,7 @@ interface FashnVton16V1Response {
|
|
|
2499
3047
|
errorCode?: string;
|
|
2500
3048
|
id: string;
|
|
2501
3049
|
creatorId: string;
|
|
2502
|
-
metadata:
|
|
3050
|
+
metadata: FluxKontextTrainV1ResponseMetadata;
|
|
2503
3051
|
createdAt: string;
|
|
2504
3052
|
updatedAt: string;
|
|
2505
3053
|
}
|
|
@@ -2510,8 +3058,88 @@ interface FashnVton16V1Response {
|
|
|
2510
3058
|
* Hautech API
|
|
2511
3059
|
* OpenAPI spec version: 1.0
|
|
2512
3060
|
*/
|
|
2513
|
-
|
|
3061
|
+
type FluxKontextV1RequestMetadata = {
|
|
3062
|
+
[key: string]: unknown;
|
|
3063
|
+
};
|
|
3064
|
+
|
|
3065
|
+
/**
|
|
3066
|
+
* Generated by orval v7.10.0 🍺
|
|
3067
|
+
* Do not edit manually.
|
|
3068
|
+
* Hautech API
|
|
3069
|
+
* OpenAPI spec version: 1.0
|
|
3070
|
+
*/
|
|
3071
|
+
|
|
3072
|
+
interface FluxKontextV1Request {
|
|
3073
|
+
input: FluxKontextV1InputDto;
|
|
3074
|
+
metadata?: FluxKontextV1RequestMetadata;
|
|
3075
|
+
}
|
|
3076
|
+
|
|
3077
|
+
/**
|
|
3078
|
+
* Generated by orval v7.10.0 🍺
|
|
3079
|
+
* Do not edit manually.
|
|
3080
|
+
* Hautech API
|
|
3081
|
+
* OpenAPI spec version: 1.0
|
|
3082
|
+
*/
|
|
3083
|
+
type FluxKontextV1ResponseKind = typeof FluxKontextV1ResponseKind[keyof typeof FluxKontextV1ResponseKind];
|
|
3084
|
+
declare const FluxKontextV1ResponseKind: {
|
|
3085
|
+
readonly operation: "operation";
|
|
3086
|
+
};
|
|
3087
|
+
|
|
3088
|
+
/**
|
|
3089
|
+
* Generated by orval v7.10.0 🍺
|
|
3090
|
+
* Do not edit manually.
|
|
3091
|
+
* Hautech API
|
|
3092
|
+
* OpenAPI spec version: 1.0
|
|
3093
|
+
*/
|
|
3094
|
+
type FluxKontextV1ResponseInput = {
|
|
3095
|
+
[key: string]: unknown;
|
|
3096
|
+
};
|
|
3097
|
+
|
|
3098
|
+
/**
|
|
3099
|
+
* Generated by orval v7.10.0 🍺
|
|
3100
|
+
* Do not edit manually.
|
|
3101
|
+
* Hautech API
|
|
3102
|
+
* OpenAPI spec version: 1.0
|
|
3103
|
+
*/
|
|
3104
|
+
type FluxKontextV1ResponseStatus = typeof FluxKontextV1ResponseStatus[keyof typeof FluxKontextV1ResponseStatus];
|
|
3105
|
+
declare const FluxKontextV1ResponseStatus: {
|
|
3106
|
+
readonly pending: "pending";
|
|
3107
|
+
readonly finished: "finished";
|
|
3108
|
+
readonly failed: "failed";
|
|
3109
|
+
};
|
|
3110
|
+
|
|
3111
|
+
/**
|
|
3112
|
+
* Generated by orval v7.10.0 🍺
|
|
3113
|
+
* Do not edit manually.
|
|
3114
|
+
* Hautech API
|
|
3115
|
+
* OpenAPI spec version: 1.0
|
|
3116
|
+
*/
|
|
3117
|
+
type FluxKontextV1ResponseMetadata = {
|
|
2514
3118
|
[key: string]: unknown;
|
|
3119
|
+
};
|
|
3120
|
+
|
|
3121
|
+
/**
|
|
3122
|
+
* Generated by orval v7.10.0 🍺
|
|
3123
|
+
* Do not edit manually.
|
|
3124
|
+
* Hautech API
|
|
3125
|
+
* OpenAPI spec version: 1.0
|
|
3126
|
+
*/
|
|
3127
|
+
|
|
3128
|
+
interface FluxKontextV1Response {
|
|
3129
|
+
kind: FluxKontextV1ResponseKind;
|
|
3130
|
+
output: OperationOutputImageSingle;
|
|
3131
|
+
input: FluxKontextV1ResponseInput;
|
|
3132
|
+
status: FluxKontextV1ResponseStatus;
|
|
3133
|
+
type: string;
|
|
3134
|
+
price?: string;
|
|
3135
|
+
estimatedPrice?: string;
|
|
3136
|
+
errorMessage?: string;
|
|
3137
|
+
errorCode?: string;
|
|
3138
|
+
id: string;
|
|
3139
|
+
creatorId: string;
|
|
3140
|
+
metadata: FluxKontextV1ResponseMetadata;
|
|
3141
|
+
createdAt: string;
|
|
3142
|
+
updatedAt: string;
|
|
2515
3143
|
}
|
|
2516
3144
|
|
|
2517
3145
|
/**
|
|
@@ -12975,6 +13603,17 @@ declare const pipelineDefinitions: {
|
|
|
12975
13603
|
v1: (workflowsRunV1Request: WorkflowsRunV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<WorkflowsRunV1Response, any>>;
|
|
12976
13604
|
};
|
|
12977
13605
|
};
|
|
13606
|
+
flux: {
|
|
13607
|
+
kontext_dev: {
|
|
13608
|
+
prepare_dataset: {
|
|
13609
|
+
v1: (fluxKontextDevPrepareDatasetV1Request: FluxKontextDevPrepareDatasetV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<FluxKontextDevPrepareDatasetV1Response, any>>;
|
|
13610
|
+
};
|
|
13611
|
+
train: {
|
|
13612
|
+
v1: (fluxKontextDevTrainV1Request: FluxKontextDevTrainV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<FluxKontextDevTrainV1Response, any>>;
|
|
13613
|
+
};
|
|
13614
|
+
v1: (fluxKontextDevV1Request: FluxKontextDevV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<FluxKontextDevV1Response, any>>;
|
|
13615
|
+
};
|
|
13616
|
+
};
|
|
12978
13617
|
};
|
|
12979
13618
|
};
|
|
12980
13619
|
poses: {
|
|
@@ -13008,11 +13647,11 @@ declare const pipelineDefinitions: {
|
|
|
13008
13647
|
};
|
|
13009
13648
|
declare const getDirectoryApiDefinitions: () => {
|
|
13010
13649
|
userProfiles: ApiDefinitionTree<{
|
|
13011
|
-
create: (createUserProfileDto: CreateUserProfileDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<
|
|
13012
|
-
list: (options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<
|
|
13013
|
-
self: (options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<
|
|
13014
|
-
getByHandle: (handle: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<
|
|
13015
|
-
update: (id: string, updateUserProfileDto: UpdateUserProfileDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<
|
|
13650
|
+
create: (createUserProfileDto: CreateUserProfileDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<void, any>>;
|
|
13651
|
+
list: (options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<void, any>>;
|
|
13652
|
+
self: (options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<void, any>>;
|
|
13653
|
+
getByHandle: (handle: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<void | null, any>>;
|
|
13654
|
+
update: (id: string, updateUserProfileDto: UpdateUserProfileDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<void, any>>;
|
|
13016
13655
|
}>;
|
|
13017
13656
|
};
|
|
13018
13657
|
declare const getWsClientDefinitions: (config: Config) => {
|
|
@@ -13177,4 +13816,4 @@ declare const createTokenSigner: (options: {
|
|
|
13177
13816
|
}) => Promise<string>;
|
|
13178
13817
|
};
|
|
13179
13818
|
|
|
13180
|
-
export { type AccessControllerListSharedV1Params, AccessControllerListSharedV1Type, 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 AlphabakeVtonV1Input, AlphabakeVtonV1InputGarmentType, AlphabakeVtonV1InputMode, AlphabakeVtonV1InputProcessAsset, type AlphabakeVtonV1Request, type AlphabakeVtonV1RequestMetadata, type AlphabakeVtonV1Response, type AlphabakeVtonV1ResponseInput, AlphabakeVtonV1ResponseKind, type AlphabakeVtonV1ResponseMetadata, AlphabakeVtonV1ResponseStatus, 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 CreateWorkflowParamsDtoPipelineTemplate, 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 DatasetItemDto, type Decimal, type DeepWrap, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type DirectorySDK, type DirectorySDKOptions, 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 FashnVton16V1Request, type FashnVton16V1RequestMetadata, type FashnVton16V1Response, type FashnVton16V1ResponseInput, FashnVton16V1ResponseKind, type FashnVton16V1ResponseMetadata, FashnVton16V1ResponseStatus, type FashnVtonV1Input, FashnVtonV1InputCategory, FashnVtonV1InputGarmentPhotoType, FashnVtonV1InputMode, FashnVtonV1InputModerationLevel, type Flux11ProUltraV1Input, 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 GPTV3FileSearchCallDetailsDto, type GPTV3FileSearchCallDetailsDtoFilters, type GPTV3FileSearchCallDetailsDtoRanking, type GPTV3FileSearchCallDto, GPTV3FileSearchCallDtoType, type GPTV3FileSearchToolDto, GPTV3FileSearchToolDtoType, type GPTV3FunctionCallDetailsDto, type GPTV3FunctionToolDto, type GPTV3FunctionToolDtoParameters, GPTV3FunctionToolDtoType, type GPTV3ImageGenerationCallDto, GPTV3ImageGenerationCallDtoType, type GPTV3ImageGenerationToolDto, GPTV3ImageGenerationToolDtoQuality, GPTV3ImageGenerationToolDtoSize, GPTV3ImageGenerationToolDtoType, type GPTV3ImageInputDto, GPTV3ImageInputDtoDetail, GPTV3ImageInputDtoType, type GPTV3Input, type GPTV3InputInput, type GPTV3InputInputOneOfItem, GPTV3InputModel, type GPTV3InputToolChoice, type GPTV3InputToolsItem, 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 GPTV3ResponseDtoOutputItem, 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 GPTV3TextConfigDto, type GPTV3TextConfigDtoFormat, type GPTV3TextInputDto, GPTV3TextInputDtoType, type GPTV3WebSearchCallDto, GPTV3WebSearchCallDtoType, 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, GoogleNanoBananaV1InputOutputFormat, 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 HauteNaomiPrepareDatasetV1Request, type HauteNaomiPrepareDatasetV1RequestMetadata, type HauteNaomiPrepareDatasetV1Response, type HauteNaomiPrepareDatasetV1ResponseInput, HauteNaomiPrepareDatasetV1ResponseKind, type HauteNaomiPrepareDatasetV1ResponseMetadata, HauteNaomiPrepareDatasetV1ResponseStatus, type HauteNaomiTrainV1Request, type HauteNaomiTrainV1RequestMetadata, type HauteNaomiTrainV1Response, type HauteNaomiTrainV1ResponseInput, HauteNaomiTrainV1ResponseKind, type HauteNaomiTrainV1ResponseMetadata, HauteNaomiTrainV1ResponseStatus, 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 ImageCompositionJson, type ImageCompositionJsonElementsItem, type ImageEntity, ImageEntityKind, type ImageEntityMetadata, type ImageRepresentationResponseDto, type ImageUrlResponseDto, type Imagen4FastV1Input, Imagen4FastV1InputAspectRatio, type Imagen4FastV1Request, type Imagen4FastV1RequestMetadata, type Imagen4FastV1Response, type Imagen4FastV1ResponseInput, Imagen4FastV1ResponseKind, type Imagen4FastV1ResponseMetadata, Imagen4FastV1ResponseStatus, 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 JsonToImageV1Input, type JsonToImageV1Request, type JsonToImageV1RequestMetadata, type JsonToImageV1Response, type JsonToImageV1ResponseInput, JsonToImageV1ResponseKind, type JsonToImageV1ResponseMetadata, JsonToImageV1ResponseStatus, type JsonToVideoV1Input, type JsonToVideoV1Request, type JsonToVideoV1RequestMetadata, type JsonToVideoV1Response, type JsonToVideoV1ResponseInput, JsonToVideoV1ResponseKind, type JsonToVideoV1ResponseMetadata, JsonToVideoV1ResponseStatus, type KateImagineV1Input, KateImagineV1InputAspectRatio, type KateInpaintV1Input, KateInpaintV1InputBranch, type KlingKolorsVtonV1Input, type KlingKolorsVtonV1Request, type KlingKolorsVtonV1RequestMetadata, type KlingKolorsVtonV1Response, type KlingKolorsVtonV1ResponseInput, KlingKolorsVtonV1ResponseKind, type KlingKolorsVtonV1ResponseMetadata, KlingKolorsVtonV1ResponseStatus, 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 ListSharedResourcesResponseDto, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderBy, type ListWorkflowsDto, LoraControllerGetLorasV1ModelType, type LoraControllerGetLorasV1Params, type LoraDto, LoraDtoModelType, LoraDtoStatus, 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 NaomiHauteTrainInputDto, type NaomiHauteTrainOutputDto, NaomiHauteTrainOutputDtoKind, type NaomiHauteTrainResultDto, type NaomiHauteV1Input, NaomiHauteV1InputMode, type NaomiPrepareDatasetInputDto, type NaomiPrepareDatasetOutputDto, NaomiPrepareDatasetOutputDtoKind, type NaomiPrepareDatasetResultDto, 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 OperationOutputNumber, OperationOutputNumberKind, 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 SeedV1Input, type SeedV1InputSeed, type SeedV1InputSeedId, type SeedV1Request, type SeedV1RequestMetadata, type SeedV1Response, type SeedV1ResponseInput, SeedV1ResponseKind, type SeedV1ResponseMetadata, SeedV1ResponseStatus, type Seedream3V1Input, Seedream3V1InputAspectRatio, Seedream3V1InputSize, type Seedream3V1Request, type Seedream3V1RequestMetadata, type Seedream3V1Response, type Seedream3V1ResponseInput, Seedream3V1ResponseKind, type Seedream3V1ResponseMetadata, Seedream3V1ResponseStatus, type Seedream4EditV1Input, type Seedream4EditV1Request, type Seedream4EditV1RequestMetadata, type Seedream4EditV1Response, type Seedream4EditV1ResponseInput, Seedream4EditV1ResponseKind, type Seedream4EditV1ResponseMetadata, Seedream4EditV1ResponseStatus, type Seedream4T2IV1Input, type Seedream4T2iV1Request, type Seedream4T2iV1RequestMetadata, type Seedream4T2iV1Response, type Seedream4T2iV1ResponseInput, Seedream4T2iV1ResponseKind, type Seedream4T2iV1ResponseMetadata, Seedream4T2iV1ResponseStatus, 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 SharedResourceDto, SharedResourceDtoType, type StackEntity, type StackEntityItemsItem, StackEntityKind, type StackEntityMetadata, StacksControllerListStacksV1OrderBy, type StacksControllerListStacksV1Params, 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 UpdateWorkflowParamsDtoPipelineTemplate, type UploadControllerGetUploadedFileUrlV1Params, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1RequestMetadata, type UpscaleV1Response, type UpscaleV1ResponseInput, UpscaleV1ResponseKind, type UpscaleV1ResponseMetadata, UpscaleV1ResponseStatus, type VariableDto, type VariableDtoValue, 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 VideoCompositionJson, type VideoCompositionJsonElementsItem, 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, type WorkflowDtoPipelineTemplate, type WorkflowStatisticsDto, WorkflowsControllerListWorkflowsV1OrderBy, type WorkflowsControllerListWorkflowsV1Params, type WorkflowsRunV1Input, type WorkflowsRunV1InputInput, type WorkflowsRunV1InputMetadata, type WorkflowsRunV1Output, type WorkflowsRunV1OutputOutput, type WorkflowsRunV1Request, type WorkflowsRunV1RequestMetadata, type WorkflowsRunV1Response, type WorkflowsRunV1ResponseInput, WorkflowsRunV1ResponseKind, type WorkflowsRunV1ResponseMetadata, WorkflowsRunV1ResponseStatus, type WsEventEntity, type WsEventMap, type Yolo11xPoseV1Input, type Yolo11xPoseV1Output, Yolo11xPoseV1OutputKind, type Yolo11xPoseV1Request, type Yolo11xPoseV1RequestMetadata, type Yolo11xPoseV1Response, type Yolo11xPoseV1ResponseInput, Yolo11xPoseV1ResponseKind, type Yolo11xPoseV1ResponseMetadata, Yolo11xPoseV1ResponseStatus, createDirectorySDK, createSDK, createTokenSigner };
|
|
13819
|
+
export { type AccessControllerListSharedV1Params, AccessControllerListSharedV1Type, 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 AlphabakeVtonV1Input, AlphabakeVtonV1InputGarmentType, AlphabakeVtonV1InputMode, AlphabakeVtonV1InputProcessAsset, type AlphabakeVtonV1Request, type AlphabakeVtonV1RequestMetadata, type AlphabakeVtonV1Response, type AlphabakeVtonV1ResponseInput, AlphabakeVtonV1ResponseKind, type AlphabakeVtonV1ResponseMetadata, AlphabakeVtonV1ResponseStatus, 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 CreateWorkflowParamsDtoPipelineTemplate, 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 DatasetItemDto, type Decimal, type DeepWrap, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type DirectorySDK, type DirectorySDKOptions, 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 FashnVton16V1Request, type FashnVton16V1RequestMetadata, type FashnVton16V1Response, type FashnVton16V1ResponseInput, FashnVton16V1ResponseKind, type FashnVton16V1ResponseMetadata, FashnVton16V1ResponseStatus, type FashnVtonV1Input, FashnVtonV1InputCategory, FashnVtonV1InputGarmentPhotoType, FashnVtonV1InputMode, FashnVtonV1InputModerationLevel, type Flux11ProUltraV1Input, type FluxKontextDatasetItemDto, type FluxKontextDevPrepareDatasetV1Request, type FluxKontextDevPrepareDatasetV1RequestMetadata, type FluxKontextDevPrepareDatasetV1Response, type FluxKontextDevPrepareDatasetV1ResponseInput, FluxKontextDevPrepareDatasetV1ResponseKind, type FluxKontextDevPrepareDatasetV1ResponseMetadata, FluxKontextDevPrepareDatasetV1ResponseStatus, type FluxKontextDevTrainV1Request, type FluxKontextDevTrainV1RequestMetadata, type FluxKontextDevTrainV1Response, type FluxKontextDevTrainV1ResponseInput, FluxKontextDevTrainV1ResponseKind, type FluxKontextDevTrainV1ResponseMetadata, FluxKontextDevTrainV1ResponseStatus, type FluxKontextDevV1Request, type FluxKontextDevV1RequestMetadata, type FluxKontextDevV1Response, type FluxKontextDevV1ResponseInput, FluxKontextDevV1ResponseKind, type FluxKontextDevV1ResponseMetadata, FluxKontextDevV1ResponseStatus, type FluxKontextPrepareDatasetInputDto, type FluxKontextPrepareDatasetOutputDto, FluxKontextPrepareDatasetOutputDtoKind, type FluxKontextPrepareDatasetResultDto, type FluxKontextPrepareDatasetV1Request, type FluxKontextPrepareDatasetV1RequestMetadata, type FluxKontextPrepareDatasetV1Response, type FluxKontextPrepareDatasetV1ResponseInput, FluxKontextPrepareDatasetV1ResponseKind, type FluxKontextPrepareDatasetV1ResponseMetadata, FluxKontextPrepareDatasetV1ResponseStatus, type FluxKontextTrainInputDto, type FluxKontextTrainOutputDto, FluxKontextTrainOutputDtoKind, type FluxKontextTrainResultDto, type FluxKontextTrainV1Request, type FluxKontextTrainV1RequestMetadata, type FluxKontextTrainV1Response, type FluxKontextTrainV1ResponseInput, FluxKontextTrainV1ResponseKind, type FluxKontextTrainV1ResponseMetadata, FluxKontextTrainV1ResponseStatus, type FluxKontextV1InputDto, type FluxKontextV1Request, type FluxKontextV1RequestMetadata, type FluxKontextV1Response, type FluxKontextV1ResponseInput, FluxKontextV1ResponseKind, type FluxKontextV1ResponseMetadata, FluxKontextV1ResponseStatus, 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 GPTV3FileSearchCallDetailsDto, type GPTV3FileSearchCallDetailsDtoFilters, type GPTV3FileSearchCallDetailsDtoRanking, type GPTV3FileSearchCallDto, GPTV3FileSearchCallDtoType, type GPTV3FileSearchToolDto, GPTV3FileSearchToolDtoType, type GPTV3FunctionCallDetailsDto, type GPTV3FunctionToolDto, type GPTV3FunctionToolDtoParameters, GPTV3FunctionToolDtoType, type GPTV3ImageGenerationCallDto, GPTV3ImageGenerationCallDtoType, type GPTV3ImageGenerationToolDto, GPTV3ImageGenerationToolDtoQuality, GPTV3ImageGenerationToolDtoSize, GPTV3ImageGenerationToolDtoType, type GPTV3ImageInputDto, GPTV3ImageInputDtoDetail, GPTV3ImageInputDtoType, type GPTV3Input, type GPTV3InputInput, type GPTV3InputInputOneOfItem, GPTV3InputModel, type GPTV3InputToolChoice, type GPTV3InputToolsItem, 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 GPTV3ResponseDtoOutputItem, 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 GPTV3TextConfigDto, type GPTV3TextConfigDtoFormat, type GPTV3TextInputDto, GPTV3TextInputDtoType, type GPTV3WebSearchCallDto, GPTV3WebSearchCallDtoType, 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, GoogleNanoBananaV1InputOutputFormat, 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 HauteNaomiPrepareDatasetV1Request, type HauteNaomiPrepareDatasetV1RequestMetadata, type HauteNaomiPrepareDatasetV1Response, type HauteNaomiPrepareDatasetV1ResponseInput, HauteNaomiPrepareDatasetV1ResponseKind, type HauteNaomiPrepareDatasetV1ResponseMetadata, HauteNaomiPrepareDatasetV1ResponseStatus, type HauteNaomiTrainV1Request, type HauteNaomiTrainV1RequestMetadata, type HauteNaomiTrainV1Response, type HauteNaomiTrainV1ResponseInput, HauteNaomiTrainV1ResponseKind, type HauteNaomiTrainV1ResponseMetadata, HauteNaomiTrainV1ResponseStatus, 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 ImageCompositionJson, type ImageCompositionJsonElementsItem, type ImageEntity, ImageEntityKind, type ImageEntityMetadata, type ImageRepresentationResponseDto, type ImageUrlResponseDto, type Imagen4FastV1Input, Imagen4FastV1InputAspectRatio, type Imagen4FastV1Request, type Imagen4FastV1RequestMetadata, type Imagen4FastV1Response, type Imagen4FastV1ResponseInput, Imagen4FastV1ResponseKind, type Imagen4FastV1ResponseMetadata, Imagen4FastV1ResponseStatus, 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 JsonToImageV1Input, type JsonToImageV1Request, type JsonToImageV1RequestMetadata, type JsonToImageV1Response, type JsonToImageV1ResponseInput, JsonToImageV1ResponseKind, type JsonToImageV1ResponseMetadata, JsonToImageV1ResponseStatus, type JsonToVideoV1Input, type JsonToVideoV1Request, type JsonToVideoV1RequestMetadata, type JsonToVideoV1Response, type JsonToVideoV1ResponseInput, JsonToVideoV1ResponseKind, type JsonToVideoV1ResponseMetadata, JsonToVideoV1ResponseStatus, type KateImagineV1Input, KateImagineV1InputAspectRatio, type KateInpaintV1Input, KateInpaintV1InputBranch, type KlingKolorsVtonV1Input, type KlingKolorsVtonV1Request, type KlingKolorsVtonV1RequestMetadata, type KlingKolorsVtonV1Response, type KlingKolorsVtonV1ResponseInput, KlingKolorsVtonV1ResponseKind, type KlingKolorsVtonV1ResponseMetadata, KlingKolorsVtonV1ResponseStatus, 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 ListSharedResourcesResponseDto, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderBy, type ListWorkflowsDto, LoraControllerGetLorasV1ModelType, type LoraControllerGetLorasV1Params, type LoraDto, LoraDtoModelType, LoraDtoStatus, 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 NaomiHauteTrainInputDto, type NaomiHauteTrainOutputDto, NaomiHauteTrainOutputDtoKind, type NaomiHauteTrainResultDto, type NaomiHauteV1Input, NaomiHauteV1InputMode, type NaomiPrepareDatasetInputDto, type NaomiPrepareDatasetOutputDto, NaomiPrepareDatasetOutputDtoKind, type NaomiPrepareDatasetResultDto, 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 OperationOutputNumber, OperationOutputNumberKind, 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 SeedV1Input, type SeedV1InputSeed, type SeedV1InputSeedId, type SeedV1Request, type SeedV1RequestMetadata, type SeedV1Response, type SeedV1ResponseInput, SeedV1ResponseKind, type SeedV1ResponseMetadata, SeedV1ResponseStatus, type Seedream3V1Input, Seedream3V1InputAspectRatio, Seedream3V1InputSize, type Seedream3V1Request, type Seedream3V1RequestMetadata, type Seedream3V1Response, type Seedream3V1ResponseInput, Seedream3V1ResponseKind, type Seedream3V1ResponseMetadata, Seedream3V1ResponseStatus, type Seedream4EditV1Input, type Seedream4EditV1Request, type Seedream4EditV1RequestMetadata, type Seedream4EditV1Response, type Seedream4EditV1ResponseInput, Seedream4EditV1ResponseKind, type Seedream4EditV1ResponseMetadata, Seedream4EditV1ResponseStatus, type Seedream4T2IV1Input, type Seedream4T2iV1Request, type Seedream4T2iV1RequestMetadata, type Seedream4T2iV1Response, type Seedream4T2iV1ResponseInput, Seedream4T2iV1ResponseKind, type Seedream4T2iV1ResponseMetadata, Seedream4T2iV1ResponseStatus, 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 SharedResourceDto, SharedResourceDtoType, type StackEntity, type StackEntityItemsItem, StackEntityKind, type StackEntityMetadata, StacksControllerListStacksV1OrderBy, type StacksControllerListStacksV1Params, 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 UpdateWorkflowParamsDtoPipelineTemplate, type UploadControllerGetUploadedFileUrlV1Params, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1RequestMetadata, type UpscaleV1Response, type UpscaleV1ResponseInput, UpscaleV1ResponseKind, type UpscaleV1ResponseMetadata, UpscaleV1ResponseStatus, type VariableDto, type VariableDtoValue, 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 VideoCompositionJson, type VideoCompositionJsonElementsItem, 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, type WorkflowDtoPipelineTemplate, type WorkflowStatisticsDto, WorkflowsControllerListWorkflowsV1OrderBy, type WorkflowsControllerListWorkflowsV1Params, type WorkflowsRunV1Input, type WorkflowsRunV1InputInput, type WorkflowsRunV1InputMetadata, type WorkflowsRunV1Output, type WorkflowsRunV1OutputOutput, type WorkflowsRunV1Request, type WorkflowsRunV1RequestMetadata, type WorkflowsRunV1Response, type WorkflowsRunV1ResponseInput, WorkflowsRunV1ResponseKind, type WorkflowsRunV1ResponseMetadata, WorkflowsRunV1ResponseStatus, type WsEventEntity, type WsEventMap, type Yolo11xPoseV1Input, type Yolo11xPoseV1Output, Yolo11xPoseV1OutputKind, type Yolo11xPoseV1Request, type Yolo11xPoseV1RequestMetadata, type Yolo11xPoseV1Response, type Yolo11xPoseV1ResponseInput, Yolo11xPoseV1ResponseKind, type Yolo11xPoseV1ResponseMetadata, Yolo11xPoseV1ResponseStatus, createDirectorySDK, createSDK, createTokenSigner };
|