@hautechai/sdk 2.29.1 → 2.30.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 +104 -8
- package/dist/index.d.ts +104 -8
- package/dist/index.js +79 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +76 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2262,6 +2262,47 @@ interface CropV1Response {
|
|
|
2262
2262
|
updatedAt: string;
|
|
2263
2263
|
}
|
|
2264
2264
|
|
|
2265
|
+
/**
|
|
2266
|
+
* Generated by orval v7.10.0 🍺
|
|
2267
|
+
* Do not edit manually.
|
|
2268
|
+
* Hautech API
|
|
2269
|
+
* OpenAPI spec version: 1.0
|
|
2270
|
+
*/
|
|
2271
|
+
type CurrentAccessControllerDtoRelationsItem = typeof CurrentAccessControllerDtoRelationsItem[keyof typeof CurrentAccessControllerDtoRelationsItem];
|
|
2272
|
+
declare const CurrentAccessControllerDtoRelationsItem: {
|
|
2273
|
+
readonly owner: "owner";
|
|
2274
|
+
readonly maintainer: "maintainer";
|
|
2275
|
+
readonly writer: "writer";
|
|
2276
|
+
readonly reader: "reader";
|
|
2277
|
+
readonly member: "member";
|
|
2278
|
+
readonly public_execute: "public_execute";
|
|
2279
|
+
readonly public_read: "public_read";
|
|
2280
|
+
readonly can_assign_members: "can_assign_members";
|
|
2281
|
+
readonly can_assign_maintainers: "can_assign_maintainers";
|
|
2282
|
+
readonly can_assign_owners: "can_assign_owners";
|
|
2283
|
+
readonly can_view: "can_view";
|
|
2284
|
+
readonly can_edit: "can_edit";
|
|
2285
|
+
readonly can_delete: "can_delete";
|
|
2286
|
+
readonly can_change_access: "can_change_access";
|
|
2287
|
+
readonly can_add_items: "can_add_items";
|
|
2288
|
+
readonly can_remove_items: "can_remove_items";
|
|
2289
|
+
readonly can_list: "can_list";
|
|
2290
|
+
readonly can_execute: "can_execute";
|
|
2291
|
+
readonly parent: "parent";
|
|
2292
|
+
};
|
|
2293
|
+
|
|
2294
|
+
/**
|
|
2295
|
+
* Generated by orval v7.10.0 🍺
|
|
2296
|
+
* Do not edit manually.
|
|
2297
|
+
* Hautech API
|
|
2298
|
+
* OpenAPI spec version: 1.0
|
|
2299
|
+
*/
|
|
2300
|
+
|
|
2301
|
+
interface CurrentAccessControllerDto {
|
|
2302
|
+
resourceId: string;
|
|
2303
|
+
relations: CurrentAccessControllerDtoRelationsItem[];
|
|
2304
|
+
}
|
|
2305
|
+
|
|
2265
2306
|
/**
|
|
2266
2307
|
* Generated by orval v7.10.0 🍺
|
|
2267
2308
|
* Do not edit manually.
|
|
@@ -6906,7 +6947,6 @@ declare const GrantAccessControllerParamsAccess: {
|
|
|
6906
6947
|
readonly can_assign_maintainers: "can_assign_maintainers";
|
|
6907
6948
|
readonly can_assign_owners: "can_assign_owners";
|
|
6908
6949
|
readonly can_view: "can_view";
|
|
6909
|
-
readonly can_write: "can_write";
|
|
6910
6950
|
readonly can_edit: "can_edit";
|
|
6911
6951
|
readonly can_delete: "can_delete";
|
|
6912
6952
|
readonly can_change_access: "can_change_access";
|
|
@@ -9295,7 +9335,6 @@ declare const ListAccessControllerGrantsDtoAccess: {
|
|
|
9295
9335
|
readonly can_assign_maintainers: "can_assign_maintainers";
|
|
9296
9336
|
readonly can_assign_owners: "can_assign_owners";
|
|
9297
9337
|
readonly can_view: "can_view";
|
|
9298
|
-
readonly can_write: "can_write";
|
|
9299
9338
|
readonly can_edit: "can_edit";
|
|
9300
9339
|
readonly can_delete: "can_delete";
|
|
9301
9340
|
readonly can_change_access: "can_change_access";
|
|
@@ -10414,7 +10453,6 @@ declare const ModifyAccessParamsDtoAccess: {
|
|
|
10414
10453
|
readonly can_assign_maintainers: "can_assign_maintainers";
|
|
10415
10454
|
readonly can_assign_owners: "can_assign_owners";
|
|
10416
10455
|
readonly can_view: "can_view";
|
|
10417
|
-
readonly can_write: "can_write";
|
|
10418
10456
|
readonly can_edit: "can_edit";
|
|
10419
10457
|
readonly can_delete: "can_delete";
|
|
10420
10458
|
readonly can_change_access: "can_change_access";
|
|
@@ -12028,7 +12066,6 @@ declare const RevokeAccessControllerParamsDtoAccess: {
|
|
|
12028
12066
|
readonly can_assign_maintainers: "can_assign_maintainers";
|
|
12029
12067
|
readonly can_assign_owners: "can_assign_owners";
|
|
12030
12068
|
readonly can_view: "can_view";
|
|
12031
|
-
readonly can_write: "can_write";
|
|
12032
12069
|
readonly can_edit: "can_edit";
|
|
12033
12070
|
readonly can_delete: "can_delete";
|
|
12034
12071
|
readonly can_change_access: "can_change_access";
|
|
@@ -12905,6 +12942,33 @@ interface SetPosePreviewDto {
|
|
|
12905
12942
|
* Hautech API
|
|
12906
12943
|
* OpenAPI spec version: 1.0
|
|
12907
12944
|
*/
|
|
12945
|
+
type ShareWithEveryoneControllerParamsDtoAccessItem = typeof ShareWithEveryoneControllerParamsDtoAccessItem[keyof typeof ShareWithEveryoneControllerParamsDtoAccessItem];
|
|
12946
|
+
declare const ShareWithEveryoneControllerParamsDtoAccessItem: {
|
|
12947
|
+
readonly public_execute: "public_execute";
|
|
12948
|
+
readonly public_read: "public_read";
|
|
12949
|
+
};
|
|
12950
|
+
|
|
12951
|
+
/**
|
|
12952
|
+
* Generated by orval v7.10.0 🍺
|
|
12953
|
+
* Do not edit manually.
|
|
12954
|
+
* Hautech API
|
|
12955
|
+
* OpenAPI spec version: 1.0
|
|
12956
|
+
*/
|
|
12957
|
+
|
|
12958
|
+
interface ShareWithEveryoneControllerParamsDto {
|
|
12959
|
+
/** @minItems 1 */
|
|
12960
|
+
access: ShareWithEveryoneControllerParamsDtoAccessItem[];
|
|
12961
|
+
}
|
|
12962
|
+
|
|
12963
|
+
/**
|
|
12964
|
+
* Generated by orval v7.10.0 🍺
|
|
12965
|
+
* Do not edit manually.
|
|
12966
|
+
* Hautech API
|
|
12967
|
+
* OpenAPI spec version: 1.0
|
|
12968
|
+
*/
|
|
12969
|
+
/**
|
|
12970
|
+
* @minItems 1
|
|
12971
|
+
*/
|
|
12908
12972
|
type ShareWithEveryoneControllerParamsDtoAccess = typeof ShareWithEveryoneControllerParamsDtoAccess[keyof typeof ShareWithEveryoneControllerParamsDtoAccess];
|
|
12909
12973
|
declare const ShareWithEveryoneControllerParamsDtoAccess: {
|
|
12910
12974
|
readonly public_execute: "public_execute";
|
|
@@ -12917,10 +12981,40 @@ declare const ShareWithEveryoneControllerParamsDtoAccess: {
|
|
|
12917
12981
|
* Hautech API
|
|
12918
12982
|
* OpenAPI spec version: 1.0
|
|
12919
12983
|
*/
|
|
12984
|
+
type SharedAccessEntryDtoRelationsItem = typeof SharedAccessEntryDtoRelationsItem[keyof typeof SharedAccessEntryDtoRelationsItem];
|
|
12985
|
+
declare const SharedAccessEntryDtoRelationsItem: {
|
|
12986
|
+
readonly owner: "owner";
|
|
12987
|
+
readonly maintainer: "maintainer";
|
|
12988
|
+
readonly writer: "writer";
|
|
12989
|
+
readonly reader: "reader";
|
|
12990
|
+
readonly member: "member";
|
|
12991
|
+
readonly public_execute: "public_execute";
|
|
12992
|
+
readonly public_read: "public_read";
|
|
12993
|
+
readonly can_assign_members: "can_assign_members";
|
|
12994
|
+
readonly can_assign_maintainers: "can_assign_maintainers";
|
|
12995
|
+
readonly can_assign_owners: "can_assign_owners";
|
|
12996
|
+
readonly can_view: "can_view";
|
|
12997
|
+
readonly can_edit: "can_edit";
|
|
12998
|
+
readonly can_delete: "can_delete";
|
|
12999
|
+
readonly can_change_access: "can_change_access";
|
|
13000
|
+
readonly can_add_items: "can_add_items";
|
|
13001
|
+
readonly can_remove_items: "can_remove_items";
|
|
13002
|
+
readonly can_list: "can_list";
|
|
13003
|
+
readonly can_execute: "can_execute";
|
|
13004
|
+
readonly parent: "parent";
|
|
13005
|
+
};
|
|
12920
13006
|
|
|
12921
|
-
|
|
12922
|
-
|
|
12923
|
-
|
|
13007
|
+
/**
|
|
13008
|
+
* Generated by orval v7.10.0 🍺
|
|
13009
|
+
* Do not edit manually.
|
|
13010
|
+
* Hautech API
|
|
13011
|
+
* OpenAPI spec version: 1.0
|
|
13012
|
+
*/
|
|
13013
|
+
|
|
13014
|
+
interface SharedAccessEntryDto {
|
|
13015
|
+
resourceId: string;
|
|
13016
|
+
principalId: string;
|
|
13017
|
+
relations: SharedAccessEntryDtoRelationsItem[];
|
|
12924
13018
|
}
|
|
12925
13019
|
|
|
12926
13020
|
/**
|
|
@@ -15274,6 +15368,8 @@ declare const apiDefinitions: {
|
|
|
15274
15368
|
shareWithEveryone: (id: string, shareWithEveryoneControllerParamsDto: ShareWithEveryoneControllerParamsDto, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<void, any>>;
|
|
15275
15369
|
revokeFromEveryone: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<void, any>>;
|
|
15276
15370
|
list: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ListAccessControllerDto, any>>;
|
|
15371
|
+
currentAccess: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<CurrentAccessControllerDto, any>>;
|
|
15372
|
+
listSharedUsers: (id: string, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<SharedAccessEntryDto[], any>>;
|
|
15277
15373
|
listShared: (params?: AccessControllerListSharedV1Params, options?: axios.AxiosRequestConfig<any> | undefined) => Promise<axios.AxiosResponse<ListSharedResourcesResponseDto, any>>;
|
|
15278
15374
|
}>;
|
|
15279
15375
|
pipelines: ApiDefinitionTree<{
|
|
@@ -15873,4 +15969,4 @@ interface UserProfileDto {
|
|
|
15873
15969
|
pictureUrl?: string | null;
|
|
15874
15970
|
}
|
|
15875
15971
|
|
|
15876
|
-
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 AnimateKling21ProV1Input, AnimateKling21ProV1InputDuration, type AnimateKling21ProV1Request, type AnimateKling21ProV1RequestMetadata, type AnimateKling21ProV1Response, type AnimateKling21ProV1ResponseInput, AnimateKling21ProV1ResponseKind, type AnimateKling21ProV1ResponseMetadata, AnimateKling21ProV1ResponseStatus, type AnimateKling21StandardV1Input, AnimateKling21StandardV1InputDuration, type AnimateKling21StandardV1Request, type AnimateKling21StandardV1RequestMetadata, type AnimateKling21StandardV1Response, type AnimateKling21StandardV1ResponseInput, AnimateKling21StandardV1ResponseKind, type AnimateKling21StandardV1ResponseMetadata, AnimateKling21StandardV1ResponseStatus, type AnimateKling21V1Input, AnimateKling21V1InputDuration, type AnimateKling21V1Request, type AnimateKling21V1RequestMetadata, type AnimateKling21V1Response, type AnimateKling21V1ResponseInput, AnimateKling21V1ResponseKind, type AnimateKling21V1ResponseMetadata, AnimateKling21V1ResponseStatus, type ApiDefinitionTree, type AttachAccessControllerParamsDto, type AttachAccessParamsDto, type BalanceResultDto, type BaseWsEvent, type BaseWsEventType, type CaseDto, ChatControllerListChatsV1OrderBy, type ChatControllerListChatsV1Params, type ChatDto, type ChatDtoItemsItem, type ChatParametersDto, type ChatParametersDtoResponseFormat, type ClassifyImageInputDto, type ClassifyImageOutputDto, ClassifyImageOutputDtoKind, type ClipClassifyV1Request, type ClipClassifyV1RequestMetadata, type ClipClassifyV1Response, type ClipClassifyV1ResponseInput, ClipClassifyV1ResponseKind, type ClipClassifyV1ResponseMetadata, ClipClassifyV1ResponseStatus, 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 CreateUserProfileDto, 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, GoogleNanoBananaV1InputAspectRatio, 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 Imagen4StandardV1Input, Imagen4StandardV1InputAspectRatio, type Imagen4StandardV1Request, type Imagen4StandardV1RequestMetadata, type Imagen4StandardV1Response, type Imagen4StandardV1ResponseInput, Imagen4StandardV1ResponseKind, type Imagen4StandardV1ResponseMetadata, Imagen4StandardV1ResponseStatus, type Imagen4UltraV1Input, Imagen4UltraV1InputAspectRatio, type Imagen4UltraV1Request, type Imagen4UltraV1RequestMetadata, type Imagen4UltraV1Response, type Imagen4UltraV1ResponseInput, Imagen4UltraV1ResponseKind, type Imagen4UltraV1ResponseMetadata, Imagen4UltraV1ResponseStatus, type Imagen4V1Request, type Imagen4V1RequestMetadata, type Imagen4V1Response, type Imagen4V1ResponseInput, Imagen4V1ResponseKind, type Imagen4V1ResponseMetadata, Imagen4V1ResponseStatus, type ImagesDownscaleV1Input, type ImagesDownscaleV1Request, type ImagesDownscaleV1RequestMetadata, type ImagesDownscaleV1Response, type ImagesDownscaleV1ResponseInput, ImagesDownscaleV1ResponseKind, type ImagesDownscaleV1ResponseMetadata, ImagesDownscaleV1ResponseStatus, type ImagesRenameV1Input, type ImagesRenameV1Request, type ImagesRenameV1RequestMetadata, type ImagesRenameV1Response, type ImagesRenameV1ResponseInput, ImagesRenameV1ResponseKind, type ImagesRenameV1ResponseMetadata, ImagesRenameV1ResponseStatus, 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 KlingVideo25ProImageToVideoV1Input, KlingVideo25ProImageToVideoV1InputDuration, type KlingVideo25ProImageToVideoV1Request, type KlingVideo25ProImageToVideoV1RequestMetadata, type KlingVideo25ProImageToVideoV1Response, type KlingVideo25ProImageToVideoV1ResponseInput, KlingVideo25ProImageToVideoV1ResponseKind, type KlingVideo25ProImageToVideoV1ResponseMetadata, KlingVideo25ProImageToVideoV1ResponseStatus, 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 PublicUserProfileDto, type PublicWorkflowAccessDto, type PublicWorkflowDto, type PublicWorkflowDtoData, type PublicWorkflowDtoInputSchema, type PublicWorkflowDtoMetadata, type PublicWorkflowDtoOutputSchema, type PublicWorkflowDtoPipelineTemplate, type PublicWorkflowSummaryDto, type PublicWorkflowSummaryDtoInputSchema, type PublicWorkflowSummaryDtoMetadata, type PublicWorkflowSummaryDtoOutputSchema, 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 ReveRemixV1Input, ReveRemixV1InputAspectRatio, ReveRemixV1InputVersion, type ReveRemixV1Request, type ReveRemixV1RequestMetadata, type ReveRemixV1Response, type ReveRemixV1ResponseInput, ReveRemixV1ResponseKind, type ReveRemixV1ResponseMetadata, ReveRemixV1ResponseStatus, type RevokeAccessControllerParamsDto, RevokeAccessControllerParamsDtoAccess, RevokeAccessControllerParamsDtoPrincipalType, type RunPublicWorkflowResponseDto, 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, Seedream4EditV1InputOptimizePromptOptions, 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 ShareWithEveryoneControllerParamsDto, ShareWithEveryoneControllerParamsDtoAccess, 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 StringsLengthV1Input, type StringsLengthV1Request, type StringsLengthV1RequestMetadata, type StringsLengthV1Response, type StringsLengthV1ResponseInput, StringsLengthV1ResponseKind, type StringsLengthV1ResponseMetadata, StringsLengthV1ResponseStatus, type StringsSliceV1Input, type StringsSliceV1Request, type StringsSliceV1RequestMetadata, type StringsSliceV1Response, type StringsSliceV1ResponseInput, StringsSliceV1ResponseKind, type StringsSliceV1ResponseMetadata, StringsSliceV1ResponseStatus, type StringsSwitchV1Input, type StringsSwitchV1Request, type StringsSwitchV1RequestMetadata, type StringsSwitchV1Response, type StringsSwitchV1ResponseInput, StringsSwitchV1ResponseKind, type StringsSwitchV1ResponseMetadata, StringsSwitchV1ResponseStatus, 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 UpdateUserProfileDto, 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 UserProfileDto, type VariableDto, type VariableDtoValue, type Veo31FastV1Request, type Veo31FastV1RequestMetadata, type Veo31FastV1Response, type Veo31FastV1ResponseInput, Veo31FastV1ResponseKind, type Veo31FastV1ResponseMetadata, Veo31FastV1ResponseStatus, type Veo31Input, Veo31InputAspectRatio, Veo31InputDuration, Veo31InputResolution, type Veo31V1Request, type Veo31V1RequestMetadata, type Veo31V1Response, type Veo31V1ResponseInput, Veo31V1ResponseKind, type Veo31V1ResponseMetadata, Veo31V1ResponseStatus, type Veo3FastV1Request, type Veo3FastV1RequestMetadata, type Veo3FastV1Response, type Veo3FastV1ResponseInput, Veo3FastV1ResponseKind, type Veo3FastV1ResponseMetadata, Veo3FastV1ResponseStatus, type Veo3V1Input, Veo3V1InputAspectRatio, Veo3V1InputDuration, 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 };
|
|
15972
|
+
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 AnimateKling21ProV1Input, AnimateKling21ProV1InputDuration, type AnimateKling21ProV1Request, type AnimateKling21ProV1RequestMetadata, type AnimateKling21ProV1Response, type AnimateKling21ProV1ResponseInput, AnimateKling21ProV1ResponseKind, type AnimateKling21ProV1ResponseMetadata, AnimateKling21ProV1ResponseStatus, type AnimateKling21StandardV1Input, AnimateKling21StandardV1InputDuration, type AnimateKling21StandardV1Request, type AnimateKling21StandardV1RequestMetadata, type AnimateKling21StandardV1Response, type AnimateKling21StandardV1ResponseInput, AnimateKling21StandardV1ResponseKind, type AnimateKling21StandardV1ResponseMetadata, AnimateKling21StandardV1ResponseStatus, type AnimateKling21V1Input, AnimateKling21V1InputDuration, type AnimateKling21V1Request, type AnimateKling21V1RequestMetadata, type AnimateKling21V1Response, type AnimateKling21V1ResponseInput, AnimateKling21V1ResponseKind, type AnimateKling21V1ResponseMetadata, AnimateKling21V1ResponseStatus, type ApiDefinitionTree, type AttachAccessControllerParamsDto, type AttachAccessParamsDto, type BalanceResultDto, type BaseWsEvent, type BaseWsEventType, type CaseDto, ChatControllerListChatsV1OrderBy, type ChatControllerListChatsV1Params, type ChatDto, type ChatDtoItemsItem, type ChatParametersDto, type ChatParametersDtoResponseFormat, type ClassifyImageInputDto, type ClassifyImageOutputDto, ClassifyImageOutputDtoKind, type ClipClassifyV1Request, type ClipClassifyV1RequestMetadata, type ClipClassifyV1Response, type ClipClassifyV1ResponseInput, ClipClassifyV1ResponseKind, type ClipClassifyV1ResponseMetadata, ClipClassifyV1ResponseStatus, 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 CreateUserProfileDto, 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 CurrentAccessControllerDto, CurrentAccessControllerDtoRelationsItem, 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, GoogleNanoBananaV1InputAspectRatio, 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 Imagen4StandardV1Input, Imagen4StandardV1InputAspectRatio, type Imagen4StandardV1Request, type Imagen4StandardV1RequestMetadata, type Imagen4StandardV1Response, type Imagen4StandardV1ResponseInput, Imagen4StandardV1ResponseKind, type Imagen4StandardV1ResponseMetadata, Imagen4StandardV1ResponseStatus, type Imagen4UltraV1Input, Imagen4UltraV1InputAspectRatio, type Imagen4UltraV1Request, type Imagen4UltraV1RequestMetadata, type Imagen4UltraV1Response, type Imagen4UltraV1ResponseInput, Imagen4UltraV1ResponseKind, type Imagen4UltraV1ResponseMetadata, Imagen4UltraV1ResponseStatus, type Imagen4V1Request, type Imagen4V1RequestMetadata, type Imagen4V1Response, type Imagen4V1ResponseInput, Imagen4V1ResponseKind, type Imagen4V1ResponseMetadata, Imagen4V1ResponseStatus, type ImagesDownscaleV1Input, type ImagesDownscaleV1Request, type ImagesDownscaleV1RequestMetadata, type ImagesDownscaleV1Response, type ImagesDownscaleV1ResponseInput, ImagesDownscaleV1ResponseKind, type ImagesDownscaleV1ResponseMetadata, ImagesDownscaleV1ResponseStatus, type ImagesRenameV1Input, type ImagesRenameV1Request, type ImagesRenameV1RequestMetadata, type ImagesRenameV1Response, type ImagesRenameV1ResponseInput, ImagesRenameV1ResponseKind, type ImagesRenameV1ResponseMetadata, ImagesRenameV1ResponseStatus, 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 KlingVideo25ProImageToVideoV1Input, KlingVideo25ProImageToVideoV1InputDuration, type KlingVideo25ProImageToVideoV1Request, type KlingVideo25ProImageToVideoV1RequestMetadata, type KlingVideo25ProImageToVideoV1Response, type KlingVideo25ProImageToVideoV1ResponseInput, KlingVideo25ProImageToVideoV1ResponseKind, type KlingVideo25ProImageToVideoV1ResponseMetadata, KlingVideo25ProImageToVideoV1ResponseStatus, 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 PublicUserProfileDto, type PublicWorkflowAccessDto, type PublicWorkflowDto, type PublicWorkflowDtoData, type PublicWorkflowDtoInputSchema, type PublicWorkflowDtoMetadata, type PublicWorkflowDtoOutputSchema, type PublicWorkflowDtoPipelineTemplate, type PublicWorkflowSummaryDto, type PublicWorkflowSummaryDtoInputSchema, type PublicWorkflowSummaryDtoMetadata, type PublicWorkflowSummaryDtoOutputSchema, 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 ReveRemixV1Input, ReveRemixV1InputAspectRatio, ReveRemixV1InputVersion, type ReveRemixV1Request, type ReveRemixV1RequestMetadata, type ReveRemixV1Response, type ReveRemixV1ResponseInput, ReveRemixV1ResponseKind, type ReveRemixV1ResponseMetadata, ReveRemixV1ResponseStatus, type RevokeAccessControllerParamsDto, RevokeAccessControllerParamsDtoAccess, RevokeAccessControllerParamsDtoPrincipalType, type RunPublicWorkflowResponseDto, 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, Seedream4EditV1InputOptimizePromptOptions, 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 ShareWithEveryoneControllerParamsDto, ShareWithEveryoneControllerParamsDtoAccess, ShareWithEveryoneControllerParamsDtoAccessItem, type SharedAccessEntryDto, SharedAccessEntryDtoRelationsItem, 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 StringsLengthV1Input, type StringsLengthV1Request, type StringsLengthV1RequestMetadata, type StringsLengthV1Response, type StringsLengthV1ResponseInput, StringsLengthV1ResponseKind, type StringsLengthV1ResponseMetadata, StringsLengthV1ResponseStatus, type StringsSliceV1Input, type StringsSliceV1Request, type StringsSliceV1RequestMetadata, type StringsSliceV1Response, type StringsSliceV1ResponseInput, StringsSliceV1ResponseKind, type StringsSliceV1ResponseMetadata, StringsSliceV1ResponseStatus, type StringsSwitchV1Input, type StringsSwitchV1Request, type StringsSwitchV1RequestMetadata, type StringsSwitchV1Response, type StringsSwitchV1ResponseInput, StringsSwitchV1ResponseKind, type StringsSwitchV1ResponseMetadata, StringsSwitchV1ResponseStatus, 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 UpdateUserProfileDto, 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 UserProfileDto, type VariableDto, type VariableDtoValue, type Veo31FastV1Request, type Veo31FastV1RequestMetadata, type Veo31FastV1Response, type Veo31FastV1ResponseInput, Veo31FastV1ResponseKind, type Veo31FastV1ResponseMetadata, Veo31FastV1ResponseStatus, type Veo31Input, Veo31InputAspectRatio, Veo31InputDuration, Veo31InputResolution, type Veo31V1Request, type Veo31V1RequestMetadata, type Veo31V1Response, type Veo31V1ResponseInput, Veo31V1ResponseKind, type Veo31V1ResponseMetadata, Veo31V1ResponseStatus, type Veo3FastV1Request, type Veo3FastV1RequestMetadata, type Veo3FastV1Response, type Veo3FastV1ResponseInput, Veo3FastV1ResponseKind, type Veo3FastV1ResponseMetadata, Veo3FastV1ResponseStatus, type Veo3V1Input, Veo3V1InputAspectRatio, Veo3V1InputDuration, 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 };
|
package/dist/index.js
CHANGED
|
@@ -10356,6 +10356,7 @@ __export(index_exports, {
|
|
|
10356
10356
|
ContrastV1ResponseStatus: () => ContrastV1ResponseStatus,
|
|
10357
10357
|
CropV1ResponseKind: () => CropV1ResponseKind,
|
|
10358
10358
|
CropV1ResponseStatus: () => CropV1ResponseStatus,
|
|
10359
|
+
CurrentAccessControllerDtoRelationsItem: () => CurrentAccessControllerDtoRelationsItem,
|
|
10359
10360
|
CutV1ResponseKind: () => CutV1ResponseKind,
|
|
10360
10361
|
CutV1ResponseStatus: () => CutV1ResponseStatus,
|
|
10361
10362
|
EchoV1ResponseKind: () => EchoV1ResponseKind,
|
|
@@ -10619,6 +10620,8 @@ __export(index_exports, {
|
|
|
10619
10620
|
SegmentAnythingMaskV1ResponseStatus: () => SegmentAnythingMaskV1ResponseStatus,
|
|
10620
10621
|
SelfAccountDtoType: () => SelfAccountDtoType,
|
|
10621
10622
|
ShareWithEveryoneControllerParamsDtoAccess: () => ShareWithEveryoneControllerParamsDtoAccess,
|
|
10623
|
+
ShareWithEveryoneControllerParamsDtoAccessItem: () => ShareWithEveryoneControllerParamsDtoAccessItem,
|
|
10624
|
+
SharedAccessEntryDtoRelationsItem: () => SharedAccessEntryDtoRelationsItem,
|
|
10622
10625
|
SharedResourceDtoType: () => SharedResourceDtoType,
|
|
10623
10626
|
StackEntityKind: () => StackEntityKind,
|
|
10624
10627
|
StacksControllerListStacksV1OrderBy: () => StacksControllerListStacksV1OrderBy,
|
|
@@ -12756,6 +12759,24 @@ var getAccess = () => {
|
|
|
12756
12759
|
options
|
|
12757
12760
|
);
|
|
12758
12761
|
};
|
|
12762
|
+
const accessControllerCurrentAccessV1 = (id, options) => {
|
|
12763
|
+
return axiosMutator(
|
|
12764
|
+
{
|
|
12765
|
+
url: `/v1/resources/${id}/access/self`,
|
|
12766
|
+
method: "GET"
|
|
12767
|
+
},
|
|
12768
|
+
options
|
|
12769
|
+
);
|
|
12770
|
+
};
|
|
12771
|
+
const accessControllerListSharedUsersV1 = (id, options) => {
|
|
12772
|
+
return axiosMutator(
|
|
12773
|
+
{
|
|
12774
|
+
url: `/v1/resources/${id}/access/shared`,
|
|
12775
|
+
method: "GET"
|
|
12776
|
+
},
|
|
12777
|
+
options
|
|
12778
|
+
);
|
|
12779
|
+
};
|
|
12759
12780
|
const accessControllerListSharedV1 = (params, options) => {
|
|
12760
12781
|
return axiosMutator(
|
|
12761
12782
|
{
|
|
@@ -12766,7 +12787,7 @@ var getAccess = () => {
|
|
|
12766
12787
|
options
|
|
12767
12788
|
);
|
|
12768
12789
|
};
|
|
12769
|
-
return { accessControllerGrantAccessV1, accessControllerRevokeAccessV1, accessControllerAttachAccessV1, accessControllerDetachAccessV1, accessControllerGrantAccessToEveryoneV1, accessControllerRevokeAccessFromEveryoneV1, accessControllerAccessV1, accessControllerListSharedV1 };
|
|
12790
|
+
return { accessControllerGrantAccessV1, accessControllerRevokeAccessV1, accessControllerAttachAccessV1, accessControllerDetachAccessV1, accessControllerGrantAccessToEveryoneV1, accessControllerRevokeAccessFromEveryoneV1, accessControllerAccessV1, accessControllerCurrentAccessV1, accessControllerListSharedUsersV1, accessControllerListSharedV1 };
|
|
12770
12791
|
};
|
|
12771
12792
|
|
|
12772
12793
|
// src/sdk/api-definitions/access.ts
|
|
@@ -12780,6 +12801,8 @@ var useAccessApi = () => {
|
|
|
12780
12801
|
shareWithEveryone: api.accessControllerGrantAccessToEveryoneV1,
|
|
12781
12802
|
revokeFromEveryone: api.accessControllerRevokeAccessFromEveryoneV1,
|
|
12782
12803
|
list: api.accessControllerAccessV1,
|
|
12804
|
+
currentAccess: api.accessControllerCurrentAccessV1,
|
|
12805
|
+
listSharedUsers: api.accessControllerListSharedUsersV1,
|
|
12783
12806
|
listShared: api.accessControllerListSharedV1
|
|
12784
12807
|
});
|
|
12785
12808
|
};
|
|
@@ -13114,6 +13137,29 @@ var CropV1ResponseStatus = {
|
|
|
13114
13137
|
failed: "failed"
|
|
13115
13138
|
};
|
|
13116
13139
|
|
|
13140
|
+
// src/autogenerated/schemas/currentAccessControllerDtoRelationsItem.ts
|
|
13141
|
+
var CurrentAccessControllerDtoRelationsItem = {
|
|
13142
|
+
owner: "owner",
|
|
13143
|
+
maintainer: "maintainer",
|
|
13144
|
+
writer: "writer",
|
|
13145
|
+
reader: "reader",
|
|
13146
|
+
member: "member",
|
|
13147
|
+
public_execute: "public_execute",
|
|
13148
|
+
public_read: "public_read",
|
|
13149
|
+
can_assign_members: "can_assign_members",
|
|
13150
|
+
can_assign_maintainers: "can_assign_maintainers",
|
|
13151
|
+
can_assign_owners: "can_assign_owners",
|
|
13152
|
+
can_view: "can_view",
|
|
13153
|
+
can_edit: "can_edit",
|
|
13154
|
+
can_delete: "can_delete",
|
|
13155
|
+
can_change_access: "can_change_access",
|
|
13156
|
+
can_add_items: "can_add_items",
|
|
13157
|
+
can_remove_items: "can_remove_items",
|
|
13158
|
+
can_list: "can_list",
|
|
13159
|
+
can_execute: "can_execute",
|
|
13160
|
+
parent: "parent"
|
|
13161
|
+
};
|
|
13162
|
+
|
|
13117
13163
|
// src/autogenerated/schemas/cutV1ResponseKind.ts
|
|
13118
13164
|
var CutV1ResponseKind = {
|
|
13119
13165
|
operation: "operation"
|
|
@@ -13896,7 +13942,6 @@ var GrantAccessControllerParamsAccess = {
|
|
|
13896
13942
|
can_assign_maintainers: "can_assign_maintainers",
|
|
13897
13943
|
can_assign_owners: "can_assign_owners",
|
|
13898
13944
|
can_view: "can_view",
|
|
13899
|
-
can_write: "can_write",
|
|
13900
13945
|
can_edit: "can_edit",
|
|
13901
13946
|
can_delete: "can_delete",
|
|
13902
13947
|
can_change_access: "can_change_access",
|
|
@@ -14235,7 +14280,6 @@ var ListAccessControllerGrantsDtoAccess = {
|
|
|
14235
14280
|
can_assign_maintainers: "can_assign_maintainers",
|
|
14236
14281
|
can_assign_owners: "can_assign_owners",
|
|
14237
14282
|
can_view: "can_view",
|
|
14238
|
-
can_write: "can_write",
|
|
14239
14283
|
can_edit: "can_edit",
|
|
14240
14284
|
can_delete: "can_delete",
|
|
14241
14285
|
can_change_access: "can_change_access",
|
|
@@ -14375,7 +14419,6 @@ var ModifyAccessParamsDtoAccess = {
|
|
|
14375
14419
|
can_assign_maintainers: "can_assign_maintainers",
|
|
14376
14420
|
can_assign_owners: "can_assign_owners",
|
|
14377
14421
|
can_view: "can_view",
|
|
14378
|
-
can_write: "can_write",
|
|
14379
14422
|
can_edit: "can_edit",
|
|
14380
14423
|
can_delete: "can_delete",
|
|
14381
14424
|
can_change_access: "can_change_access",
|
|
@@ -14695,7 +14738,6 @@ var RevokeAccessControllerParamsDtoAccess = {
|
|
|
14695
14738
|
can_assign_maintainers: "can_assign_maintainers",
|
|
14696
14739
|
can_assign_owners: "can_assign_owners",
|
|
14697
14740
|
can_view: "can_view",
|
|
14698
|
-
can_write: "can_write",
|
|
14699
14741
|
can_edit: "can_edit",
|
|
14700
14742
|
can_delete: "can_delete",
|
|
14701
14743
|
can_change_access: "can_change_access",
|
|
@@ -14822,6 +14864,35 @@ var ShareWithEveryoneControllerParamsDtoAccess = {
|
|
|
14822
14864
|
public_read: "public_read"
|
|
14823
14865
|
};
|
|
14824
14866
|
|
|
14867
|
+
// src/autogenerated/schemas/shareWithEveryoneControllerParamsDtoAccessItem.ts
|
|
14868
|
+
var ShareWithEveryoneControllerParamsDtoAccessItem = {
|
|
14869
|
+
public_execute: "public_execute",
|
|
14870
|
+
public_read: "public_read"
|
|
14871
|
+
};
|
|
14872
|
+
|
|
14873
|
+
// src/autogenerated/schemas/sharedAccessEntryDtoRelationsItem.ts
|
|
14874
|
+
var SharedAccessEntryDtoRelationsItem = {
|
|
14875
|
+
owner: "owner",
|
|
14876
|
+
maintainer: "maintainer",
|
|
14877
|
+
writer: "writer",
|
|
14878
|
+
reader: "reader",
|
|
14879
|
+
member: "member",
|
|
14880
|
+
public_execute: "public_execute",
|
|
14881
|
+
public_read: "public_read",
|
|
14882
|
+
can_assign_members: "can_assign_members",
|
|
14883
|
+
can_assign_maintainers: "can_assign_maintainers",
|
|
14884
|
+
can_assign_owners: "can_assign_owners",
|
|
14885
|
+
can_view: "can_view",
|
|
14886
|
+
can_edit: "can_edit",
|
|
14887
|
+
can_delete: "can_delete",
|
|
14888
|
+
can_change_access: "can_change_access",
|
|
14889
|
+
can_add_items: "can_add_items",
|
|
14890
|
+
can_remove_items: "can_remove_items",
|
|
14891
|
+
can_list: "can_list",
|
|
14892
|
+
can_execute: "can_execute",
|
|
14893
|
+
parent: "parent"
|
|
14894
|
+
};
|
|
14895
|
+
|
|
14825
14896
|
// src/autogenerated/schemas/sharedResourceDtoType.ts
|
|
14826
14897
|
var SharedResourceDtoType = {
|
|
14827
14898
|
collection: "collection",
|
|
@@ -17275,6 +17346,7 @@ var createTokenSigner = (options) => {
|
|
|
17275
17346
|
ContrastV1ResponseStatus,
|
|
17276
17347
|
CropV1ResponseKind,
|
|
17277
17348
|
CropV1ResponseStatus,
|
|
17349
|
+
CurrentAccessControllerDtoRelationsItem,
|
|
17278
17350
|
CutV1ResponseKind,
|
|
17279
17351
|
CutV1ResponseStatus,
|
|
17280
17352
|
EchoV1ResponseKind,
|
|
@@ -17538,6 +17610,8 @@ var createTokenSigner = (options) => {
|
|
|
17538
17610
|
SegmentAnythingMaskV1ResponseStatus,
|
|
17539
17611
|
SelfAccountDtoType,
|
|
17540
17612
|
ShareWithEveryoneControllerParamsDtoAccess,
|
|
17613
|
+
ShareWithEveryoneControllerParamsDtoAccessItem,
|
|
17614
|
+
SharedAccessEntryDtoRelationsItem,
|
|
17541
17615
|
SharedResourceDtoType,
|
|
17542
17616
|
StackEntityKind,
|
|
17543
17617
|
StacksControllerListStacksV1OrderBy,
|