@hautechai/sdk 2.9.2 → 2.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +171 -38
- package/dist/index.d.ts +171 -38
- package/dist/index.js +62 -100
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +58 -100
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6570,6 +6570,7 @@ interface NaomiHauteV1Input {
|
|
|
6570
6570
|
*/
|
|
6571
6571
|
numInferenceSteps?: number;
|
|
6572
6572
|
mode?: NaomiHauteV1InputMode;
|
|
6573
|
+
extraLoraUrls?: string[];
|
|
6573
6574
|
}
|
|
6574
6575
|
|
|
6575
6576
|
/**
|
|
@@ -7647,11 +7648,11 @@ declare const LoraDtoStatus: {
|
|
|
7647
7648
|
*/
|
|
7648
7649
|
|
|
7649
7650
|
interface LoraDto {
|
|
7650
|
-
id: string;
|
|
7651
7651
|
modelName: string;
|
|
7652
7652
|
modelOwner: string;
|
|
7653
7653
|
modelVersion: string;
|
|
7654
7654
|
trainingId: string;
|
|
7655
|
+
connectedOperationId: string;
|
|
7655
7656
|
weightsUrl?: string;
|
|
7656
7657
|
destination: string;
|
|
7657
7658
|
input: LoraDtoInput;
|
|
@@ -8171,6 +8172,155 @@ type LoraControllerListV1Params = {
|
|
|
8171
8172
|
cursor?: string;
|
|
8172
8173
|
};
|
|
8173
8174
|
|
|
8175
|
+
/**
|
|
8176
|
+
* Generated by orval v7.10.0 🍺
|
|
8177
|
+
* Do not edit manually.
|
|
8178
|
+
* Hautech API
|
|
8179
|
+
* OpenAPI spec version: 1.0
|
|
8180
|
+
*/
|
|
8181
|
+
type LoraTrainingOutputKind = typeof LoraTrainingOutputKind[keyof typeof LoraTrainingOutputKind];
|
|
8182
|
+
declare const LoraTrainingOutputKind: {
|
|
8183
|
+
readonly json: "json";
|
|
8184
|
+
};
|
|
8185
|
+
|
|
8186
|
+
/**
|
|
8187
|
+
* Generated by orval v7.10.0 🍺
|
|
8188
|
+
* Do not edit manually.
|
|
8189
|
+
* Hautech API
|
|
8190
|
+
* OpenAPI spec version: 1.0
|
|
8191
|
+
*/
|
|
8192
|
+
|
|
8193
|
+
interface LoraTrainingOutput {
|
|
8194
|
+
kind: LoraTrainingOutputKind;
|
|
8195
|
+
data: LoraDto;
|
|
8196
|
+
}
|
|
8197
|
+
|
|
8198
|
+
/**
|
|
8199
|
+
* Generated by orval v7.10.0 🍺
|
|
8200
|
+
* Do not edit manually.
|
|
8201
|
+
* Hautech API
|
|
8202
|
+
* OpenAPI spec version: 1.0
|
|
8203
|
+
*/
|
|
8204
|
+
type StartTrainingParamsDtoModelType = typeof StartTrainingParamsDtoModelType[keyof typeof StartTrainingParamsDtoModelType];
|
|
8205
|
+
declare const StartTrainingParamsDtoModelType: {
|
|
8206
|
+
readonly flux: "flux";
|
|
8207
|
+
readonly naomi: "naomi";
|
|
8208
|
+
readonly custom: "custom";
|
|
8209
|
+
};
|
|
8210
|
+
|
|
8211
|
+
/**
|
|
8212
|
+
* Generated by orval v7.10.0 🍺
|
|
8213
|
+
* Do not edit manually.
|
|
8214
|
+
* Hautech API
|
|
8215
|
+
* OpenAPI spec version: 1.0
|
|
8216
|
+
*/
|
|
8217
|
+
type StartTrainingParamsDtoInput = {
|
|
8218
|
+
[key: string]: unknown;
|
|
8219
|
+
};
|
|
8220
|
+
|
|
8221
|
+
/**
|
|
8222
|
+
* Generated by orval v7.10.0 🍺
|
|
8223
|
+
* Do not edit manually.
|
|
8224
|
+
* Hautech API
|
|
8225
|
+
* OpenAPI spec version: 1.0
|
|
8226
|
+
*/
|
|
8227
|
+
|
|
8228
|
+
interface StartTrainingParamsDto {
|
|
8229
|
+
modelType: StartTrainingParamsDtoModelType;
|
|
8230
|
+
modelName?: string;
|
|
8231
|
+
modelOwner?: string;
|
|
8232
|
+
modelVersion?: string;
|
|
8233
|
+
input: StartTrainingParamsDtoInput;
|
|
8234
|
+
}
|
|
8235
|
+
|
|
8236
|
+
/**
|
|
8237
|
+
* Generated by orval v7.10.0 🍺
|
|
8238
|
+
* Do not edit manually.
|
|
8239
|
+
* Hautech API
|
|
8240
|
+
* OpenAPI spec version: 1.0
|
|
8241
|
+
*/
|
|
8242
|
+
type LoraTrainingRequestMetadata = {
|
|
8243
|
+
[key: string]: unknown;
|
|
8244
|
+
};
|
|
8245
|
+
|
|
8246
|
+
/**
|
|
8247
|
+
* Generated by orval v7.10.0 🍺
|
|
8248
|
+
* Do not edit manually.
|
|
8249
|
+
* Hautech API
|
|
8250
|
+
* OpenAPI spec version: 1.0
|
|
8251
|
+
*/
|
|
8252
|
+
|
|
8253
|
+
interface LoraTrainingRequest {
|
|
8254
|
+
input: StartTrainingParamsDto;
|
|
8255
|
+
metadata?: LoraTrainingRequestMetadata;
|
|
8256
|
+
}
|
|
8257
|
+
|
|
8258
|
+
/**
|
|
8259
|
+
* Generated by orval v7.10.0 🍺
|
|
8260
|
+
* Do not edit manually.
|
|
8261
|
+
* Hautech API
|
|
8262
|
+
* OpenAPI spec version: 1.0
|
|
8263
|
+
*/
|
|
8264
|
+
type LoraTrainingResponseKind = typeof LoraTrainingResponseKind[keyof typeof LoraTrainingResponseKind];
|
|
8265
|
+
declare const LoraTrainingResponseKind: {
|
|
8266
|
+
readonly operation: "operation";
|
|
8267
|
+
};
|
|
8268
|
+
|
|
8269
|
+
/**
|
|
8270
|
+
* Generated by orval v7.10.0 🍺
|
|
8271
|
+
* Do not edit manually.
|
|
8272
|
+
* Hautech API
|
|
8273
|
+
* OpenAPI spec version: 1.0
|
|
8274
|
+
*/
|
|
8275
|
+
type LoraTrainingResponseInput = {
|
|
8276
|
+
[key: string]: unknown;
|
|
8277
|
+
};
|
|
8278
|
+
|
|
8279
|
+
/**
|
|
8280
|
+
* Generated by orval v7.10.0 🍺
|
|
8281
|
+
* Do not edit manually.
|
|
8282
|
+
* Hautech API
|
|
8283
|
+
* OpenAPI spec version: 1.0
|
|
8284
|
+
*/
|
|
8285
|
+
type LoraTrainingResponseStatus = typeof LoraTrainingResponseStatus[keyof typeof LoraTrainingResponseStatus];
|
|
8286
|
+
declare const LoraTrainingResponseStatus: {
|
|
8287
|
+
readonly pending: "pending";
|
|
8288
|
+
readonly finished: "finished";
|
|
8289
|
+
readonly failed: "failed";
|
|
8290
|
+
};
|
|
8291
|
+
|
|
8292
|
+
/**
|
|
8293
|
+
* Generated by orval v7.10.0 🍺
|
|
8294
|
+
* Do not edit manually.
|
|
8295
|
+
* Hautech API
|
|
8296
|
+
* OpenAPI spec version: 1.0
|
|
8297
|
+
*/
|
|
8298
|
+
type LoraTrainingResponseMetadata = {
|
|
8299
|
+
[key: string]: unknown;
|
|
8300
|
+
};
|
|
8301
|
+
|
|
8302
|
+
/**
|
|
8303
|
+
* Generated by orval v7.10.0 🍺
|
|
8304
|
+
* Do not edit manually.
|
|
8305
|
+
* Hautech API
|
|
8306
|
+
* OpenAPI spec version: 1.0
|
|
8307
|
+
*/
|
|
8308
|
+
|
|
8309
|
+
interface LoraTrainingResponse {
|
|
8310
|
+
kind: LoraTrainingResponseKind;
|
|
8311
|
+
output: LoraTrainingOutput;
|
|
8312
|
+
input: LoraTrainingResponseInput;
|
|
8313
|
+
status: LoraTrainingResponseStatus;
|
|
8314
|
+
type: string;
|
|
8315
|
+
price?: string;
|
|
8316
|
+
estimatedPrice?: string;
|
|
8317
|
+
id: string;
|
|
8318
|
+
creatorId: string;
|
|
8319
|
+
metadata: LoraTrainingResponseMetadata;
|
|
8320
|
+
createdAt: string;
|
|
8321
|
+
updatedAt: string;
|
|
8322
|
+
}
|
|
8323
|
+
|
|
8174
8324
|
/**
|
|
8175
8325
|
* Generated by orval v7.10.0 🍺
|
|
8176
8326
|
* Do not edit manually.
|
|
@@ -9897,9 +10047,9 @@ interface RunWorkflowResponseDto {
|
|
|
9897
10047
|
* Hautech API
|
|
9898
10048
|
* OpenAPI spec version: 1.0
|
|
9899
10049
|
*/
|
|
9900
|
-
|
|
10050
|
+
interface SeedV1Input {
|
|
9901
10051
|
[key: string]: unknown;
|
|
9902
|
-
}
|
|
10052
|
+
}
|
|
9903
10053
|
|
|
9904
10054
|
/**
|
|
9905
10055
|
* Generated by orval v7.10.0 🍺
|
|
@@ -9919,10 +10069,20 @@ type SeedV1RequestMetadata = {
|
|
|
9919
10069
|
*/
|
|
9920
10070
|
|
|
9921
10071
|
interface SeedV1Request {
|
|
9922
|
-
input:
|
|
10072
|
+
input: SeedV1Input;
|
|
9923
10073
|
metadata?: SeedV1RequestMetadata;
|
|
9924
10074
|
}
|
|
9925
10075
|
|
|
10076
|
+
/**
|
|
10077
|
+
* Generated by orval v7.10.0 🍺
|
|
10078
|
+
* Do not edit manually.
|
|
10079
|
+
* Hautech API
|
|
10080
|
+
* OpenAPI spec version: 1.0
|
|
10081
|
+
*/
|
|
10082
|
+
type SeedV1RequestInput = {
|
|
10083
|
+
[key: string]: unknown;
|
|
10084
|
+
};
|
|
10085
|
+
|
|
9926
10086
|
/**
|
|
9927
10087
|
* Generated by orval v7.10.0 🍺
|
|
9928
10088
|
* Do not edit manually.
|
|
@@ -10518,31 +10678,6 @@ interface StartNaomiTrainingParamsDto {
|
|
|
10518
10678
|
mixedPrecision?: StartNaomiTrainingParamsDtoMixedPrecision;
|
|
10519
10679
|
}
|
|
10520
10680
|
|
|
10521
|
-
/**
|
|
10522
|
-
* Generated by orval v7.10.0 🍺
|
|
10523
|
-
* Do not edit manually.
|
|
10524
|
-
* Hautech API
|
|
10525
|
-
* OpenAPI spec version: 1.0
|
|
10526
|
-
*/
|
|
10527
|
-
type StartTrainingParamsDtoInput = {
|
|
10528
|
-
[key: string]: unknown;
|
|
10529
|
-
};
|
|
10530
|
-
|
|
10531
|
-
/**
|
|
10532
|
-
* Generated by orval v7.10.0 🍺
|
|
10533
|
-
* Do not edit manually.
|
|
10534
|
-
* Hautech API
|
|
10535
|
-
* OpenAPI spec version: 1.0
|
|
10536
|
-
*/
|
|
10537
|
-
|
|
10538
|
-
interface StartTrainingParamsDto {
|
|
10539
|
-
modelName: string;
|
|
10540
|
-
modelOwner: string;
|
|
10541
|
-
modelVersion?: string;
|
|
10542
|
-
modelDestination: string;
|
|
10543
|
-
input: StartTrainingParamsDtoInput;
|
|
10544
|
-
}
|
|
10545
|
-
|
|
10546
10681
|
/**
|
|
10547
10682
|
* Generated by orval v7.10.0 🍺
|
|
10548
10683
|
* Do not edit manually.
|
|
@@ -11850,6 +11985,9 @@ declare const apiDefinitions: {
|
|
|
11850
11985
|
v1: (googleNanoBananaV1Request: GoogleNanoBananaV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<GoogleNanoBananaV1Response, any>>;
|
|
11851
11986
|
};
|
|
11852
11987
|
};
|
|
11988
|
+
lora: {
|
|
11989
|
+
training: (loraTrainingRequest: LoraTrainingRequest, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<LoraTrainingResponse, any>>;
|
|
11990
|
+
};
|
|
11853
11991
|
};
|
|
11854
11992
|
get: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<OperationEntity | null, any>>;
|
|
11855
11993
|
getMany: (getOperationsParamsDto: GetOperationsParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<OperationEntity[], any>>;
|
|
@@ -11919,14 +12057,6 @@ declare const apiDefinitions: {
|
|
|
11919
12057
|
constructTemplate: <TSdk extends PipelineSDK, O = any, I = any>(this: any, builder: (pipeline: PipelineTyped<TSdk>) => PipelineTyped<TSdk>) => PipelineTyped<TSdk>;
|
|
11920
12058
|
wait: <T extends PipelineDto>(this: any, pipeline: T, timeoutMs?: number) => Promise<T>;
|
|
11921
12059
|
}>;
|
|
11922
|
-
lora: ApiDefinitionTree<{
|
|
11923
|
-
start: (startTrainingParamsDto: StartTrainingParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<LoraDto, any>>;
|
|
11924
|
-
startFlux: (startFluxTrainingParamsDto: StartFluxTrainingParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<LoraDto, any>>;
|
|
11925
|
-
startNaomi: (startNaomiTrainingParamsDto: StartNaomiTrainingParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<LoraDto, any>>;
|
|
11926
|
-
list: (params?: LoraControllerListV1Params, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ListLorasDto, any>>;
|
|
11927
|
-
get: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<LoraDto, any>>;
|
|
11928
|
-
wait: (this: any, lora: Pick<LoraDto, "id" | "status">, timeoutMs?: any) => Promise<LoraDto>;
|
|
11929
|
-
}>;
|
|
11930
12060
|
upload: ApiDefinitionTree<{
|
|
11931
12061
|
initUpload: (initializeGenericUploadParamsDto: InitializeGenericUploadParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<InitializeGenericUploadResponseDto, any>>;
|
|
11932
12062
|
getUploadedFileUrl: (params: UploadControllerGetUploadedFileUrlV1Params, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<GetUploadedFileUrlResponseDto, any>>;
|
|
@@ -12131,6 +12261,9 @@ declare const pipelineDefinitions: {
|
|
|
12131
12261
|
v1: (googleNanoBananaV1Request: GoogleNanoBananaV1Request, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<GoogleNanoBananaV1Response, any>>;
|
|
12132
12262
|
};
|
|
12133
12263
|
};
|
|
12264
|
+
lora: {
|
|
12265
|
+
training: (loraTrainingRequest: LoraTrainingRequest, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<LoraTrainingResponse, any>>;
|
|
12266
|
+
};
|
|
12134
12267
|
};
|
|
12135
12268
|
};
|
|
12136
12269
|
poses: {
|
|
@@ -12301,4 +12434,4 @@ declare const createTokenSigner: (options: {
|
|
|
12301
12434
|
}) => Promise<string>;
|
|
12302
12435
|
};
|
|
12303
12436
|
|
|
12304
|
-
export { type AccountEntity, AccountEntityType, AccountsControllerListAccountsV1OrderBy, type AccountsControllerListAccountsV1Params, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRole, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRole, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddChatItemsDto, type AddChatItemsDtoItemsItem, type AddItemsToCollectionControllerParamsDto, type AddItemsToCollectionParamsDto, type AddItemsToStackControllerParamsDto, type AddItemsToStackParamsDto, type AnimateCreatomateV1Input, type AnimateCreatomateV1InputTemplate, type AnimateCreatomateV1InputTemplateOneOf, type AnimateCreatomateV1Request, type AnimateCreatomateV1RequestMetadata, type AnimateCreatomateV1Response, type AnimateCreatomateV1ResponseInput, AnimateCreatomateV1ResponseKind, type AnimateCreatomateV1ResponseMetadata, AnimateCreatomateV1ResponseStatus, type AnimateKling16ProV1Input, AnimateKling16ProV1InputAspectRatio, AnimateKling16ProV1InputDuration, type AnimateKling16ProV1Request, type AnimateKling16ProV1RequestMetadata, type AnimateKling16ProV1Response, type AnimateKling16ProV1ResponseInput, AnimateKling16ProV1ResponseKind, type AnimateKling16ProV1ResponseMetadata, AnimateKling16ProV1ResponseStatus, type AnimateKling21V1Input, AnimateKling21V1InputDuration, type AnimateKling21V1Request, type AnimateKling21V1RequestMetadata, type AnimateKling21V1Response, type AnimateKling21V1ResponseInput, AnimateKling21V1ResponseKind, type AnimateKling21V1ResponseMetadata, AnimateKling21V1ResponseStatus, type ApiDefinitionTree, type AttachAccessControllerParamsDto, type AttachAccessParamsDto, type BalanceResultDto, type BaseWsEvent, type BaseWsEventType, ChatControllerListChatsV1OrderBy, type ChatControllerListChatsV1Params, type ChatDto, type ChatDtoItemsItem, type ChatParametersDto, type ChatParametersDtoResponseFormat, type CollectionEntity, CollectionEntityKind, type CollectionEntityMetadata, CollectionsControllerListCollectionsV1OrderBy, type CollectionsControllerListCollectionsV1Params, CollectionsControllerListItemsV1Kind, CollectionsControllerListItemsV1OrderBy, type CollectionsControllerListItemsV1Params, type CompositeElement, CompositeElementBlend, CompositeElementFit, type CompositeV1Input, type CompositeV1Request, type CompositeV1RequestMetadata, type CompositeV1Response, type CompositeV1ResponseInput, CompositeV1ResponseKind, type CompositeV1ResponseMetadata, CompositeV1ResponseStatus, type ContrastV1Input, type ContrastV1Request, type ContrastV1RequestMetadata, type ContrastV1Response, type ContrastV1ResponseInput, ContrastV1ResponseKind, type ContrastV1ResponseMetadata, ContrastV1ResponseStatus, type CountPipelinesResultDto, type CreateAccountParamsDto, type CreateChatParamsDto, type CreateCollectionParamsDto, type CreateCollectionParamsDtoMetadata, type CreateImageParamsDto, type CreatePipelineParamsDto, type CreatePipelineParamsDtoMetadata, type CreatePipelineParamsDtoOutputRef, type CreatePipelineParamsDtoPipelineInput, type CreatePipelineParamsDtoState, type CreatePipelineTaskDto, type CreatePipelineTaskDtoArgsItem, type CreatePipelineTaskDtoArgsItemOneOf, type CreateStackParamsDto, type CreateStackParamsDtoMetadata, type CreateStorageRecordParamsDto, type CreateStorageRecordParamsDtoValue, type CreateStorageRecordParamsDtoValueOneOf, type CreateVideoParamsDto, type CreateWorkflowParamsDto, type CreateWorkflowParamsDtoData, type CreateWorkflowParamsDtoMetadata, type CropV1Input, type CropV1Request, type CropV1RequestMetadata, type CropV1Response, type CropV1ResponseInput, CropV1ResponseKind, type CropV1ResponseMetadata, CropV1ResponseStatus, type CutV1Input, type CutV1Request, type CutV1RequestMetadata, type CutV1Response, type CutV1ResponseInput, CutV1ResponseKind, type CutV1ResponseMetadata, CutV1ResponseStatus, type Decimal, type DeepWrap, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type EchoV1Input, type EchoV1Request, type EchoV1RequestMetadata, type EchoV1Response, type EchoV1ResponseInput, EchoV1ResponseKind, type EchoV1ResponseMetadata, EchoV1ResponseStatus, type EditFluxKontextDevV1Input, type EditFluxKontextDevV1Request, type EditFluxKontextDevV1RequestMetadata, type EditFluxKontextDevV1Response, type EditFluxKontextDevV1ResponseInput, EditFluxKontextDevV1ResponseKind, type EditFluxKontextDevV1ResponseMetadata, EditFluxKontextDevV1ResponseStatus, type EntityEventKeys, type EntityEventPayload, type Flux11ProUltraV1Input, type Flux11ProUltraV1Request, type Flux11ProUltraV1RequestMetadata, type Flux11ProUltraV1Response, type Flux11ProUltraV1ResponseInput, Flux11ProUltraV1ResponseKind, type Flux11ProUltraV1ResponseMetadata, Flux11ProUltraV1ResponseStatus, type GPTV1Input, GPTV1InputModel, type GPTV2AssistantMessageDto, GPTV2AssistantMessageDtoRole, type GPTV2DeveloperMessageDto, GPTV2DeveloperMessageDtoRole, type GPTV2Input, type GPTV2InputMessagesItem, GPTV2InputModel, type GPTV2InputResponseFormat, type GPTV2MessageToolCallDto, type GPTV2MessageToolCallDtoFunction, GPTV2MessageToolCallDtoType, type GPTV2ResponseFormatJsonSchemaDetailsDto, type GPTV2ResponseFormatJsonSchemaDetailsDtoSchema, type GPTV2ResponseFormatJsonSchemaDto, GPTV2ResponseFormatJsonSchemaDtoType, type GPTV2ResponseFormatTextOrObjectDto, GPTV2ResponseFormatTextOrObjectDtoType, type GPTV2SystemMessageDto, GPTV2SystemMessageDtoRole, type GPTV2ToolChoiceDto, GPTV2ToolChoiceDtoType, type GPTV2ToolChoiceFunctionDto, type GPTV2ToolDto, GPTV2ToolDtoType, type GPTV2ToolFunctionDto, type GPTV2ToolFunctionDtoParameters, type GPTV2ToolMessageDto, GPTV2ToolMessageDtoRole, type GPTV2UserMessageDto, GPTV2UserMessageDtoRole, type GPTV3AnnotationDto, GPTV3AnnotationDtoType, type GPTV3AssistantMessageDto, type GPTV3AssistantMessageDtoContent, type GPTV3AssistantMessageDtoContentOneOfItem, GPTV3AssistantMessageDtoRole, GPTV3AssistantMessageDtoType, type GPTV3ContentWithAnnotationsDto, GPTV3ContentWithAnnotationsDtoType, type GPTV3DeveloperMessageDto, type GPTV3DeveloperMessageDtoContent, type GPTV3DeveloperMessageDtoContentOneOfItem, GPTV3DeveloperMessageDtoRole, GPTV3DeveloperMessageDtoType, type GPTV3FileSearchCallDetailsDto, type GPTV3FileSearchCallDetailsDtoFilters, type GPTV3FileSearchCallDetailsDtoRanking, type GPTV3FileSearchCallDto, GPTV3FileSearchCallDtoType, type GPTV3FileSearchFileDto, type GPTV3FileSearchResultDto, type GPTV3FileSearchResultDtoSearchResults, GPTV3FileSearchResultDtoStatus, GPTV3FileSearchResultDtoType, type GPTV3FileSearchResultsDto, type GPTV3FileSearchToolDto, type GPTV3FileSearchToolDtoFilters, type GPTV3FileSearchToolDtoRanking, GPTV3FileSearchToolDtoType, type GPTV3FunctionCallDetailsDto, type GPTV3FunctionCallDto, GPTV3FunctionCallDtoType, type GPTV3FunctionToolDto, type GPTV3FunctionToolDtoParameters, GPTV3FunctionToolDtoType, type GPTV3ImageGenerationCallDto, GPTV3ImageGenerationCallDtoType, type GPTV3ImageGenerationResultDto, type GPTV3ImageGenerationResultDtoMetadata, GPTV3ImageGenerationResultDtoStatus, GPTV3ImageGenerationResultDtoType, type GPTV3ImageGenerationResultsDto, type GPTV3ImageGenerationToolDto, GPTV3ImageGenerationToolDtoQuality, GPTV3ImageGenerationToolDtoSize, GPTV3ImageGenerationToolDtoType, type GPTV3ImageInputDto, GPTV3ImageInputDtoDetail, GPTV3ImageInputDtoType, type GPTV3Input, type GPTV3InputInput, type GPTV3InputInputOneOfItem, GPTV3InputModel, type GPTV3InputToolChoice, type GPTV3InputToolsItem, type GPTV3MessageContentDto, GPTV3MessageContentDtoRole, GPTV3MessageContentDtoType, type GPTV3Output, GPTV3OutputKind, type GPTV3ResponseCodeInterpreterToolCallDto, type GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem, GPTV3ResponseCodeInterpreterToolCallDtoStatus, GPTV3ResponseCodeInterpreterToolCallDtoType, type GPTV3ResponseCodeInterpreterToolCallImageDto, GPTV3ResponseCodeInterpreterToolCallImageDtoType, type GPTV3ResponseCodeInterpreterToolCallLogsDto, GPTV3ResponseCodeInterpreterToolCallLogsDtoType, type GPTV3ResponseComputerToolCallClickDto, GPTV3ResponseComputerToolCallClickDtoButton, GPTV3ResponseComputerToolCallClickDtoType, type GPTV3ResponseComputerToolCallDoubleClickDto, GPTV3ResponseComputerToolCallDoubleClickDtoType, type GPTV3ResponseComputerToolCallDragDto, GPTV3ResponseComputerToolCallDragDtoType, type GPTV3ResponseComputerToolCallDragPathDto, type GPTV3ResponseComputerToolCallDto, type GPTV3ResponseComputerToolCallDtoAction, GPTV3ResponseComputerToolCallDtoStatus, GPTV3ResponseComputerToolCallDtoType, type GPTV3ResponseComputerToolCallKeypressDto, GPTV3ResponseComputerToolCallKeypressDtoType, type GPTV3ResponseComputerToolCallMoveDto, GPTV3ResponseComputerToolCallMoveDtoType, type GPTV3ResponseComputerToolCallPendingSafetyCheckDto, type GPTV3ResponseComputerToolCallScreenshotDto, GPTV3ResponseComputerToolCallScreenshotDtoType, type GPTV3ResponseComputerToolCallScrollDto, GPTV3ResponseComputerToolCallScrollDtoType, type GPTV3ResponseComputerToolCallTypeDto, GPTV3ResponseComputerToolCallTypeDtoType, type GPTV3ResponseComputerToolCallWaitDto, GPTV3ResponseComputerToolCallWaitDtoType, type GPTV3ResponseCustomToolCallDto, GPTV3ResponseCustomToolCallDtoStatus, GPTV3ResponseCustomToolCallDtoType, type GPTV3ResponseCustomToolCallOutputDto, GPTV3ResponseCustomToolCallOutputDtoType, type GPTV3ResponseDto, type GPTV3ResponseDtoContent, GPTV3ResponseDtoFinishReason, type GPTV3ResponseDtoOutputItem, GPTV3ResponseDtoRole, type GPTV3ResponseDtoToolCallsItem, type GPTV3ResponseFileSearchToolCallDto, GPTV3ResponseFileSearchToolCallDtoStatus, GPTV3ResponseFileSearchToolCallDtoType, type GPTV3ResponseFileSearchToolCallResultDto, type GPTV3ResponseFileSearchToolCallResultDtoAttributes, type GPTV3ResponseFormatJsonSchemaDto, type GPTV3ResponseFormatJsonSchemaDtoSchema, GPTV3ResponseFormatJsonSchemaDtoType, type GPTV3ResponseFormatTextDto, GPTV3ResponseFormatTextDtoType, type GPTV3ResponseFunctionToolCallDto, GPTV3ResponseFunctionToolCallDtoStatus, GPTV3ResponseFunctionToolCallDtoType, type GPTV3ResponseFunctionWebSearchDto, GPTV3ResponseFunctionWebSearchDtoStatus, GPTV3ResponseFunctionWebSearchDtoType, type GPTV3ResponseImageGenerationResultsDto, type GPTV3ResponseInputComputerCallOutputAcknowledgedSafetyCheckDto, type GPTV3ResponseInputComputerCallOutputDto, GPTV3ResponseInputComputerCallOutputDtoStatus, GPTV3ResponseInputComputerCallOutputDtoType, type GPTV3ResponseInputComputerCallOutputScreenshotDto, GPTV3ResponseInputComputerCallOutputScreenshotDtoType, type GPTV3ResponseInputFunctionCallOutputDto, GPTV3ResponseInputFunctionCallOutputDtoStatus, GPTV3ResponseInputFunctionCallOutputDtoType, type GPTV3ResponseInputItemImageGenerationCallDto, GPTV3ResponseInputItemImageGenerationCallDtoStatus, GPTV3ResponseInputItemImageGenerationCallDtoType, type GPTV3ResponseInputItemMessage, type GPTV3ResponseInputItemMessageContentItem, GPTV3ResponseInputItemMessageRole, GPTV3ResponseInputItemMessageStatus, GPTV3ResponseInputItemMessageType, type GPTV3ResponseInputItemReferenceDto, GPTV3ResponseInputItemReferenceDtoType, type GPTV3ResponseInputLocalShellCallActionDto, type GPTV3ResponseInputLocalShellCallActionDtoEnv, GPTV3ResponseInputLocalShellCallActionDtoType, type GPTV3ResponseInputLocalShellCallDto, GPTV3ResponseInputLocalShellCallDtoStatus, GPTV3ResponseInputLocalShellCallDtoType, type GPTV3ResponseInputLocalShellCallOutputDto, GPTV3ResponseInputLocalShellCallOutputDtoStatus, GPTV3ResponseInputLocalShellCallOutputDtoType, type GPTV3ResponseInputMcpApprovalRequestDto, GPTV3ResponseInputMcpApprovalRequestDtoType, type GPTV3ResponseInputMcpApprovalResponseDto, GPTV3ResponseInputMcpApprovalResponseDtoType, type GPTV3ResponseInputMcpCallDto, GPTV3ResponseInputMcpCallDtoType, type GPTV3ResponseInputMcpListToolsDto, GPTV3ResponseInputMcpListToolsDtoType, type GPTV3ResponseInputMcpListToolsToolDto, type GPTV3ResponseInputMcpListToolsToolDtoAnnotations, type GPTV3ResponseInputMcpListToolsToolDtoInputSchema, type GPTV3ResponseLocalShellCallActionDto, type GPTV3ResponseLocalShellCallActionDtoEnv, GPTV3ResponseLocalShellCallActionDtoType, type GPTV3ResponseLocalShellCallDto, GPTV3ResponseLocalShellCallDtoStatus, GPTV3ResponseLocalShellCallDtoType, type GPTV3ResponseMcpApprovalRequestDto, GPTV3ResponseMcpApprovalRequestDtoType, type GPTV3ResponseMcpCallDto, GPTV3ResponseMcpCallDtoType, type GPTV3ResponseMcpListToolsDto, GPTV3ResponseMcpListToolsDtoType, type GPTV3ResponseMcpListToolsToolDto, type GPTV3ResponseMcpListToolsToolDtoAnnotations, type GPTV3ResponseMcpListToolsToolDtoInputSchema, type GPTV3ResponseOutputItemImageGenerationCallDto, type GPTV3ResponseOutputItemImageGenerationCallDtoMetadata, GPTV3ResponseOutputItemImageGenerationCallDtoStatus, GPTV3ResponseOutputItemImageGenerationCallDtoType, type GPTV3ResponseOutputMessageDto, type GPTV3ResponseOutputMessageDtoContentItem, GPTV3ResponseOutputMessageDtoRole, type GPTV3ResponseOutputMessageDtoStatus, GPTV3ResponseOutputMessageDtoType, type GPTV3ResponseOutputRefusalDto, GPTV3ResponseOutputRefusalDtoType, type GPTV3ResponseOutputTextContainerFileCitationDto, GPTV3ResponseOutputTextContainerFileCitationDtoType, type GPTV3ResponseOutputTextDto, type GPTV3ResponseOutputTextDtoAnnotationsItem, GPTV3ResponseOutputTextDtoType, type GPTV3ResponseOutputTextFileCitationDto, GPTV3ResponseOutputTextFileCitationDtoType, type GPTV3ResponseOutputTextFilePathDto, GPTV3ResponseOutputTextFilePathDtoType, type GPTV3ResponseOutputTextLogprobDto, type GPTV3ResponseOutputTextLogprobTopLogprobDto, type GPTV3ResponseOutputTextURLCitationDto, GPTV3ResponseOutputTextURLCitationDtoType, type GPTV3ResponseReasoningItemDto, GPTV3ResponseReasoningItemDtoStatus, GPTV3ResponseReasoningItemDtoType, type GPTV3ResponseReasoningItemSummaryDto, GPTV3ResponseReasoningItemSummaryDtoType, type GPTV3SystemMessageDto, type GPTV3SystemMessageDtoContent, type GPTV3SystemMessageDtoContentItemOneOfItem, type GPTV3SystemMessageDtoContentOneOfItem, GPTV3SystemMessageDtoRole, GPTV3SystemMessageDtoType, type GPTV3TextConfigDto, type GPTV3TextConfigDtoFormat, type GPTV3TextInputDto, GPTV3TextInputDtoType, type GPTV3ToolChoiceDto, GPTV3ToolChoiceDtoType, type GPTV3ToolChoiceFunctionDto, type GPTV3ToolDto, GPTV3ToolDtoType, type GPTV3UserMessageDto, type GPTV3UserMessageDtoContent, type GPTV3UserMessageDtoContentOneOfItem, GPTV3UserMessageDtoRole, GPTV3UserMessageDtoType, type GPTV3WebSearchCallDto, GPTV3WebSearchCallDtoType, type GPTV3WebSearchResultDto, GPTV3WebSearchResultDtoStatus, GPTV3WebSearchResultDtoType, type GPTV3WebSearchToolDto, GPTV3WebSearchToolDtoSearchContextSize, GPTV3WebSearchToolDtoType, type GetAccountParamsDto, type GetBalanceParamsDto, type GetCollectionParamsDto, type GetGroupParamsDto, type GetImageParamsDto, type GetImageRepresentationParamsDto, GetImageRepresentationParamsDtoType, type GetOperationParamsDto, type GetOperationsParamsDto, type GetPoseParamsDto, type GetStackParamsDto, type GetStorageRecordParamsDto, type GetUploadedFileUrlResponseDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategory, type GoogleNanoBananaV1Input, 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 HauteNaomiV1Request, type HauteNaomiV1RequestMetadata, type HauteNaomiV1Response, type HauteNaomiV1ResponseInput, HauteNaomiV1ResponseKind, type HauteNaomiV1ResponseMetadata, HauteNaomiV1ResponseStatus, type IdeogramCharacterV1Input, type IdeogramCharacterV1Request, type IdeogramCharacterV1RequestMetadata, type IdeogramCharacterV1Response, type IdeogramCharacterV1ResponseInput, IdeogramCharacterV1ResponseKind, type IdeogramCharacterV1ResponseMetadata, IdeogramCharacterV1ResponseStatus, type ImageEntity, ImageEntityKind, type ImageEntityMetadata, type ImageRepresentationResponseDto, type ImageUrlResponseDto, type Imagen4Input, Imagen4InputAspectRatio, Imagen4InputSafetyFilterLevel, type Imagen4V1Request, type Imagen4V1RequestMetadata, type Imagen4V1Response, type Imagen4V1ResponseInput, Imagen4V1ResponseKind, type Imagen4V1ResponseMetadata, Imagen4V1ResponseStatus, type ImagineFlux11ProUltraV1Request, type ImagineFlux11ProUltraV1RequestMetadata, type ImagineFlux11ProUltraV1Response, type ImagineFlux11ProUltraV1ResponseInput, ImagineFlux11ProUltraV1ResponseKind, type ImagineFlux11ProUltraV1ResponseMetadata, ImagineFlux11ProUltraV1ResponseStatus, type ImagineKateV1Request, type ImagineKateV1RequestMetadata, type ImagineKateV1Response, type ImagineKateV1ResponseInput, ImagineKateV1ResponseKind, type ImagineKateV1ResponseMetadata, ImagineKateV1ResponseStatus, type InitializeGenericUploadParamsDto, type InitializeGenericUploadResponseDto, type InitializeImageUploadResultDto, type InpaintKateV1Request, type InpaintKateV1RequestMetadata, type InpaintKateV1Response, type InpaintKateV1ResponseInput, InpaintKateV1ResponseKind, type InpaintKateV1ResponseMetadata, InpaintKateV1ResponseStatus, type KateImagineV1Input, KateImagineV1InputAspectRatio, type KateInpaintV1Input, KateInpaintV1InputBranch, type LindaHauteV1Input, LindaHauteV1InputAspectRatio, type ListAccessControllerAttachmentsDto, type ListAccessControllerDto, type ListAccessControllerGrantsDto, ListAccessControllerGrantsDtoAccess, type ListAccountsDto, type ListAccountsParamsDto, ListAccountsParamsDtoOrderBy, type ListChatsDto, type ListCollectionItemsDto, type ListCollectionItemsParamsDto, ListCollectionItemsParamsDtoKind, ListCollectionItemsParamsDtoOrderBy, type ListCollectionsDto, type ListCollectionsParamsDto, ListCollectionsParamsDtoOrderBy, type ListLorasDto, type ListOperationsDto, type ListOperationsParamsDto, ListOperationsParamsDtoOrderBy, type ListPipelinesDto, type ListPosesDto, type ListPosesParamsDto, ListPosesParamsDtoOrderBy, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderBy, type ListWorkflowsDto, type LoraControllerGetV1200, LoraControllerListV1OrderBy, type LoraControllerListV1Params, LoraControllerListV1Status, type LoraDto, type LoraDtoInput, type LoraDtoOutput, LoraDtoStatus, type LoraWebhookDto, type LoraWebhookDtoInput, type LoraWebhookDtoMetrics, type LoraWebhookDtoOutput, LoraWebhookDtoStatus, type LoraWebhookDtoUrls, type LumaPhotonV1Input, LumaPhotonV1InputAspectRatio, type LumaPhotonV1Request, type LumaPhotonV1RequestMetadata, type LumaPhotonV1Response, type LumaPhotonV1ResponseInput, LumaPhotonV1ResponseKind, type LumaPhotonV1ResponseMetadata, LumaPhotonV1ResponseStatus, type MathV1Input, type MathV1InputInput, type MathV1Request, type MathV1RequestMetadata, type MathV1Response, type MathV1ResponseInput, MathV1ResponseKind, type MathV1ResponseMetadata, MathV1ResponseStatus, type MethodsPermissions, type ModifyAccessParamsDto, ModifyAccessParamsDtoAccess, ModifyAccessParamsDtoPrincipalType, type NaomiHauteV1Input, NaomiHauteV1InputMode, type NegateImageV1Input, type NegateImageV1Request, type NegateImageV1RequestMetadata, type NegateImageV1Response, type NegateImageV1ResponseInput, NegateImageV1ResponseKind, type NegateImageV1ResponseMetadata, NegateImageV1ResponseStatus, type NoiseV1Input, type NoiseV1Request, type NoiseV1RequestMetadata, type NoiseV1Response, type NoiseV1ResponseInput, NoiseV1ResponseKind, type NoiseV1ResponseMetadata, NoiseV1ResponseStatus, type ObjectDetectionV1Input, type ObjectDetectionV1Output, ObjectDetectionV1OutputKind, type ObjectDetectionV1Request, type ObjectDetectionV1RequestMetadata, type ObjectDetectionV1Response, type ObjectDetectionV1ResponseInput, ObjectDetectionV1ResponseKind, type ObjectDetectionV1ResponseMetadata, ObjectDetectionV1ResponseStatus, type OneCompilerV1Input, type OneCompilerV1InputInput, OneCompilerV1InputLanguage, type OnecompilerV1Output, type OnecompilerV1OutputData, type OnecompilerV1OutputDataResult, type OnecompilerV1OutputDataResultOneOf, OnecompilerV1OutputKind, type OnecompilerV1Request, type OnecompilerV1RequestMetadata, type OnecompilerV1Response, type OnecompilerV1ResponseInput, OnecompilerV1ResponseKind, type OnecompilerV1ResponseMetadata, OnecompilerV1ResponseStatus, type OperationEntity, type OperationEntityInput, OperationEntityKind, type OperationEntityMetadata, type OperationEntityOutput, OperationEntityStatus, type OperationOutputImageMultiple, OperationOutputImageMultipleKind, type OperationOutputImageSingle, OperationOutputImageSingleKind, type OperationOutputJSON, type OperationOutputJSONData, type OperationOutputJSONDataOneOf, OperationOutputJSONKind, type 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 SeedV1Request, type SeedV1RequestInput, 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 SegmentAnythingEmbeddingsV1Input, type SegmentAnythingEmbeddingsV1Request, type SegmentAnythingEmbeddingsV1RequestMetadata, type SegmentAnythingEmbeddingsV1Response, type SegmentAnythingEmbeddingsV1ResponseInput, SegmentAnythingEmbeddingsV1ResponseKind, type SegmentAnythingEmbeddingsV1ResponseMetadata, SegmentAnythingEmbeddingsV1ResponseStatus, type SegmentAnythingMaskV1Input, type SegmentAnythingMaskV1Request, type SegmentAnythingMaskV1RequestMetadata, type SegmentAnythingMaskV1Response, type SegmentAnythingMaskV1ResponseInput, SegmentAnythingMaskV1ResponseKind, type SegmentAnythingMaskV1ResponseMetadata, SegmentAnythingMaskV1ResponseStatus, type SelfAccountDto, type SelfAccountDtoPermissions, SelfAccountDtoType, type SetPosePreviewControllerParamsDto, type SetPosePreviewDto, type StackEntity, type StackEntityItemsItem, StackEntityKind, type StackEntityMetadata, StacksControllerListStacksV1OrderBy, type StacksControllerListStacksV1Params, type StartFluxTrainingParamsDto, type StartLoraTrainingParamsDto, type StartNaomiTrainingParamsDto, StartNaomiTrainingParamsDtoLrScheduler, StartNaomiTrainingParamsDtoMixedPrecision, type StartTrainingParamsDto, type StartTrainingParamsDtoInput, type StorageEntity, StorageEntityKind, type StorageEntityMetadata, type StorageEntityValue, type StorageRecordsResultDto, type StorageRecordsResultDtoValue, type StorageRecordsResultDtoValueOneOf, type StringsTemplateV1Input, type StringsTemplateV1Request, type StringsTemplateV1RequestMetadata, type StringsTemplateV1Response, type StringsTemplateV1ResponseInput, StringsTemplateV1ResponseKind, type StringsTemplateV1ResponseMetadata, StringsTemplateV1ResponseStatus, type SubscribePayload, type SupportFile, type TaskDto, type TaskDtoArgsItem, type TaskDtoArgsItemOneOf, type TopazUpscaleV1Input, TopazUpscaleV1InputEnhanceModel, TopazUpscaleV1InputSubjectDetection, TopazUpscaleV1InputUpscaleFactor, type TopazUpscaleV1Request, type TopazUpscaleV1RequestMetadata, type TopazUpscaleV1Response, type TopazUpscaleV1ResponseInput, TopazUpscaleV1ResponseKind, type TopazUpscaleV1ResponseMetadata, TopazUpscaleV1ResponseStatus, type TranslateV1Input, type TranslateV1Output, type TranslateV1OutputData, TranslateV1OutputKind, type TranslateV1Request, type TranslateV1RequestMetadata, type TranslateV1Response, type TranslateV1ResponseInput, TranslateV1ResponseKind, type TranslateV1ResponseMetadata, TranslateV1ResponseStatus, type UpdateAccountControllerParamsDto, type UpdateAccountParamsDto, type UpdateMetadataDto, type UpdateMetadataDtoOverwrite, type UpdateResourceMetadataDto, type UpdateStorageRecordParamsDto, type UpdateStorageRecordParamsDtoValue, type UpdateStorageRecordParamsDtoValueOneOf, type UpdateWorkflowParamsDto, type UpdateWorkflowParamsDtoData, type UpdateWorkflowParamsDtoMetadata, type UploadControllerGetUploadedFileUrlV1Params, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1RequestMetadata, type UpscaleV1Response, type UpscaleV1ResponseInput, UpscaleV1ResponseKind, type UpscaleV1ResponseMetadata, UpscaleV1ResponseStatus, type VariableDto, type Veo3FastV1Request, type Veo3FastV1RequestMetadata, type Veo3FastV1Response, type Veo3FastV1ResponseInput, Veo3FastV1ResponseKind, type Veo3FastV1ResponseMetadata, Veo3FastV1ResponseStatus, type Veo3V1Input, Veo3V1InputResolution, type Veo3V1Request, type Veo3V1RequestMetadata, type Veo3V1Response, type Veo3V1ResponseInput, Veo3V1ResponseKind, type Veo3V1ResponseMetadata, Veo3V1ResponseStatus, type VideoEntity, VideoEntityKind, type VideoEntityMetadata, type VideoUrlResponseDto, type VideosControllerGetVideosV1Params, type VtonGiseleV1Request, type VtonGiseleV1RequestMetadata, type VtonGiseleV1Response, type VtonGiseleV1ResponseInput, VtonGiseleV1ResponseKind, type VtonGiseleV1ResponseMetadata, VtonGiseleV1ResponseStatus, type WaitOperationParamsDto, type WorkflowDto, type WorkflowDtoData, type WorkflowDtoMetadata, WorkflowsControllerListWorkflowsV1OrderBy, type WorkflowsControllerListWorkflowsV1Params, type WsEventEntity, type WsEventMap, createSDK, createTokenSigner };
|
|
12437
|
+
export { type AccountEntity, AccountEntityType, AccountsControllerListAccountsV1OrderBy, type AccountsControllerListAccountsV1Params, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRole, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRole, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddChatItemsDto, type AddChatItemsDtoItemsItem, type AddItemsToCollectionControllerParamsDto, type AddItemsToCollectionParamsDto, type AddItemsToStackControllerParamsDto, type AddItemsToStackParamsDto, type AnimateCreatomateV1Input, type AnimateCreatomateV1InputTemplate, type AnimateCreatomateV1InputTemplateOneOf, type AnimateCreatomateV1Request, type AnimateCreatomateV1RequestMetadata, type AnimateCreatomateV1Response, type AnimateCreatomateV1ResponseInput, AnimateCreatomateV1ResponseKind, type AnimateCreatomateV1ResponseMetadata, AnimateCreatomateV1ResponseStatus, type AnimateKling16ProV1Input, AnimateKling16ProV1InputAspectRatio, AnimateKling16ProV1InputDuration, type AnimateKling16ProV1Request, type AnimateKling16ProV1RequestMetadata, type AnimateKling16ProV1Response, type AnimateKling16ProV1ResponseInput, AnimateKling16ProV1ResponseKind, type AnimateKling16ProV1ResponseMetadata, AnimateKling16ProV1ResponseStatus, type AnimateKling21V1Input, AnimateKling21V1InputDuration, type AnimateKling21V1Request, type AnimateKling21V1RequestMetadata, type AnimateKling21V1Response, type AnimateKling21V1ResponseInput, AnimateKling21V1ResponseKind, type AnimateKling21V1ResponseMetadata, AnimateKling21V1ResponseStatus, type ApiDefinitionTree, type AttachAccessControllerParamsDto, type AttachAccessParamsDto, type BalanceResultDto, type BaseWsEvent, type BaseWsEventType, ChatControllerListChatsV1OrderBy, type ChatControllerListChatsV1Params, type ChatDto, type ChatDtoItemsItem, type ChatParametersDto, type ChatParametersDtoResponseFormat, type CollectionEntity, CollectionEntityKind, type CollectionEntityMetadata, CollectionsControllerListCollectionsV1OrderBy, type CollectionsControllerListCollectionsV1Params, CollectionsControllerListItemsV1Kind, CollectionsControllerListItemsV1OrderBy, type CollectionsControllerListItemsV1Params, type CompositeElement, CompositeElementBlend, CompositeElementFit, type CompositeV1Input, type CompositeV1Request, type CompositeV1RequestMetadata, type CompositeV1Response, type CompositeV1ResponseInput, CompositeV1ResponseKind, type CompositeV1ResponseMetadata, CompositeV1ResponseStatus, type ContrastV1Input, type ContrastV1Request, type ContrastV1RequestMetadata, type ContrastV1Response, type ContrastV1ResponseInput, ContrastV1ResponseKind, type ContrastV1ResponseMetadata, ContrastV1ResponseStatus, type CountPipelinesResultDto, type CreateAccountParamsDto, type CreateChatParamsDto, type CreateCollectionParamsDto, type CreateCollectionParamsDtoMetadata, type CreateImageParamsDto, type CreatePipelineParamsDto, type CreatePipelineParamsDtoMetadata, type CreatePipelineParamsDtoOutputRef, type CreatePipelineParamsDtoPipelineInput, type CreatePipelineParamsDtoState, type CreatePipelineTaskDto, type CreatePipelineTaskDtoArgsItem, type CreatePipelineTaskDtoArgsItemOneOf, type CreateStackParamsDto, type CreateStackParamsDtoMetadata, type CreateStorageRecordParamsDto, type CreateStorageRecordParamsDtoValue, type CreateStorageRecordParamsDtoValueOneOf, type CreateVideoParamsDto, type CreateWorkflowParamsDto, type CreateWorkflowParamsDtoData, type CreateWorkflowParamsDtoMetadata, type CropV1Input, type CropV1Request, type CropV1RequestMetadata, type CropV1Response, type CropV1ResponseInput, CropV1ResponseKind, type CropV1ResponseMetadata, CropV1ResponseStatus, type CutV1Input, type CutV1Request, type CutV1RequestMetadata, type CutV1Response, type CutV1ResponseInput, CutV1ResponseKind, type CutV1ResponseMetadata, CutV1ResponseStatus, type Decimal, type DeepWrap, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type EchoV1Input, type EchoV1Request, type EchoV1RequestMetadata, type EchoV1Response, type EchoV1ResponseInput, EchoV1ResponseKind, type EchoV1ResponseMetadata, EchoV1ResponseStatus, type EditFluxKontextDevV1Input, type EditFluxKontextDevV1Request, type EditFluxKontextDevV1RequestMetadata, type EditFluxKontextDevV1Response, type EditFluxKontextDevV1ResponseInput, EditFluxKontextDevV1ResponseKind, type EditFluxKontextDevV1ResponseMetadata, EditFluxKontextDevV1ResponseStatus, type EntityEventKeys, type EntityEventPayload, type Flux11ProUltraV1Input, type Flux11ProUltraV1Request, type Flux11ProUltraV1RequestMetadata, type Flux11ProUltraV1Response, type Flux11ProUltraV1ResponseInput, Flux11ProUltraV1ResponseKind, type Flux11ProUltraV1ResponseMetadata, Flux11ProUltraV1ResponseStatus, type GPTV1Input, GPTV1InputModel, type GPTV2AssistantMessageDto, GPTV2AssistantMessageDtoRole, type GPTV2DeveloperMessageDto, GPTV2DeveloperMessageDtoRole, type GPTV2Input, type GPTV2InputMessagesItem, GPTV2InputModel, type GPTV2InputResponseFormat, type GPTV2MessageToolCallDto, type GPTV2MessageToolCallDtoFunction, GPTV2MessageToolCallDtoType, type GPTV2ResponseFormatJsonSchemaDetailsDto, type GPTV2ResponseFormatJsonSchemaDetailsDtoSchema, type GPTV2ResponseFormatJsonSchemaDto, GPTV2ResponseFormatJsonSchemaDtoType, type GPTV2ResponseFormatTextOrObjectDto, GPTV2ResponseFormatTextOrObjectDtoType, type GPTV2SystemMessageDto, GPTV2SystemMessageDtoRole, type GPTV2ToolChoiceDto, GPTV2ToolChoiceDtoType, type GPTV2ToolChoiceFunctionDto, type GPTV2ToolDto, GPTV2ToolDtoType, type GPTV2ToolFunctionDto, type GPTV2ToolFunctionDtoParameters, type GPTV2ToolMessageDto, GPTV2ToolMessageDtoRole, type GPTV2UserMessageDto, GPTV2UserMessageDtoRole, type GPTV3AnnotationDto, GPTV3AnnotationDtoType, type GPTV3AssistantMessageDto, type GPTV3AssistantMessageDtoContent, type GPTV3AssistantMessageDtoContentOneOfItem, GPTV3AssistantMessageDtoRole, GPTV3AssistantMessageDtoType, type GPTV3ContentWithAnnotationsDto, GPTV3ContentWithAnnotationsDtoType, type GPTV3DeveloperMessageDto, type GPTV3DeveloperMessageDtoContent, type GPTV3DeveloperMessageDtoContentOneOfItem, GPTV3DeveloperMessageDtoRole, GPTV3DeveloperMessageDtoType, type GPTV3FileSearchCallDetailsDto, type GPTV3FileSearchCallDetailsDtoFilters, type GPTV3FileSearchCallDetailsDtoRanking, type GPTV3FileSearchCallDto, GPTV3FileSearchCallDtoType, type GPTV3FileSearchFileDto, type GPTV3FileSearchResultDto, type GPTV3FileSearchResultDtoSearchResults, GPTV3FileSearchResultDtoStatus, GPTV3FileSearchResultDtoType, type GPTV3FileSearchResultsDto, type GPTV3FileSearchToolDto, type GPTV3FileSearchToolDtoFilters, type GPTV3FileSearchToolDtoRanking, GPTV3FileSearchToolDtoType, type GPTV3FunctionCallDetailsDto, type GPTV3FunctionCallDto, GPTV3FunctionCallDtoType, type GPTV3FunctionToolDto, type GPTV3FunctionToolDtoParameters, GPTV3FunctionToolDtoType, type GPTV3ImageGenerationCallDto, GPTV3ImageGenerationCallDtoType, type GPTV3ImageGenerationResultDto, type GPTV3ImageGenerationResultDtoMetadata, GPTV3ImageGenerationResultDtoStatus, GPTV3ImageGenerationResultDtoType, type GPTV3ImageGenerationResultsDto, type GPTV3ImageGenerationToolDto, GPTV3ImageGenerationToolDtoQuality, GPTV3ImageGenerationToolDtoSize, GPTV3ImageGenerationToolDtoType, type GPTV3ImageInputDto, GPTV3ImageInputDtoDetail, GPTV3ImageInputDtoType, type GPTV3Input, type GPTV3InputInput, type GPTV3InputInputOneOfItem, GPTV3InputModel, type GPTV3InputToolChoice, type GPTV3InputToolsItem, type GPTV3MessageContentDto, GPTV3MessageContentDtoRole, GPTV3MessageContentDtoType, type GPTV3Output, GPTV3OutputKind, type GPTV3ResponseCodeInterpreterToolCallDto, type GPTV3ResponseCodeInterpreterToolCallDtoOutputsItem, GPTV3ResponseCodeInterpreterToolCallDtoStatus, GPTV3ResponseCodeInterpreterToolCallDtoType, type GPTV3ResponseCodeInterpreterToolCallImageDto, GPTV3ResponseCodeInterpreterToolCallImageDtoType, type GPTV3ResponseCodeInterpreterToolCallLogsDto, GPTV3ResponseCodeInterpreterToolCallLogsDtoType, type GPTV3ResponseComputerToolCallClickDto, GPTV3ResponseComputerToolCallClickDtoButton, GPTV3ResponseComputerToolCallClickDtoType, type GPTV3ResponseComputerToolCallDoubleClickDto, GPTV3ResponseComputerToolCallDoubleClickDtoType, type GPTV3ResponseComputerToolCallDragDto, GPTV3ResponseComputerToolCallDragDtoType, type GPTV3ResponseComputerToolCallDragPathDto, type GPTV3ResponseComputerToolCallDto, type GPTV3ResponseComputerToolCallDtoAction, GPTV3ResponseComputerToolCallDtoStatus, GPTV3ResponseComputerToolCallDtoType, type GPTV3ResponseComputerToolCallKeypressDto, GPTV3ResponseComputerToolCallKeypressDtoType, type GPTV3ResponseComputerToolCallMoveDto, GPTV3ResponseComputerToolCallMoveDtoType, type GPTV3ResponseComputerToolCallPendingSafetyCheckDto, type GPTV3ResponseComputerToolCallScreenshotDto, GPTV3ResponseComputerToolCallScreenshotDtoType, type GPTV3ResponseComputerToolCallScrollDto, GPTV3ResponseComputerToolCallScrollDtoType, type GPTV3ResponseComputerToolCallTypeDto, GPTV3ResponseComputerToolCallTypeDtoType, type GPTV3ResponseComputerToolCallWaitDto, GPTV3ResponseComputerToolCallWaitDtoType, type GPTV3ResponseCustomToolCallDto, GPTV3ResponseCustomToolCallDtoStatus, GPTV3ResponseCustomToolCallDtoType, type GPTV3ResponseCustomToolCallOutputDto, GPTV3ResponseCustomToolCallOutputDtoType, type GPTV3ResponseDto, type GPTV3ResponseDtoContent, GPTV3ResponseDtoFinishReason, type GPTV3ResponseDtoOutputItem, GPTV3ResponseDtoRole, type GPTV3ResponseDtoToolCallsItem, type GPTV3ResponseFileSearchToolCallDto, GPTV3ResponseFileSearchToolCallDtoStatus, GPTV3ResponseFileSearchToolCallDtoType, type GPTV3ResponseFileSearchToolCallResultDto, type GPTV3ResponseFileSearchToolCallResultDtoAttributes, type GPTV3ResponseFormatJsonSchemaDto, type GPTV3ResponseFormatJsonSchemaDtoSchema, GPTV3ResponseFormatJsonSchemaDtoType, type GPTV3ResponseFormatTextDto, GPTV3ResponseFormatTextDtoType, type GPTV3ResponseFunctionToolCallDto, GPTV3ResponseFunctionToolCallDtoStatus, GPTV3ResponseFunctionToolCallDtoType, type GPTV3ResponseFunctionWebSearchDto, GPTV3ResponseFunctionWebSearchDtoStatus, GPTV3ResponseFunctionWebSearchDtoType, type GPTV3ResponseImageGenerationResultsDto, type GPTV3ResponseInputComputerCallOutputAcknowledgedSafetyCheckDto, type GPTV3ResponseInputComputerCallOutputDto, GPTV3ResponseInputComputerCallOutputDtoStatus, GPTV3ResponseInputComputerCallOutputDtoType, type GPTV3ResponseInputComputerCallOutputScreenshotDto, GPTV3ResponseInputComputerCallOutputScreenshotDtoType, type GPTV3ResponseInputFunctionCallOutputDto, GPTV3ResponseInputFunctionCallOutputDtoStatus, GPTV3ResponseInputFunctionCallOutputDtoType, type GPTV3ResponseInputItemImageGenerationCallDto, GPTV3ResponseInputItemImageGenerationCallDtoStatus, GPTV3ResponseInputItemImageGenerationCallDtoType, type GPTV3ResponseInputItemMessage, type GPTV3ResponseInputItemMessageContentItem, GPTV3ResponseInputItemMessageRole, GPTV3ResponseInputItemMessageStatus, GPTV3ResponseInputItemMessageType, type GPTV3ResponseInputItemReferenceDto, GPTV3ResponseInputItemReferenceDtoType, type GPTV3ResponseInputLocalShellCallActionDto, type GPTV3ResponseInputLocalShellCallActionDtoEnv, GPTV3ResponseInputLocalShellCallActionDtoType, type GPTV3ResponseInputLocalShellCallDto, GPTV3ResponseInputLocalShellCallDtoStatus, GPTV3ResponseInputLocalShellCallDtoType, type GPTV3ResponseInputLocalShellCallOutputDto, GPTV3ResponseInputLocalShellCallOutputDtoStatus, GPTV3ResponseInputLocalShellCallOutputDtoType, type GPTV3ResponseInputMcpApprovalRequestDto, GPTV3ResponseInputMcpApprovalRequestDtoType, type GPTV3ResponseInputMcpApprovalResponseDto, GPTV3ResponseInputMcpApprovalResponseDtoType, type GPTV3ResponseInputMcpCallDto, GPTV3ResponseInputMcpCallDtoType, type GPTV3ResponseInputMcpListToolsDto, GPTV3ResponseInputMcpListToolsDtoType, type GPTV3ResponseInputMcpListToolsToolDto, type GPTV3ResponseInputMcpListToolsToolDtoAnnotations, type GPTV3ResponseInputMcpListToolsToolDtoInputSchema, type GPTV3ResponseLocalShellCallActionDto, type GPTV3ResponseLocalShellCallActionDtoEnv, GPTV3ResponseLocalShellCallActionDtoType, type GPTV3ResponseLocalShellCallDto, GPTV3ResponseLocalShellCallDtoStatus, GPTV3ResponseLocalShellCallDtoType, type GPTV3ResponseMcpApprovalRequestDto, GPTV3ResponseMcpApprovalRequestDtoType, type GPTV3ResponseMcpCallDto, GPTV3ResponseMcpCallDtoType, type GPTV3ResponseMcpListToolsDto, GPTV3ResponseMcpListToolsDtoType, type GPTV3ResponseMcpListToolsToolDto, type GPTV3ResponseMcpListToolsToolDtoAnnotations, type GPTV3ResponseMcpListToolsToolDtoInputSchema, type GPTV3ResponseOutputItemImageGenerationCallDto, type GPTV3ResponseOutputItemImageGenerationCallDtoMetadata, GPTV3ResponseOutputItemImageGenerationCallDtoStatus, GPTV3ResponseOutputItemImageGenerationCallDtoType, type GPTV3ResponseOutputMessageDto, type GPTV3ResponseOutputMessageDtoContentItem, GPTV3ResponseOutputMessageDtoRole, type GPTV3ResponseOutputMessageDtoStatus, GPTV3ResponseOutputMessageDtoType, type GPTV3ResponseOutputRefusalDto, GPTV3ResponseOutputRefusalDtoType, type GPTV3ResponseOutputTextContainerFileCitationDto, GPTV3ResponseOutputTextContainerFileCitationDtoType, type GPTV3ResponseOutputTextDto, type GPTV3ResponseOutputTextDtoAnnotationsItem, GPTV3ResponseOutputTextDtoType, type GPTV3ResponseOutputTextFileCitationDto, GPTV3ResponseOutputTextFileCitationDtoType, type GPTV3ResponseOutputTextFilePathDto, GPTV3ResponseOutputTextFilePathDtoType, type GPTV3ResponseOutputTextLogprobDto, type GPTV3ResponseOutputTextLogprobTopLogprobDto, type GPTV3ResponseOutputTextURLCitationDto, GPTV3ResponseOutputTextURLCitationDtoType, type GPTV3ResponseReasoningItemDto, GPTV3ResponseReasoningItemDtoStatus, GPTV3ResponseReasoningItemDtoType, type GPTV3ResponseReasoningItemSummaryDto, GPTV3ResponseReasoningItemSummaryDtoType, type GPTV3SystemMessageDto, type GPTV3SystemMessageDtoContent, type GPTV3SystemMessageDtoContentItemOneOfItem, type GPTV3SystemMessageDtoContentOneOfItem, GPTV3SystemMessageDtoRole, GPTV3SystemMessageDtoType, type GPTV3TextConfigDto, type GPTV3TextConfigDtoFormat, type GPTV3TextInputDto, GPTV3TextInputDtoType, type GPTV3ToolChoiceDto, GPTV3ToolChoiceDtoType, type GPTV3ToolChoiceFunctionDto, type GPTV3ToolDto, GPTV3ToolDtoType, type GPTV3UserMessageDto, type GPTV3UserMessageDtoContent, type GPTV3UserMessageDtoContentOneOfItem, GPTV3UserMessageDtoRole, GPTV3UserMessageDtoType, type GPTV3WebSearchCallDto, GPTV3WebSearchCallDtoType, type GPTV3WebSearchResultDto, GPTV3WebSearchResultDtoStatus, GPTV3WebSearchResultDtoType, type GPTV3WebSearchToolDto, GPTV3WebSearchToolDtoSearchContextSize, GPTV3WebSearchToolDtoType, type GetAccountParamsDto, type GetBalanceParamsDto, type GetCollectionParamsDto, type GetGroupParamsDto, type GetImageParamsDto, type GetImageRepresentationParamsDto, GetImageRepresentationParamsDtoType, type GetOperationParamsDto, type GetOperationsParamsDto, type GetPoseParamsDto, type GetStackParamsDto, type GetStorageRecordParamsDto, type GetUploadedFileUrlResponseDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategory, type GoogleNanoBananaV1Input, 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 HauteNaomiV1Request, type HauteNaomiV1RequestMetadata, type HauteNaomiV1Response, type HauteNaomiV1ResponseInput, HauteNaomiV1ResponseKind, type HauteNaomiV1ResponseMetadata, HauteNaomiV1ResponseStatus, type IdeogramCharacterV1Input, type IdeogramCharacterV1Request, type IdeogramCharacterV1RequestMetadata, type IdeogramCharacterV1Response, type IdeogramCharacterV1ResponseInput, IdeogramCharacterV1ResponseKind, type IdeogramCharacterV1ResponseMetadata, IdeogramCharacterV1ResponseStatus, type ImageEntity, ImageEntityKind, type ImageEntityMetadata, type ImageRepresentationResponseDto, type ImageUrlResponseDto, type Imagen4Input, Imagen4InputAspectRatio, Imagen4InputSafetyFilterLevel, type Imagen4V1Request, type Imagen4V1RequestMetadata, type Imagen4V1Response, type Imagen4V1ResponseInput, Imagen4V1ResponseKind, type Imagen4V1ResponseMetadata, Imagen4V1ResponseStatus, type ImagineFlux11ProUltraV1Request, type ImagineFlux11ProUltraV1RequestMetadata, type ImagineFlux11ProUltraV1Response, type ImagineFlux11ProUltraV1ResponseInput, ImagineFlux11ProUltraV1ResponseKind, type ImagineFlux11ProUltraV1ResponseMetadata, ImagineFlux11ProUltraV1ResponseStatus, type ImagineKateV1Request, type ImagineKateV1RequestMetadata, type ImagineKateV1Response, type ImagineKateV1ResponseInput, ImagineKateV1ResponseKind, type ImagineKateV1ResponseMetadata, ImagineKateV1ResponseStatus, type InitializeGenericUploadParamsDto, type InitializeGenericUploadResponseDto, type InitializeImageUploadResultDto, type InpaintKateV1Request, type InpaintKateV1RequestMetadata, type InpaintKateV1Response, type InpaintKateV1ResponseInput, InpaintKateV1ResponseKind, type InpaintKateV1ResponseMetadata, InpaintKateV1ResponseStatus, type KateImagineV1Input, KateImagineV1InputAspectRatio, type KateInpaintV1Input, KateInpaintV1InputBranch, type LindaHauteV1Input, LindaHauteV1InputAspectRatio, type ListAccessControllerAttachmentsDto, type ListAccessControllerDto, type ListAccessControllerGrantsDto, ListAccessControllerGrantsDtoAccess, type ListAccountsDto, type ListAccountsParamsDto, ListAccountsParamsDtoOrderBy, type ListChatsDto, type ListCollectionItemsDto, type ListCollectionItemsParamsDto, ListCollectionItemsParamsDtoKind, ListCollectionItemsParamsDtoOrderBy, type ListCollectionsDto, type ListCollectionsParamsDto, ListCollectionsParamsDtoOrderBy, type ListLorasDto, type ListOperationsDto, type ListOperationsParamsDto, ListOperationsParamsDtoOrderBy, type ListPipelinesDto, type ListPosesDto, type ListPosesParamsDto, ListPosesParamsDtoOrderBy, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderBy, type ListWorkflowsDto, type LoraControllerGetV1200, LoraControllerListV1OrderBy, type LoraControllerListV1Params, LoraControllerListV1Status, type LoraDto, type LoraDtoInput, type LoraDtoOutput, LoraDtoStatus, type LoraTrainingOutput, LoraTrainingOutputKind, type LoraTrainingRequest, type LoraTrainingRequestMetadata, type LoraTrainingResponse, type LoraTrainingResponseInput, LoraTrainingResponseKind, type LoraTrainingResponseMetadata, LoraTrainingResponseStatus, type LoraWebhookDto, type LoraWebhookDtoInput, type LoraWebhookDtoMetrics, type LoraWebhookDtoOutput, LoraWebhookDtoStatus, type LoraWebhookDtoUrls, type LumaPhotonV1Input, LumaPhotonV1InputAspectRatio, type LumaPhotonV1Request, type LumaPhotonV1RequestMetadata, type LumaPhotonV1Response, type LumaPhotonV1ResponseInput, LumaPhotonV1ResponseKind, type LumaPhotonV1ResponseMetadata, LumaPhotonV1ResponseStatus, type MathV1Input, type MathV1InputInput, type MathV1Request, type MathV1RequestMetadata, type MathV1Response, type MathV1ResponseInput, MathV1ResponseKind, type MathV1ResponseMetadata, MathV1ResponseStatus, type MethodsPermissions, type ModifyAccessParamsDto, ModifyAccessParamsDtoAccess, ModifyAccessParamsDtoPrincipalType, type NaomiHauteV1Input, NaomiHauteV1InputMode, type NegateImageV1Input, type NegateImageV1Request, type NegateImageV1RequestMetadata, type NegateImageV1Response, type NegateImageV1ResponseInput, NegateImageV1ResponseKind, type NegateImageV1ResponseMetadata, NegateImageV1ResponseStatus, type NoiseV1Input, type NoiseV1Request, type NoiseV1RequestMetadata, type NoiseV1Response, type NoiseV1ResponseInput, NoiseV1ResponseKind, type NoiseV1ResponseMetadata, NoiseV1ResponseStatus, type ObjectDetectionV1Input, type ObjectDetectionV1Output, ObjectDetectionV1OutputKind, type ObjectDetectionV1Request, type ObjectDetectionV1RequestMetadata, type ObjectDetectionV1Response, type ObjectDetectionV1ResponseInput, ObjectDetectionV1ResponseKind, type ObjectDetectionV1ResponseMetadata, ObjectDetectionV1ResponseStatus, type OneCompilerV1Input, type OneCompilerV1InputInput, OneCompilerV1InputLanguage, type OnecompilerV1Output, type OnecompilerV1OutputData, type OnecompilerV1OutputDataResult, type OnecompilerV1OutputDataResultOneOf, OnecompilerV1OutputKind, type OnecompilerV1Request, type OnecompilerV1RequestMetadata, type OnecompilerV1Response, type OnecompilerV1ResponseInput, OnecompilerV1ResponseKind, type OnecompilerV1ResponseMetadata, OnecompilerV1ResponseStatus, type OperationEntity, type OperationEntityInput, OperationEntityKind, type OperationEntityMetadata, type OperationEntityOutput, OperationEntityStatus, type OperationOutputImageMultiple, OperationOutputImageMultipleKind, type OperationOutputImageSingle, OperationOutputImageSingleKind, type OperationOutputJSON, type OperationOutputJSONData, type OperationOutputJSONDataOneOf, OperationOutputJSONKind, type 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 SeedV1Request, type SeedV1RequestInput, 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 SegmentAnythingEmbeddingsV1Input, type SegmentAnythingEmbeddingsV1Request, type SegmentAnythingEmbeddingsV1RequestMetadata, type SegmentAnythingEmbeddingsV1Response, type SegmentAnythingEmbeddingsV1ResponseInput, SegmentAnythingEmbeddingsV1ResponseKind, type SegmentAnythingEmbeddingsV1ResponseMetadata, SegmentAnythingEmbeddingsV1ResponseStatus, type SegmentAnythingMaskV1Input, type SegmentAnythingMaskV1Request, type SegmentAnythingMaskV1RequestMetadata, type SegmentAnythingMaskV1Response, type SegmentAnythingMaskV1ResponseInput, SegmentAnythingMaskV1ResponseKind, type SegmentAnythingMaskV1ResponseMetadata, SegmentAnythingMaskV1ResponseStatus, type SelfAccountDto, type SelfAccountDtoPermissions, SelfAccountDtoType, type SetPosePreviewControllerParamsDto, type SetPosePreviewDto, type StackEntity, type StackEntityItemsItem, StackEntityKind, type StackEntityMetadata, StacksControllerListStacksV1OrderBy, type StacksControllerListStacksV1Params, type StartFluxTrainingParamsDto, type StartLoraTrainingParamsDto, type StartNaomiTrainingParamsDto, StartNaomiTrainingParamsDtoLrScheduler, StartNaomiTrainingParamsDtoMixedPrecision, type StartTrainingParamsDto, type StartTrainingParamsDtoInput, StartTrainingParamsDtoModelType, type StorageEntity, StorageEntityKind, type StorageEntityMetadata, type StorageEntityValue, type StorageRecordsResultDto, type StorageRecordsResultDtoValue, type StorageRecordsResultDtoValueOneOf, type StringsTemplateV1Input, type StringsTemplateV1Request, type StringsTemplateV1RequestMetadata, type StringsTemplateV1Response, type StringsTemplateV1ResponseInput, StringsTemplateV1ResponseKind, type StringsTemplateV1ResponseMetadata, StringsTemplateV1ResponseStatus, type SubscribePayload, type SupportFile, type TaskDto, type TaskDtoArgsItem, type TaskDtoArgsItemOneOf, type TopazUpscaleV1Input, TopazUpscaleV1InputEnhanceModel, TopazUpscaleV1InputSubjectDetection, TopazUpscaleV1InputUpscaleFactor, type TopazUpscaleV1Request, type TopazUpscaleV1RequestMetadata, type TopazUpscaleV1Response, type TopazUpscaleV1ResponseInput, TopazUpscaleV1ResponseKind, type TopazUpscaleV1ResponseMetadata, TopazUpscaleV1ResponseStatus, type TranslateV1Input, type TranslateV1Output, type TranslateV1OutputData, TranslateV1OutputKind, type TranslateV1Request, type TranslateV1RequestMetadata, type TranslateV1Response, type TranslateV1ResponseInput, TranslateV1ResponseKind, type TranslateV1ResponseMetadata, TranslateV1ResponseStatus, type UpdateAccountControllerParamsDto, type UpdateAccountParamsDto, type UpdateMetadataDto, type UpdateMetadataDtoOverwrite, type UpdateResourceMetadataDto, type UpdateStorageRecordParamsDto, type UpdateStorageRecordParamsDtoValue, type UpdateStorageRecordParamsDtoValueOneOf, type UpdateWorkflowParamsDto, type UpdateWorkflowParamsDtoData, type UpdateWorkflowParamsDtoMetadata, type UploadControllerGetUploadedFileUrlV1Params, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1RequestMetadata, type UpscaleV1Response, type UpscaleV1ResponseInput, UpscaleV1ResponseKind, type UpscaleV1ResponseMetadata, UpscaleV1ResponseStatus, type VariableDto, type Veo3FastV1Request, type Veo3FastV1RequestMetadata, type Veo3FastV1Response, type Veo3FastV1ResponseInput, Veo3FastV1ResponseKind, type Veo3FastV1ResponseMetadata, Veo3FastV1ResponseStatus, type Veo3V1Input, Veo3V1InputResolution, type Veo3V1Request, type Veo3V1RequestMetadata, type Veo3V1Response, type Veo3V1ResponseInput, Veo3V1ResponseKind, type Veo3V1ResponseMetadata, Veo3V1ResponseStatus, type VideoEntity, VideoEntityKind, type VideoEntityMetadata, type VideoUrlResponseDto, type VideosControllerGetVideosV1Params, type VtonGiseleV1Request, type VtonGiseleV1RequestMetadata, type VtonGiseleV1Response, type VtonGiseleV1ResponseInput, VtonGiseleV1ResponseKind, type VtonGiseleV1ResponseMetadata, VtonGiseleV1ResponseStatus, type WaitOperationParamsDto, type WorkflowDto, type WorkflowDtoData, type WorkflowDtoMetadata, WorkflowsControllerListWorkflowsV1OrderBy, type WorkflowsControllerListWorkflowsV1Params, type WsEventEntity, type WsEventMap, createSDK, createTokenSigner };
|