@hautechai/sdk 1.8.0 → 1.9.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 CHANGED
@@ -139,7 +139,36 @@ interface AccountEntity {
139
139
  * @memberof AccountEntity
140
140
  */
141
141
  'id': string;
142
+ /**
143
+ *
144
+ * @type {object}
145
+ * @memberof AccountEntity
146
+ */
147
+ 'balance': object;
148
+ /**
149
+ *
150
+ * @type {string}
151
+ * @memberof AccountEntity
152
+ */
153
+ 'createdAt': string;
154
+ /**
155
+ *
156
+ * @type {string}
157
+ * @memberof AccountEntity
158
+ */
159
+ 'alias'?: string;
160
+ /**
161
+ *
162
+ * @type {string}
163
+ * @memberof AccountEntity
164
+ */
165
+ 'type': AccountEntityTypeEnum;
142
166
  }
167
+ declare const AccountEntityTypeEnum: {
168
+ readonly Root: "root";
169
+ readonly User: "user";
170
+ };
171
+ type AccountEntityTypeEnum = typeof AccountEntityTypeEnum[keyof typeof AccountEntityTypeEnum];
143
172
  /**
144
173
  *
145
174
  * @export
@@ -6076,6 +6105,54 @@ declare const SegmentAnythingMaskV1ResponseStatusEnum: {
6076
6105
  readonly Failed: "failed";
6077
6106
  };
6078
6107
  type SegmentAnythingMaskV1ResponseStatusEnum = typeof SegmentAnythingMaskV1ResponseStatusEnum[keyof typeof SegmentAnythingMaskV1ResponseStatusEnum];
6108
+ /**
6109
+ *
6110
+ * @export
6111
+ * @interface SelfAccountDto
6112
+ */
6113
+ interface SelfAccountDto {
6114
+ /**
6115
+ *
6116
+ * @type {string}
6117
+ * @memberof SelfAccountDto
6118
+ */
6119
+ 'id': string;
6120
+ /**
6121
+ *
6122
+ * @type {string}
6123
+ * @memberof SelfAccountDto
6124
+ */
6125
+ 'alias'?: string;
6126
+ /**
6127
+ *
6128
+ * @type {object}
6129
+ * @memberof SelfAccountDto
6130
+ */
6131
+ 'permissions': object;
6132
+ /**
6133
+ *
6134
+ * @type {string}
6135
+ * @memberof SelfAccountDto
6136
+ */
6137
+ 'balance': string;
6138
+ /**
6139
+ *
6140
+ * @type {string}
6141
+ * @memberof SelfAccountDto
6142
+ */
6143
+ 'type': SelfAccountDtoTypeEnum;
6144
+ /**
6145
+ *
6146
+ * @type {string}
6147
+ * @memberof SelfAccountDto
6148
+ */
6149
+ 'createdAt': string;
6150
+ }
6151
+ declare const SelfAccountDtoTypeEnum: {
6152
+ readonly Root: "root";
6153
+ readonly User: "user";
6154
+ };
6155
+ type SelfAccountDtoTypeEnum = typeof SelfAccountDtoTypeEnum[keyof typeof SelfAccountDtoTypeEnum];
6079
6156
  /**
6080
6157
  *
6081
6158
  * @export
@@ -6542,6 +6619,19 @@ declare const TranslateV1ResponseStatusEnum: {
6542
6619
  readonly Failed: "failed";
6543
6620
  };
6544
6621
  type TranslateV1ResponseStatusEnum = typeof TranslateV1ResponseStatusEnum[keyof typeof TranslateV1ResponseStatusEnum];
6622
+ /**
6623
+ *
6624
+ * @export
6625
+ * @interface UpdateAccountParamsDto
6626
+ */
6627
+ interface UpdateAccountParamsDto {
6628
+ /**
6629
+ *
6630
+ * @type {string}
6631
+ * @memberof UpdateAccountParamsDto
6632
+ */
6633
+ 'alias'?: string;
6634
+ }
6545
6635
  /**
6546
6636
  *
6547
6637
  * @export
@@ -7233,6 +7323,14 @@ declare const AccountsApiAxiosParamCreator: (configuration?: Configuration) => {
7233
7323
  * @throws {RequiredError}
7234
7324
  */
7235
7325
  accountsControllerListAccountsV1: (orderBy?: AccountsControllerListAccountsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7326
+ /**
7327
+ *
7328
+ * @param {string} id
7329
+ * @param {UpdateAccountParamsDto} updateAccountParamsDto
7330
+ * @param {*} [options] Override http request option.
7331
+ * @throws {RequiredError}
7332
+ */
7333
+ accountsControllerUpdateAccountV1: (id: string, updateAccountParamsDto: UpdateAccountParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7236
7334
  };
7237
7335
  /**
7238
7336
  * AccountsApi - functional programming interface
@@ -7265,7 +7363,7 @@ declare const AccountsApiFp: (configuration?: Configuration) => {
7265
7363
  * @param {*} [options] Override http request option.
7266
7364
  * @throws {RequiredError}
7267
7365
  */
7268
- accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountEntity>>;
7366
+ accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SelfAccountDto>>;
7269
7367
  /**
7270
7368
  *
7271
7369
  * @param {AccountsControllerListAccountsV1OrderByEnum} [orderBy]
@@ -7275,6 +7373,14 @@ declare const AccountsApiFp: (configuration?: Configuration) => {
7275
7373
  * @throws {RequiredError}
7276
7374
  */
7277
7375
  accountsControllerListAccountsV1(orderBy?: AccountsControllerListAccountsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListAccountsDto>>;
7376
+ /**
7377
+ *
7378
+ * @param {string} id
7379
+ * @param {UpdateAccountParamsDto} updateAccountParamsDto
7380
+ * @param {*} [options] Override http request option.
7381
+ * @throws {RequiredError}
7382
+ */
7383
+ accountsControllerUpdateAccountV1(id: string, updateAccountParamsDto: UpdateAccountParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountEntity>>;
7278
7384
  };
7279
7385
  /**
7280
7386
  * AccountsApi - factory interface
@@ -7307,7 +7413,7 @@ declare const AccountsApiFactory: (configuration?: Configuration, basePath?: str
7307
7413
  * @param {*} [options] Override http request option.
7308
7414
  * @throws {RequiredError}
7309
7415
  */
7310
- accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): AxiosPromise<AccountEntity>;
7416
+ accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): AxiosPromise<SelfAccountDto>;
7311
7417
  /**
7312
7418
  *
7313
7419
  * @param {AccountsControllerListAccountsV1OrderByEnum} [orderBy]
@@ -7317,6 +7423,14 @@ declare const AccountsApiFactory: (configuration?: Configuration, basePath?: str
7317
7423
  * @throws {RequiredError}
7318
7424
  */
7319
7425
  accountsControllerListAccountsV1(orderBy?: AccountsControllerListAccountsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListAccountsDto>;
7426
+ /**
7427
+ *
7428
+ * @param {string} id
7429
+ * @param {UpdateAccountParamsDto} updateAccountParamsDto
7430
+ * @param {*} [options] Override http request option.
7431
+ * @throws {RequiredError}
7432
+ */
7433
+ accountsControllerUpdateAccountV1(id: string, updateAccountParamsDto: UpdateAccountParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<AccountEntity>;
7320
7434
  };
7321
7435
  /**
7322
7436
  * AccountsApi - object-oriented interface
@@ -7355,7 +7469,7 @@ declare class AccountsApi extends BaseAPI {
7355
7469
  * @throws {RequiredError}
7356
7470
  * @memberof AccountsApi
7357
7471
  */
7358
- accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AccountEntity, any>>;
7472
+ accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SelfAccountDto, any>>;
7359
7473
  /**
7360
7474
  *
7361
7475
  * @param {AccountsControllerListAccountsV1OrderByEnum} [orderBy]
@@ -7366,6 +7480,15 @@ declare class AccountsApi extends BaseAPI {
7366
7480
  * @memberof AccountsApi
7367
7481
  */
7368
7482
  accountsControllerListAccountsV1(orderBy?: AccountsControllerListAccountsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListAccountsDto, any>>;
7483
+ /**
7484
+ *
7485
+ * @param {string} id
7486
+ * @param {UpdateAccountParamsDto} updateAccountParamsDto
7487
+ * @param {*} [options] Override http request option.
7488
+ * @throws {RequiredError}
7489
+ * @memberof AccountsApi
7490
+ */
7491
+ accountsControllerUpdateAccountV1(id: string, updateAccountParamsDto: UpdateAccountParamsDto, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AccountEntity, any>>;
7369
7492
  }
7370
7493
  /**
7371
7494
  * @export
@@ -8079,7 +8202,7 @@ declare const CallApiFp: (configuration?: Configuration) => {
8079
8202
  * @param {*} [options] Override http request option.
8080
8203
  * @throws {RequiredError}
8081
8204
  */
8082
- callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountEntity>>;
8205
+ callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SelfAccountDto>>;
8083
8206
  /**
8084
8207
  *
8085
8208
  * @param {CreateCollectionParamsDto} createCollectionParamsDto
@@ -8603,7 +8726,7 @@ declare const CallApiFactory: (configuration?: Configuration, basePath?: string,
8603
8726
  * @param {*} [options] Override http request option.
8604
8727
  * @throws {RequiredError}
8605
8728
  */
8606
- callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): AxiosPromise<AccountEntity>;
8729
+ callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): AxiosPromise<SelfAccountDto>;
8607
8730
  /**
8608
8731
  *
8609
8732
  * @param {CreateCollectionParamsDto} createCollectionParamsDto
@@ -9138,7 +9261,7 @@ declare class CallApi extends BaseAPI {
9138
9261
  * @throws {RequiredError}
9139
9262
  * @memberof CallApi
9140
9263
  */
9141
- callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AccountEntity, any>>;
9264
+ callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SelfAccountDto, any>>;
9142
9265
  /**
9143
9266
  *
9144
9267
  * @param {CreateCollectionParamsDto} createCollectionParamsDto
@@ -12507,10 +12630,14 @@ declare const createSDK: (options: SDKOptions) => {
12507
12630
  create: (props?: {
12508
12631
  alias?: string;
12509
12632
  }) => Promise<AccountEntity>;
12633
+ edit: (props: {
12634
+ id: string;
12635
+ alias?: string;
12636
+ }) => Promise<AccountEntity>;
12510
12637
  get: (props: {
12511
12638
  id: string;
12512
12639
  }) => Promise<AccountEntity | undefined>;
12513
- self: () => Promise<AccountEntity | undefined>;
12640
+ self: () => Promise<SelfAccountDto | undefined>;
12514
12641
  getByAlias: (props: {
12515
12642
  alias: string;
12516
12643
  }) => Promise<AccountEntity | undefined>;
@@ -14179,6 +14306,7 @@ type MethodsPermissions = {
14179
14306
  create: boolean;
14180
14307
  read: boolean;
14181
14308
  list: boolean;
14309
+ update: boolean;
14182
14310
  };
14183
14311
  balances: {
14184
14312
  read: boolean;
@@ -14291,4 +14419,4 @@ declare const createTokenSigner: (options: {
14291
14419
  }) => Promise<string>;
14292
14420
  };
14293
14421
 
14294
- export { AccessApi, AccessApiAxiosParamCreator, AccessApiFactory, AccessApiFp, type AccountEntity, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, AccountsControllerListAccountsV1OrderByEnum, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRoleEnum, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRoleEnum, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddItemsToCollectionControllerParamsDto, type AddItemsToCollectionParamsDto, type AddItemsToStackControllerParamsDto, type AddItemsToStackParamsDto, type AnimateCreatomateV1Input, type AnimateCreatomateV1InputTemplate, type AnimateCreatomateV1Request, type AnimateCreatomateV1Response, AnimateCreatomateV1ResponseKindEnum, AnimateCreatomateV1ResponseStatusEnum, type AnimateKling16ProV1Input, AnimateKling16ProV1InputAspectRatioEnum, AnimateKling16ProV1InputDurationEnum, type AnimateKling16ProV1Request, type AnimateKling16ProV1Response, AnimateKling16ProV1ResponseKindEnum, AnimateKling16ProV1ResponseStatusEnum, type AnimateKling21V1Input, AnimateKling21V1InputDurationEnum, type AnimateKling21V1Request, type AnimateKling21V1Response, AnimateKling21V1ResponseKindEnum, AnimateKling21V1ResponseStatusEnum, type AttachAccessControllerParamsDto, type AttachAccessParamsDto, type BalanceResultDto, BalancesApi, BalancesApiAxiosParamCreator, BalancesApiFactory, BalancesApiFp, CallApi, CallApiAxiosParamCreator, CallApiFactory, CallApiFp, type CollectionEntity, CollectionEntityKindEnum, type CollectionMetadata, CollectionsApi, CollectionsApiAxiosParamCreator, CollectionsApiFactory, CollectionsApiFp, CollectionsControllerListCollectionsV1OrderByEnum, CollectionsControllerListItemsV1KindEnum, CollectionsControllerListItemsV1OrderByEnum, type CompositeElement, CompositeElementBlendEnum, CompositeElementFitEnum, type CompositeV1Input, type CompositeV1Request, type CompositeV1Response, CompositeV1ResponseKindEnum, CompositeV1ResponseStatusEnum, Configuration, type ConfigurationParameters, type ContrastV1Input, type ContrastV1Request, type ContrastV1Response, ContrastV1ResponseKindEnum, ContrastV1ResponseStatusEnum, type CreateAccountParamsDto, type CreateCollectionParamsDto, type CreateImageParamsDto, type CreatePipelineParamsDto, type CreatePipelineTaskDto, type CreateStackParamsDto, type CreateStorageRecordParamsDto, type CreateVideoParamsDto, type CreateWorkflowParamsDto, type CropV1Input, type CropV1Request, type CropV1Response, CropV1ResponseKindEnum, CropV1ResponseStatusEnum, type CutV1Input, type CutV1Request, type CutV1Response, CutV1ResponseKindEnum, CutV1ResponseStatusEnum, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type EchoV1Input, type EchoV1Request, type EchoV1Response, EchoV1ResponseKindEnum, EchoV1ResponseStatusEnum, type EditFluxKontextDevV1Input, type EditFluxKontextDevV1Request, type EditFluxKontextDevV1Response, EditFluxKontextDevV1ResponseKindEnum, EditFluxKontextDevV1ResponseStatusEnum, type GPTV1Input, GPTV1InputModelEnum, type GPTV2AssistantMessageDto, GPTV2AssistantMessageDtoRoleEnum, type GPTV2DeveloperMessageDto, GPTV2DeveloperMessageDtoRoleEnum, type GPTV2Input, type GPTV2InputMessagesInner, GPTV2InputModelEnum, type GPTV2InputResponseFormat, type GPTV2MessageToolCallDto, GPTV2MessageToolCallDtoTypeEnum, type GPTV2ResponseFormatJsonSchemaDetailsDto, type GPTV2ResponseFormatJsonSchemaDto, GPTV2ResponseFormatJsonSchemaDtoTypeEnum, type GPTV2ResponseFormatTextOrObjectDto, GPTV2ResponseFormatTextOrObjectDtoTypeEnum, type GPTV2SystemMessageDto, GPTV2SystemMessageDtoRoleEnum, type GPTV2ToolChoiceDto, GPTV2ToolChoiceDtoTypeEnum, type GPTV2ToolChoiceFunctionDto, type GPTV2ToolDto, GPTV2ToolDtoTypeEnum, type GPTV2ToolFunctionDto, type GPTV2ToolMessageDto, GPTV2ToolMessageDtoRoleEnum, type GPTV2UserMessageDto, GPTV2UserMessageDtoRoleEnum, type GetAccountParamsDto, type GetBalanceParamsDto, type GetCollectionParamsDto, type GetGroupParamsDto, type GetImageParamsDto, type GetImageRepresentationParamsDto, GetImageRepresentationParamsDtoTypeEnum, type GetOperationParamsDto, type GetOperationsParamsDto, type GetPoseParamsDto, type GetStackParamsDto, type GetStorageRecordParamsDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategoryEnum, type GptV1Request, type GptV1Response, GptV1ResponseKindEnum, GptV1ResponseStatusEnum, type GptV2Request, type GptV2Response, GptV2ResponseKindEnum, GptV2ResponseStatusEnum, type GrantAccessControllerParams, GrantAccessControllerParamsPrincipalTypeEnum, type GroupEntity, GroupsApi, GroupsApiAxiosParamCreator, GroupsApiFactory, GroupsApiFp, type HauteLindaV1Request, type HauteLindaV1Response, HauteLindaV1ResponseKindEnum, HauteLindaV1ResponseStatusEnum, type HauteNaomiV1Request, type HauteNaomiV1Response, HauteNaomiV1ResponseKindEnum, HauteNaomiV1ResponseStatusEnum, type ImageEntity, ImageEntityKindEnum, type ImageRepresentationResponseDto, type ImageUrlResponseDto, ImagesApi, ImagesApiAxiosParamCreator, ImagesApiFactory, ImagesApiFp, type ImagineKateV1Request, type ImagineKateV1Response, ImagineKateV1ResponseKindEnum, ImagineKateV1ResponseStatusEnum, type InitializeImageUploadResultDto, type InpaintKateV1Request, type InpaintKateV1Response, InpaintKateV1ResponseKindEnum, InpaintKateV1ResponseStatusEnum, type KateImagineV1Input, KateImagineV1InputAspectRatioEnum, type KateInpaintV1Input, KateInpaintV1InputBranchEnum, type LindaHauteV1Input, LindaHauteV1InputAspectRatioEnum, type ListAccessControllerAttachmentsDto, type ListAccessControllerDto, type ListAccessControllerGrantsDto, ListAccessControllerGrantsDtoAccessEnum, type ListAccountsDto, type ListAccountsDtoPageInfo, type ListAccountsParamsDto, ListAccountsParamsDtoOrderByEnum, type ListCollectionItemsDto, type ListCollectionItemsParamsDto, ListCollectionItemsParamsDtoKindEnum, ListCollectionItemsParamsDtoOrderByEnum, type ListCollectionsDto, type ListCollectionsParamsDto, ListCollectionsParamsDtoOrderByEnum, type ListOperationsDto, type ListOperationsParamsDto, ListOperationsParamsDtoOrderByEnum, type ListPipelinesDto, type ListPipelinesDtoPageInfo, type ListPosesDto, type ListPosesParamsDto, ListPosesParamsDtoOrderByEnum, type ListProps, ListResponse, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderByEnum, type ListWorkflowsDto, type MathV1Input, type MathV1Request, type MathV1Response, MathV1ResponseKindEnum, MathV1ResponseStatusEnum, type MethodsPermissions, type ModifyAccessParamsDto, ModifyAccessParamsDtoPrincipalTypeEnum, type NaomiHauteV1Input, NaomiHauteV1InputModeEnum, type NegateImageV1Input, type NegateImageV1Request, type NegateImageV1Response, NegateImageV1ResponseKindEnum, NegateImageV1ResponseStatusEnum, type NoiseV1Input, type NoiseV1Request, type NoiseV1Response, NoiseV1ResponseKindEnum, NoiseV1ResponseStatusEnum, type ObjectDetectionV1Input, type ObjectDetectionV1Request, type ObjectDetectionV1Response, ObjectDetectionV1ResponseKindEnum, ObjectDetectionV1ResponseStatusEnum, type OneCompilerV1Input, OneCompilerV1InputLanguageEnum, type OnecompilerV1Request, type OnecompilerV1Response, OnecompilerV1ResponseKindEnum, OnecompilerV1ResponseStatusEnum, type OperationEntity, OperationEntityKindEnum, OperationEntityStatusEnum, type OperationMetadata, type OperationOutputImageMultiple, OperationOutputImageMultipleKindEnum, type OperationOutputImageSingle, OperationOutputImageSingleKindEnum, type OperationOutputJSON, OperationOutputJSONKindEnum, type OperationOutputTextSingle, OperationOutputTextSingleKindEnum, type OperationOutputVideoSingle, OperationOutputVideoSingleKindEnum, OperationsApi, OperationsApiAxiosParamCreator, OperationsApiFactory, OperationsApiFp, OperationsControllerListOperationsV1OrderByEnum, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type PipelineDto, PipelineDtoKindEnum, type PipelineDtoStateValue, PipelineDtoStateValueStatusEnum, PipelineDtoStatusEnum, type PipelineMapV1Input, type PipelineMapV1Request, type PipelineMapV1Response, PipelineMapV1ResponseKindEnum, PipelineMapV1ResponseStatusEnum, type PipelineMetadata, type PipelinePreviewDto, PipelinePreviewDtoKindEnum, PipelinePreviewDtoStatusEnum, PipelinesApi, PipelinesApiAxiosParamCreator, PipelinesApiFactory, PipelinesApiFp, PipelinesControllerListPipelinesV1OrderByEnum, type PoseEntity, PoseEntityKindEnum, type PoseEstimationV1Input, type PoseEstimationV1Request, type PoseEstimationV1Response, PoseEstimationV1ResponseKindEnum, PoseEstimationV1ResponseStatusEnum, type PoseMetadata, PosesApi, PosesApiAxiosParamCreator, PosesApiFactory, PosesApiFp, PosesControllerListPosesV1OrderByEnum, type RemoveAccountFromGroupControllerParamsDto, RemoveAccountFromGroupControllerParamsDtoRoleEnum, type RemoveAccountFromGroupParamsDto, RemoveAccountFromGroupParamsDtoRoleEnum, type RemoveItemsFromCollectionControllerParamsDto, type RemoveItemsFromCollectionParamsDto, type RemoveItemsFromStackParamsDto, type ResizeV1Input, type ResizeV1Request, type ResizeV1Response, ResizeV1ResponseKindEnum, ResizeV1ResponseStatusEnum, type ResourceEntity, ResourceEntityKindEnum, type RevokeAccessControllerParamsDto, RevokeAccessControllerParamsDtoPrincipalTypeEnum, type RunWorkflowParamsDto, type RunWorkflowResponseDto, type SDK, type SDKOptions, type SegmentAnythingEmbeddingsV1Input, type SegmentAnythingEmbeddingsV1Request, type SegmentAnythingEmbeddingsV1Response, SegmentAnythingEmbeddingsV1ResponseKindEnum, SegmentAnythingEmbeddingsV1ResponseStatusEnum, type SegmentAnythingMaskV1Input, type SegmentAnythingMaskV1Request, type SegmentAnythingMaskV1Response, SegmentAnythingMaskV1ResponseKindEnum, SegmentAnythingMaskV1ResponseStatusEnum, type SetPosePreviewControllerParamsDto, type SetPosePreviewDto, type StackEntity, type StackEntityItemsInner, StackEntityKindEnum, type StackMetadata, StacksApi, StacksApiAxiosParamCreator, StacksApiFactory, StacksApiFp, StacksControllerListStacksV1OrderByEnum, StorageApi, StorageApiAxiosParamCreator, StorageApiFactory, StorageApiFp, type StorageEntity, StorageEntityKindEnum, type StorageRecordsResultDto, type StringsTemplateV1Input, type StringsTemplateV1Request, type StringsTemplateV1Response, StringsTemplateV1ResponseKindEnum, StringsTemplateV1ResponseStatusEnum, type SupportFile, type TaskDto, type TranslateV1Input, type TranslateV1Request, type TranslateV1Response, TranslateV1ResponseKindEnum, TranslateV1ResponseStatusEnum, type UpdateMetadataDto, type UpdateResourceMetadataDto, type UpdateStorageRecordParamsDto, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1Response, UpscaleV1ResponseKindEnum, UpscaleV1ResponseStatusEnum, type VariableDto, type VideoEntity, VideoEntityKindEnum, type VideoUrlResponseDto, VideosApi, VideosApiAxiosParamCreator, VideosApiFactory, VideosApiFp, type VtonGiseleV1Request, type VtonGiseleV1Response, VtonGiseleV1ResponseKindEnum, VtonGiseleV1ResponseStatusEnum, type WaitOperationParamsDto, WebsocketApi, WebsocketApiAxiosParamCreator, WebsocketApiFactory, WebsocketApiFp, type WorkflowDto, type WorkflowMetadata, WorkflowsApi, WorkflowsApiAxiosParamCreator, WorkflowsApiFactory, WorkflowsApiFp, WorkflowsControllerListWorkflowsV1OrderByEnum, createSDK, createTokenSigner };
14422
+ export { AccessApi, AccessApiAxiosParamCreator, AccessApiFactory, AccessApiFp, type AccountEntity, AccountEntityTypeEnum, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, AccountsControllerListAccountsV1OrderByEnum, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRoleEnum, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRoleEnum, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddItemsToCollectionControllerParamsDto, type AddItemsToCollectionParamsDto, type AddItemsToStackControllerParamsDto, type AddItemsToStackParamsDto, type AnimateCreatomateV1Input, type AnimateCreatomateV1InputTemplate, type AnimateCreatomateV1Request, type AnimateCreatomateV1Response, AnimateCreatomateV1ResponseKindEnum, AnimateCreatomateV1ResponseStatusEnum, type AnimateKling16ProV1Input, AnimateKling16ProV1InputAspectRatioEnum, AnimateKling16ProV1InputDurationEnum, type AnimateKling16ProV1Request, type AnimateKling16ProV1Response, AnimateKling16ProV1ResponseKindEnum, AnimateKling16ProV1ResponseStatusEnum, type AnimateKling21V1Input, AnimateKling21V1InputDurationEnum, type AnimateKling21V1Request, type AnimateKling21V1Response, AnimateKling21V1ResponseKindEnum, AnimateKling21V1ResponseStatusEnum, type AttachAccessControllerParamsDto, type AttachAccessParamsDto, type BalanceResultDto, BalancesApi, BalancesApiAxiosParamCreator, BalancesApiFactory, BalancesApiFp, CallApi, CallApiAxiosParamCreator, CallApiFactory, CallApiFp, type CollectionEntity, CollectionEntityKindEnum, type CollectionMetadata, CollectionsApi, CollectionsApiAxiosParamCreator, CollectionsApiFactory, CollectionsApiFp, CollectionsControllerListCollectionsV1OrderByEnum, CollectionsControllerListItemsV1KindEnum, CollectionsControllerListItemsV1OrderByEnum, type CompositeElement, CompositeElementBlendEnum, CompositeElementFitEnum, type CompositeV1Input, type CompositeV1Request, type CompositeV1Response, CompositeV1ResponseKindEnum, CompositeV1ResponseStatusEnum, Configuration, type ConfigurationParameters, type ContrastV1Input, type ContrastV1Request, type ContrastV1Response, ContrastV1ResponseKindEnum, ContrastV1ResponseStatusEnum, type CreateAccountParamsDto, type CreateCollectionParamsDto, type CreateImageParamsDto, type CreatePipelineParamsDto, type CreatePipelineTaskDto, type CreateStackParamsDto, type CreateStorageRecordParamsDto, type CreateVideoParamsDto, type CreateWorkflowParamsDto, type CropV1Input, type CropV1Request, type CropV1Response, CropV1ResponseKindEnum, CropV1ResponseStatusEnum, type CutV1Input, type CutV1Request, type CutV1Response, CutV1ResponseKindEnum, CutV1ResponseStatusEnum, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type EchoV1Input, type EchoV1Request, type EchoV1Response, EchoV1ResponseKindEnum, EchoV1ResponseStatusEnum, type EditFluxKontextDevV1Input, type EditFluxKontextDevV1Request, type EditFluxKontextDevV1Response, EditFluxKontextDevV1ResponseKindEnum, EditFluxKontextDevV1ResponseStatusEnum, type GPTV1Input, GPTV1InputModelEnum, type GPTV2AssistantMessageDto, GPTV2AssistantMessageDtoRoleEnum, type GPTV2DeveloperMessageDto, GPTV2DeveloperMessageDtoRoleEnum, type GPTV2Input, type GPTV2InputMessagesInner, GPTV2InputModelEnum, type GPTV2InputResponseFormat, type GPTV2MessageToolCallDto, GPTV2MessageToolCallDtoTypeEnum, type GPTV2ResponseFormatJsonSchemaDetailsDto, type GPTV2ResponseFormatJsonSchemaDto, GPTV2ResponseFormatJsonSchemaDtoTypeEnum, type GPTV2ResponseFormatTextOrObjectDto, GPTV2ResponseFormatTextOrObjectDtoTypeEnum, type GPTV2SystemMessageDto, GPTV2SystemMessageDtoRoleEnum, type GPTV2ToolChoiceDto, GPTV2ToolChoiceDtoTypeEnum, type GPTV2ToolChoiceFunctionDto, type GPTV2ToolDto, GPTV2ToolDtoTypeEnum, type GPTV2ToolFunctionDto, type GPTV2ToolMessageDto, GPTV2ToolMessageDtoRoleEnum, type GPTV2UserMessageDto, GPTV2UserMessageDtoRoleEnum, type GetAccountParamsDto, type GetBalanceParamsDto, type GetCollectionParamsDto, type GetGroupParamsDto, type GetImageParamsDto, type GetImageRepresentationParamsDto, GetImageRepresentationParamsDtoTypeEnum, type GetOperationParamsDto, type GetOperationsParamsDto, type GetPoseParamsDto, type GetStackParamsDto, type GetStorageRecordParamsDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategoryEnum, type GptV1Request, type GptV1Response, GptV1ResponseKindEnum, GptV1ResponseStatusEnum, type GptV2Request, type GptV2Response, GptV2ResponseKindEnum, GptV2ResponseStatusEnum, type GrantAccessControllerParams, GrantAccessControllerParamsPrincipalTypeEnum, type GroupEntity, GroupsApi, GroupsApiAxiosParamCreator, GroupsApiFactory, GroupsApiFp, type HauteLindaV1Request, type HauteLindaV1Response, HauteLindaV1ResponseKindEnum, HauteLindaV1ResponseStatusEnum, type HauteNaomiV1Request, type HauteNaomiV1Response, HauteNaomiV1ResponseKindEnum, HauteNaomiV1ResponseStatusEnum, type ImageEntity, ImageEntityKindEnum, type ImageRepresentationResponseDto, type ImageUrlResponseDto, ImagesApi, ImagesApiAxiosParamCreator, ImagesApiFactory, ImagesApiFp, type ImagineKateV1Request, type ImagineKateV1Response, ImagineKateV1ResponseKindEnum, ImagineKateV1ResponseStatusEnum, type InitializeImageUploadResultDto, type InpaintKateV1Request, type InpaintKateV1Response, InpaintKateV1ResponseKindEnum, InpaintKateV1ResponseStatusEnum, type KateImagineV1Input, KateImagineV1InputAspectRatioEnum, type KateInpaintV1Input, KateInpaintV1InputBranchEnum, type LindaHauteV1Input, LindaHauteV1InputAspectRatioEnum, type ListAccessControllerAttachmentsDto, type ListAccessControllerDto, type ListAccessControllerGrantsDto, ListAccessControllerGrantsDtoAccessEnum, type ListAccountsDto, type ListAccountsDtoPageInfo, type ListAccountsParamsDto, ListAccountsParamsDtoOrderByEnum, type ListCollectionItemsDto, type ListCollectionItemsParamsDto, ListCollectionItemsParamsDtoKindEnum, ListCollectionItemsParamsDtoOrderByEnum, type ListCollectionsDto, type ListCollectionsParamsDto, ListCollectionsParamsDtoOrderByEnum, type ListOperationsDto, type ListOperationsParamsDto, ListOperationsParamsDtoOrderByEnum, type ListPipelinesDto, type ListPipelinesDtoPageInfo, type ListPosesDto, type ListPosesParamsDto, ListPosesParamsDtoOrderByEnum, type ListProps, ListResponse, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderByEnum, type ListWorkflowsDto, type MathV1Input, type MathV1Request, type MathV1Response, MathV1ResponseKindEnum, MathV1ResponseStatusEnum, type MethodsPermissions, type ModifyAccessParamsDto, ModifyAccessParamsDtoPrincipalTypeEnum, type NaomiHauteV1Input, NaomiHauteV1InputModeEnum, type NegateImageV1Input, type NegateImageV1Request, type NegateImageV1Response, NegateImageV1ResponseKindEnum, NegateImageV1ResponseStatusEnum, type NoiseV1Input, type NoiseV1Request, type NoiseV1Response, NoiseV1ResponseKindEnum, NoiseV1ResponseStatusEnum, type ObjectDetectionV1Input, type ObjectDetectionV1Request, type ObjectDetectionV1Response, ObjectDetectionV1ResponseKindEnum, ObjectDetectionV1ResponseStatusEnum, type OneCompilerV1Input, OneCompilerV1InputLanguageEnum, type OnecompilerV1Request, type OnecompilerV1Response, OnecompilerV1ResponseKindEnum, OnecompilerV1ResponseStatusEnum, type OperationEntity, OperationEntityKindEnum, OperationEntityStatusEnum, type OperationMetadata, type OperationOutputImageMultiple, OperationOutputImageMultipleKindEnum, type OperationOutputImageSingle, OperationOutputImageSingleKindEnum, type OperationOutputJSON, OperationOutputJSONKindEnum, type OperationOutputTextSingle, OperationOutputTextSingleKindEnum, type OperationOutputVideoSingle, OperationOutputVideoSingleKindEnum, OperationsApi, OperationsApiAxiosParamCreator, OperationsApiFactory, OperationsApiFp, OperationsControllerListOperationsV1OrderByEnum, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type PipelineDto, PipelineDtoKindEnum, type PipelineDtoStateValue, PipelineDtoStateValueStatusEnum, PipelineDtoStatusEnum, type PipelineMapV1Input, type PipelineMapV1Request, type PipelineMapV1Response, PipelineMapV1ResponseKindEnum, PipelineMapV1ResponseStatusEnum, type PipelineMetadata, type PipelinePreviewDto, PipelinePreviewDtoKindEnum, PipelinePreviewDtoStatusEnum, PipelinesApi, PipelinesApiAxiosParamCreator, PipelinesApiFactory, PipelinesApiFp, PipelinesControllerListPipelinesV1OrderByEnum, type PoseEntity, PoseEntityKindEnum, type PoseEstimationV1Input, type PoseEstimationV1Request, type PoseEstimationV1Response, PoseEstimationV1ResponseKindEnum, PoseEstimationV1ResponseStatusEnum, type PoseMetadata, PosesApi, PosesApiAxiosParamCreator, PosesApiFactory, PosesApiFp, PosesControllerListPosesV1OrderByEnum, type RemoveAccountFromGroupControllerParamsDto, RemoveAccountFromGroupControllerParamsDtoRoleEnum, type RemoveAccountFromGroupParamsDto, RemoveAccountFromGroupParamsDtoRoleEnum, type RemoveItemsFromCollectionControllerParamsDto, type RemoveItemsFromCollectionParamsDto, type RemoveItemsFromStackParamsDto, type ResizeV1Input, type ResizeV1Request, type ResizeV1Response, ResizeV1ResponseKindEnum, ResizeV1ResponseStatusEnum, type ResourceEntity, ResourceEntityKindEnum, type RevokeAccessControllerParamsDto, RevokeAccessControllerParamsDtoPrincipalTypeEnum, type RunWorkflowParamsDto, type RunWorkflowResponseDto, type SDK, type SDKOptions, type SegmentAnythingEmbeddingsV1Input, type SegmentAnythingEmbeddingsV1Request, type SegmentAnythingEmbeddingsV1Response, SegmentAnythingEmbeddingsV1ResponseKindEnum, SegmentAnythingEmbeddingsV1ResponseStatusEnum, type SegmentAnythingMaskV1Input, type SegmentAnythingMaskV1Request, type SegmentAnythingMaskV1Response, SegmentAnythingMaskV1ResponseKindEnum, SegmentAnythingMaskV1ResponseStatusEnum, type SelfAccountDto, SelfAccountDtoTypeEnum, type SetPosePreviewControllerParamsDto, type SetPosePreviewDto, type StackEntity, type StackEntityItemsInner, StackEntityKindEnum, type StackMetadata, StacksApi, StacksApiAxiosParamCreator, StacksApiFactory, StacksApiFp, StacksControllerListStacksV1OrderByEnum, StorageApi, StorageApiAxiosParamCreator, StorageApiFactory, StorageApiFp, type StorageEntity, StorageEntityKindEnum, type StorageRecordsResultDto, type StringsTemplateV1Input, type StringsTemplateV1Request, type StringsTemplateV1Response, StringsTemplateV1ResponseKindEnum, StringsTemplateV1ResponseStatusEnum, type SupportFile, type TaskDto, type TranslateV1Input, type TranslateV1Request, type TranslateV1Response, TranslateV1ResponseKindEnum, TranslateV1ResponseStatusEnum, type UpdateAccountParamsDto, type UpdateMetadataDto, type UpdateResourceMetadataDto, type UpdateStorageRecordParamsDto, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1Response, UpscaleV1ResponseKindEnum, UpscaleV1ResponseStatusEnum, type VariableDto, type VideoEntity, VideoEntityKindEnum, type VideoUrlResponseDto, VideosApi, VideosApiAxiosParamCreator, VideosApiFactory, VideosApiFp, type VtonGiseleV1Request, type VtonGiseleV1Response, VtonGiseleV1ResponseKindEnum, VtonGiseleV1ResponseStatusEnum, type WaitOperationParamsDto, WebsocketApi, WebsocketApiAxiosParamCreator, WebsocketApiFactory, WebsocketApiFp, type WorkflowDto, type WorkflowMetadata, WorkflowsApi, WorkflowsApiAxiosParamCreator, WorkflowsApiFactory, WorkflowsApiFp, WorkflowsControllerListWorkflowsV1OrderByEnum, createSDK, createTokenSigner };
package/dist/index.d.ts CHANGED
@@ -139,7 +139,36 @@ interface AccountEntity {
139
139
  * @memberof AccountEntity
140
140
  */
141
141
  'id': string;
142
+ /**
143
+ *
144
+ * @type {object}
145
+ * @memberof AccountEntity
146
+ */
147
+ 'balance': object;
148
+ /**
149
+ *
150
+ * @type {string}
151
+ * @memberof AccountEntity
152
+ */
153
+ 'createdAt': string;
154
+ /**
155
+ *
156
+ * @type {string}
157
+ * @memberof AccountEntity
158
+ */
159
+ 'alias'?: string;
160
+ /**
161
+ *
162
+ * @type {string}
163
+ * @memberof AccountEntity
164
+ */
165
+ 'type': AccountEntityTypeEnum;
142
166
  }
167
+ declare const AccountEntityTypeEnum: {
168
+ readonly Root: "root";
169
+ readonly User: "user";
170
+ };
171
+ type AccountEntityTypeEnum = typeof AccountEntityTypeEnum[keyof typeof AccountEntityTypeEnum];
143
172
  /**
144
173
  *
145
174
  * @export
@@ -6076,6 +6105,54 @@ declare const SegmentAnythingMaskV1ResponseStatusEnum: {
6076
6105
  readonly Failed: "failed";
6077
6106
  };
6078
6107
  type SegmentAnythingMaskV1ResponseStatusEnum = typeof SegmentAnythingMaskV1ResponseStatusEnum[keyof typeof SegmentAnythingMaskV1ResponseStatusEnum];
6108
+ /**
6109
+ *
6110
+ * @export
6111
+ * @interface SelfAccountDto
6112
+ */
6113
+ interface SelfAccountDto {
6114
+ /**
6115
+ *
6116
+ * @type {string}
6117
+ * @memberof SelfAccountDto
6118
+ */
6119
+ 'id': string;
6120
+ /**
6121
+ *
6122
+ * @type {string}
6123
+ * @memberof SelfAccountDto
6124
+ */
6125
+ 'alias'?: string;
6126
+ /**
6127
+ *
6128
+ * @type {object}
6129
+ * @memberof SelfAccountDto
6130
+ */
6131
+ 'permissions': object;
6132
+ /**
6133
+ *
6134
+ * @type {string}
6135
+ * @memberof SelfAccountDto
6136
+ */
6137
+ 'balance': string;
6138
+ /**
6139
+ *
6140
+ * @type {string}
6141
+ * @memberof SelfAccountDto
6142
+ */
6143
+ 'type': SelfAccountDtoTypeEnum;
6144
+ /**
6145
+ *
6146
+ * @type {string}
6147
+ * @memberof SelfAccountDto
6148
+ */
6149
+ 'createdAt': string;
6150
+ }
6151
+ declare const SelfAccountDtoTypeEnum: {
6152
+ readonly Root: "root";
6153
+ readonly User: "user";
6154
+ };
6155
+ type SelfAccountDtoTypeEnum = typeof SelfAccountDtoTypeEnum[keyof typeof SelfAccountDtoTypeEnum];
6079
6156
  /**
6080
6157
  *
6081
6158
  * @export
@@ -6542,6 +6619,19 @@ declare const TranslateV1ResponseStatusEnum: {
6542
6619
  readonly Failed: "failed";
6543
6620
  };
6544
6621
  type TranslateV1ResponseStatusEnum = typeof TranslateV1ResponseStatusEnum[keyof typeof TranslateV1ResponseStatusEnum];
6622
+ /**
6623
+ *
6624
+ * @export
6625
+ * @interface UpdateAccountParamsDto
6626
+ */
6627
+ interface UpdateAccountParamsDto {
6628
+ /**
6629
+ *
6630
+ * @type {string}
6631
+ * @memberof UpdateAccountParamsDto
6632
+ */
6633
+ 'alias'?: string;
6634
+ }
6545
6635
  /**
6546
6636
  *
6547
6637
  * @export
@@ -7233,6 +7323,14 @@ declare const AccountsApiAxiosParamCreator: (configuration?: Configuration) => {
7233
7323
  * @throws {RequiredError}
7234
7324
  */
7235
7325
  accountsControllerListAccountsV1: (orderBy?: AccountsControllerListAccountsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7326
+ /**
7327
+ *
7328
+ * @param {string} id
7329
+ * @param {UpdateAccountParamsDto} updateAccountParamsDto
7330
+ * @param {*} [options] Override http request option.
7331
+ * @throws {RequiredError}
7332
+ */
7333
+ accountsControllerUpdateAccountV1: (id: string, updateAccountParamsDto: UpdateAccountParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7236
7334
  };
7237
7335
  /**
7238
7336
  * AccountsApi - functional programming interface
@@ -7265,7 +7363,7 @@ declare const AccountsApiFp: (configuration?: Configuration) => {
7265
7363
  * @param {*} [options] Override http request option.
7266
7364
  * @throws {RequiredError}
7267
7365
  */
7268
- accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountEntity>>;
7366
+ accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SelfAccountDto>>;
7269
7367
  /**
7270
7368
  *
7271
7369
  * @param {AccountsControllerListAccountsV1OrderByEnum} [orderBy]
@@ -7275,6 +7373,14 @@ declare const AccountsApiFp: (configuration?: Configuration) => {
7275
7373
  * @throws {RequiredError}
7276
7374
  */
7277
7375
  accountsControllerListAccountsV1(orderBy?: AccountsControllerListAccountsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListAccountsDto>>;
7376
+ /**
7377
+ *
7378
+ * @param {string} id
7379
+ * @param {UpdateAccountParamsDto} updateAccountParamsDto
7380
+ * @param {*} [options] Override http request option.
7381
+ * @throws {RequiredError}
7382
+ */
7383
+ accountsControllerUpdateAccountV1(id: string, updateAccountParamsDto: UpdateAccountParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountEntity>>;
7278
7384
  };
7279
7385
  /**
7280
7386
  * AccountsApi - factory interface
@@ -7307,7 +7413,7 @@ declare const AccountsApiFactory: (configuration?: Configuration, basePath?: str
7307
7413
  * @param {*} [options] Override http request option.
7308
7414
  * @throws {RequiredError}
7309
7415
  */
7310
- accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): AxiosPromise<AccountEntity>;
7416
+ accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): AxiosPromise<SelfAccountDto>;
7311
7417
  /**
7312
7418
  *
7313
7419
  * @param {AccountsControllerListAccountsV1OrderByEnum} [orderBy]
@@ -7317,6 +7423,14 @@ declare const AccountsApiFactory: (configuration?: Configuration, basePath?: str
7317
7423
  * @throws {RequiredError}
7318
7424
  */
7319
7425
  accountsControllerListAccountsV1(orderBy?: AccountsControllerListAccountsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListAccountsDto>;
7426
+ /**
7427
+ *
7428
+ * @param {string} id
7429
+ * @param {UpdateAccountParamsDto} updateAccountParamsDto
7430
+ * @param {*} [options] Override http request option.
7431
+ * @throws {RequiredError}
7432
+ */
7433
+ accountsControllerUpdateAccountV1(id: string, updateAccountParamsDto: UpdateAccountParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<AccountEntity>;
7320
7434
  };
7321
7435
  /**
7322
7436
  * AccountsApi - object-oriented interface
@@ -7355,7 +7469,7 @@ declare class AccountsApi extends BaseAPI {
7355
7469
  * @throws {RequiredError}
7356
7470
  * @memberof AccountsApi
7357
7471
  */
7358
- accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AccountEntity, any>>;
7472
+ accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SelfAccountDto, any>>;
7359
7473
  /**
7360
7474
  *
7361
7475
  * @param {AccountsControllerListAccountsV1OrderByEnum} [orderBy]
@@ -7366,6 +7480,15 @@ declare class AccountsApi extends BaseAPI {
7366
7480
  * @memberof AccountsApi
7367
7481
  */
7368
7482
  accountsControllerListAccountsV1(orderBy?: AccountsControllerListAccountsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListAccountsDto, any>>;
7483
+ /**
7484
+ *
7485
+ * @param {string} id
7486
+ * @param {UpdateAccountParamsDto} updateAccountParamsDto
7487
+ * @param {*} [options] Override http request option.
7488
+ * @throws {RequiredError}
7489
+ * @memberof AccountsApi
7490
+ */
7491
+ accountsControllerUpdateAccountV1(id: string, updateAccountParamsDto: UpdateAccountParamsDto, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AccountEntity, any>>;
7369
7492
  }
7370
7493
  /**
7371
7494
  * @export
@@ -8079,7 +8202,7 @@ declare const CallApiFp: (configuration?: Configuration) => {
8079
8202
  * @param {*} [options] Override http request option.
8080
8203
  * @throws {RequiredError}
8081
8204
  */
8082
- callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountEntity>>;
8205
+ callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SelfAccountDto>>;
8083
8206
  /**
8084
8207
  *
8085
8208
  * @param {CreateCollectionParamsDto} createCollectionParamsDto
@@ -8603,7 +8726,7 @@ declare const CallApiFactory: (configuration?: Configuration, basePath?: string,
8603
8726
  * @param {*} [options] Override http request option.
8604
8727
  * @throws {RequiredError}
8605
8728
  */
8606
- callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): AxiosPromise<AccountEntity>;
8729
+ callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): AxiosPromise<SelfAccountDto>;
8607
8730
  /**
8608
8731
  *
8609
8732
  * @param {CreateCollectionParamsDto} createCollectionParamsDto
@@ -9138,7 +9261,7 @@ declare class CallApi extends BaseAPI {
9138
9261
  * @throws {RequiredError}
9139
9262
  * @memberof CallApi
9140
9263
  */
9141
- callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AccountEntity, any>>;
9264
+ callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SelfAccountDto, any>>;
9142
9265
  /**
9143
9266
  *
9144
9267
  * @param {CreateCollectionParamsDto} createCollectionParamsDto
@@ -12507,10 +12630,14 @@ declare const createSDK: (options: SDKOptions) => {
12507
12630
  create: (props?: {
12508
12631
  alias?: string;
12509
12632
  }) => Promise<AccountEntity>;
12633
+ edit: (props: {
12634
+ id: string;
12635
+ alias?: string;
12636
+ }) => Promise<AccountEntity>;
12510
12637
  get: (props: {
12511
12638
  id: string;
12512
12639
  }) => Promise<AccountEntity | undefined>;
12513
- self: () => Promise<AccountEntity | undefined>;
12640
+ self: () => Promise<SelfAccountDto | undefined>;
12514
12641
  getByAlias: (props: {
12515
12642
  alias: string;
12516
12643
  }) => Promise<AccountEntity | undefined>;
@@ -14179,6 +14306,7 @@ type MethodsPermissions = {
14179
14306
  create: boolean;
14180
14307
  read: boolean;
14181
14308
  list: boolean;
14309
+ update: boolean;
14182
14310
  };
14183
14311
  balances: {
14184
14312
  read: boolean;
@@ -14291,4 +14419,4 @@ declare const createTokenSigner: (options: {
14291
14419
  }) => Promise<string>;
14292
14420
  };
14293
14421
 
14294
- export { AccessApi, AccessApiAxiosParamCreator, AccessApiFactory, AccessApiFp, type AccountEntity, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, AccountsControllerListAccountsV1OrderByEnum, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRoleEnum, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRoleEnum, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddItemsToCollectionControllerParamsDto, type AddItemsToCollectionParamsDto, type AddItemsToStackControllerParamsDto, type AddItemsToStackParamsDto, type AnimateCreatomateV1Input, type AnimateCreatomateV1InputTemplate, type AnimateCreatomateV1Request, type AnimateCreatomateV1Response, AnimateCreatomateV1ResponseKindEnum, AnimateCreatomateV1ResponseStatusEnum, type AnimateKling16ProV1Input, AnimateKling16ProV1InputAspectRatioEnum, AnimateKling16ProV1InputDurationEnum, type AnimateKling16ProV1Request, type AnimateKling16ProV1Response, AnimateKling16ProV1ResponseKindEnum, AnimateKling16ProV1ResponseStatusEnum, type AnimateKling21V1Input, AnimateKling21V1InputDurationEnum, type AnimateKling21V1Request, type AnimateKling21V1Response, AnimateKling21V1ResponseKindEnum, AnimateKling21V1ResponseStatusEnum, type AttachAccessControllerParamsDto, type AttachAccessParamsDto, type BalanceResultDto, BalancesApi, BalancesApiAxiosParamCreator, BalancesApiFactory, BalancesApiFp, CallApi, CallApiAxiosParamCreator, CallApiFactory, CallApiFp, type CollectionEntity, CollectionEntityKindEnum, type CollectionMetadata, CollectionsApi, CollectionsApiAxiosParamCreator, CollectionsApiFactory, CollectionsApiFp, CollectionsControllerListCollectionsV1OrderByEnum, CollectionsControllerListItemsV1KindEnum, CollectionsControllerListItemsV1OrderByEnum, type CompositeElement, CompositeElementBlendEnum, CompositeElementFitEnum, type CompositeV1Input, type CompositeV1Request, type CompositeV1Response, CompositeV1ResponseKindEnum, CompositeV1ResponseStatusEnum, Configuration, type ConfigurationParameters, type ContrastV1Input, type ContrastV1Request, type ContrastV1Response, ContrastV1ResponseKindEnum, ContrastV1ResponseStatusEnum, type CreateAccountParamsDto, type CreateCollectionParamsDto, type CreateImageParamsDto, type CreatePipelineParamsDto, type CreatePipelineTaskDto, type CreateStackParamsDto, type CreateStorageRecordParamsDto, type CreateVideoParamsDto, type CreateWorkflowParamsDto, type CropV1Input, type CropV1Request, type CropV1Response, CropV1ResponseKindEnum, CropV1ResponseStatusEnum, type CutV1Input, type CutV1Request, type CutV1Response, CutV1ResponseKindEnum, CutV1ResponseStatusEnum, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type EchoV1Input, type EchoV1Request, type EchoV1Response, EchoV1ResponseKindEnum, EchoV1ResponseStatusEnum, type EditFluxKontextDevV1Input, type EditFluxKontextDevV1Request, type EditFluxKontextDevV1Response, EditFluxKontextDevV1ResponseKindEnum, EditFluxKontextDevV1ResponseStatusEnum, type GPTV1Input, GPTV1InputModelEnum, type GPTV2AssistantMessageDto, GPTV2AssistantMessageDtoRoleEnum, type GPTV2DeveloperMessageDto, GPTV2DeveloperMessageDtoRoleEnum, type GPTV2Input, type GPTV2InputMessagesInner, GPTV2InputModelEnum, type GPTV2InputResponseFormat, type GPTV2MessageToolCallDto, GPTV2MessageToolCallDtoTypeEnum, type GPTV2ResponseFormatJsonSchemaDetailsDto, type GPTV2ResponseFormatJsonSchemaDto, GPTV2ResponseFormatJsonSchemaDtoTypeEnum, type GPTV2ResponseFormatTextOrObjectDto, GPTV2ResponseFormatTextOrObjectDtoTypeEnum, type GPTV2SystemMessageDto, GPTV2SystemMessageDtoRoleEnum, type GPTV2ToolChoiceDto, GPTV2ToolChoiceDtoTypeEnum, type GPTV2ToolChoiceFunctionDto, type GPTV2ToolDto, GPTV2ToolDtoTypeEnum, type GPTV2ToolFunctionDto, type GPTV2ToolMessageDto, GPTV2ToolMessageDtoRoleEnum, type GPTV2UserMessageDto, GPTV2UserMessageDtoRoleEnum, type GetAccountParamsDto, type GetBalanceParamsDto, type GetCollectionParamsDto, type GetGroupParamsDto, type GetImageParamsDto, type GetImageRepresentationParamsDto, GetImageRepresentationParamsDtoTypeEnum, type GetOperationParamsDto, type GetOperationsParamsDto, type GetPoseParamsDto, type GetStackParamsDto, type GetStorageRecordParamsDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategoryEnum, type GptV1Request, type GptV1Response, GptV1ResponseKindEnum, GptV1ResponseStatusEnum, type GptV2Request, type GptV2Response, GptV2ResponseKindEnum, GptV2ResponseStatusEnum, type GrantAccessControllerParams, GrantAccessControllerParamsPrincipalTypeEnum, type GroupEntity, GroupsApi, GroupsApiAxiosParamCreator, GroupsApiFactory, GroupsApiFp, type HauteLindaV1Request, type HauteLindaV1Response, HauteLindaV1ResponseKindEnum, HauteLindaV1ResponseStatusEnum, type HauteNaomiV1Request, type HauteNaomiV1Response, HauteNaomiV1ResponseKindEnum, HauteNaomiV1ResponseStatusEnum, type ImageEntity, ImageEntityKindEnum, type ImageRepresentationResponseDto, type ImageUrlResponseDto, ImagesApi, ImagesApiAxiosParamCreator, ImagesApiFactory, ImagesApiFp, type ImagineKateV1Request, type ImagineKateV1Response, ImagineKateV1ResponseKindEnum, ImagineKateV1ResponseStatusEnum, type InitializeImageUploadResultDto, type InpaintKateV1Request, type InpaintKateV1Response, InpaintKateV1ResponseKindEnum, InpaintKateV1ResponseStatusEnum, type KateImagineV1Input, KateImagineV1InputAspectRatioEnum, type KateInpaintV1Input, KateInpaintV1InputBranchEnum, type LindaHauteV1Input, LindaHauteV1InputAspectRatioEnum, type ListAccessControllerAttachmentsDto, type ListAccessControllerDto, type ListAccessControllerGrantsDto, ListAccessControllerGrantsDtoAccessEnum, type ListAccountsDto, type ListAccountsDtoPageInfo, type ListAccountsParamsDto, ListAccountsParamsDtoOrderByEnum, type ListCollectionItemsDto, type ListCollectionItemsParamsDto, ListCollectionItemsParamsDtoKindEnum, ListCollectionItemsParamsDtoOrderByEnum, type ListCollectionsDto, type ListCollectionsParamsDto, ListCollectionsParamsDtoOrderByEnum, type ListOperationsDto, type ListOperationsParamsDto, ListOperationsParamsDtoOrderByEnum, type ListPipelinesDto, type ListPipelinesDtoPageInfo, type ListPosesDto, type ListPosesParamsDto, ListPosesParamsDtoOrderByEnum, type ListProps, ListResponse, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderByEnum, type ListWorkflowsDto, type MathV1Input, type MathV1Request, type MathV1Response, MathV1ResponseKindEnum, MathV1ResponseStatusEnum, type MethodsPermissions, type ModifyAccessParamsDto, ModifyAccessParamsDtoPrincipalTypeEnum, type NaomiHauteV1Input, NaomiHauteV1InputModeEnum, type NegateImageV1Input, type NegateImageV1Request, type NegateImageV1Response, NegateImageV1ResponseKindEnum, NegateImageV1ResponseStatusEnum, type NoiseV1Input, type NoiseV1Request, type NoiseV1Response, NoiseV1ResponseKindEnum, NoiseV1ResponseStatusEnum, type ObjectDetectionV1Input, type ObjectDetectionV1Request, type ObjectDetectionV1Response, ObjectDetectionV1ResponseKindEnum, ObjectDetectionV1ResponseStatusEnum, type OneCompilerV1Input, OneCompilerV1InputLanguageEnum, type OnecompilerV1Request, type OnecompilerV1Response, OnecompilerV1ResponseKindEnum, OnecompilerV1ResponseStatusEnum, type OperationEntity, OperationEntityKindEnum, OperationEntityStatusEnum, type OperationMetadata, type OperationOutputImageMultiple, OperationOutputImageMultipleKindEnum, type OperationOutputImageSingle, OperationOutputImageSingleKindEnum, type OperationOutputJSON, OperationOutputJSONKindEnum, type OperationOutputTextSingle, OperationOutputTextSingleKindEnum, type OperationOutputVideoSingle, OperationOutputVideoSingleKindEnum, OperationsApi, OperationsApiAxiosParamCreator, OperationsApiFactory, OperationsApiFp, OperationsControllerListOperationsV1OrderByEnum, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type PipelineDto, PipelineDtoKindEnum, type PipelineDtoStateValue, PipelineDtoStateValueStatusEnum, PipelineDtoStatusEnum, type PipelineMapV1Input, type PipelineMapV1Request, type PipelineMapV1Response, PipelineMapV1ResponseKindEnum, PipelineMapV1ResponseStatusEnum, type PipelineMetadata, type PipelinePreviewDto, PipelinePreviewDtoKindEnum, PipelinePreviewDtoStatusEnum, PipelinesApi, PipelinesApiAxiosParamCreator, PipelinesApiFactory, PipelinesApiFp, PipelinesControllerListPipelinesV1OrderByEnum, type PoseEntity, PoseEntityKindEnum, type PoseEstimationV1Input, type PoseEstimationV1Request, type PoseEstimationV1Response, PoseEstimationV1ResponseKindEnum, PoseEstimationV1ResponseStatusEnum, type PoseMetadata, PosesApi, PosesApiAxiosParamCreator, PosesApiFactory, PosesApiFp, PosesControllerListPosesV1OrderByEnum, type RemoveAccountFromGroupControllerParamsDto, RemoveAccountFromGroupControllerParamsDtoRoleEnum, type RemoveAccountFromGroupParamsDto, RemoveAccountFromGroupParamsDtoRoleEnum, type RemoveItemsFromCollectionControllerParamsDto, type RemoveItemsFromCollectionParamsDto, type RemoveItemsFromStackParamsDto, type ResizeV1Input, type ResizeV1Request, type ResizeV1Response, ResizeV1ResponseKindEnum, ResizeV1ResponseStatusEnum, type ResourceEntity, ResourceEntityKindEnum, type RevokeAccessControllerParamsDto, RevokeAccessControllerParamsDtoPrincipalTypeEnum, type RunWorkflowParamsDto, type RunWorkflowResponseDto, type SDK, type SDKOptions, type SegmentAnythingEmbeddingsV1Input, type SegmentAnythingEmbeddingsV1Request, type SegmentAnythingEmbeddingsV1Response, SegmentAnythingEmbeddingsV1ResponseKindEnum, SegmentAnythingEmbeddingsV1ResponseStatusEnum, type SegmentAnythingMaskV1Input, type SegmentAnythingMaskV1Request, type SegmentAnythingMaskV1Response, SegmentAnythingMaskV1ResponseKindEnum, SegmentAnythingMaskV1ResponseStatusEnum, type SetPosePreviewControllerParamsDto, type SetPosePreviewDto, type StackEntity, type StackEntityItemsInner, StackEntityKindEnum, type StackMetadata, StacksApi, StacksApiAxiosParamCreator, StacksApiFactory, StacksApiFp, StacksControllerListStacksV1OrderByEnum, StorageApi, StorageApiAxiosParamCreator, StorageApiFactory, StorageApiFp, type StorageEntity, StorageEntityKindEnum, type StorageRecordsResultDto, type StringsTemplateV1Input, type StringsTemplateV1Request, type StringsTemplateV1Response, StringsTemplateV1ResponseKindEnum, StringsTemplateV1ResponseStatusEnum, type SupportFile, type TaskDto, type TranslateV1Input, type TranslateV1Request, type TranslateV1Response, TranslateV1ResponseKindEnum, TranslateV1ResponseStatusEnum, type UpdateMetadataDto, type UpdateResourceMetadataDto, type UpdateStorageRecordParamsDto, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1Response, UpscaleV1ResponseKindEnum, UpscaleV1ResponseStatusEnum, type VariableDto, type VideoEntity, VideoEntityKindEnum, type VideoUrlResponseDto, VideosApi, VideosApiAxiosParamCreator, VideosApiFactory, VideosApiFp, type VtonGiseleV1Request, type VtonGiseleV1Response, VtonGiseleV1ResponseKindEnum, VtonGiseleV1ResponseStatusEnum, type WaitOperationParamsDto, WebsocketApi, WebsocketApiAxiosParamCreator, WebsocketApiFactory, WebsocketApiFp, type WorkflowDto, type WorkflowMetadata, WorkflowsApi, WorkflowsApiAxiosParamCreator, WorkflowsApiFactory, WorkflowsApiFp, WorkflowsControllerListWorkflowsV1OrderByEnum, createSDK, createTokenSigner };
14422
+ export { AccessApi, AccessApiAxiosParamCreator, AccessApiFactory, AccessApiFp, type AccountEntity, AccountEntityTypeEnum, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, AccountsControllerListAccountsV1OrderByEnum, type AddAccountToGroupControllerParamsDto, AddAccountToGroupControllerParamsDtoRoleEnum, type AddAccountToGroupParamsDto, AddAccountToGroupParamsDtoRoleEnum, type AddBalanceControllerParamsDto, type AddBalanceParamsDto, type AddItemsToCollectionControllerParamsDto, type AddItemsToCollectionParamsDto, type AddItemsToStackControllerParamsDto, type AddItemsToStackParamsDto, type AnimateCreatomateV1Input, type AnimateCreatomateV1InputTemplate, type AnimateCreatomateV1Request, type AnimateCreatomateV1Response, AnimateCreatomateV1ResponseKindEnum, AnimateCreatomateV1ResponseStatusEnum, type AnimateKling16ProV1Input, AnimateKling16ProV1InputAspectRatioEnum, AnimateKling16ProV1InputDurationEnum, type AnimateKling16ProV1Request, type AnimateKling16ProV1Response, AnimateKling16ProV1ResponseKindEnum, AnimateKling16ProV1ResponseStatusEnum, type AnimateKling21V1Input, AnimateKling21V1InputDurationEnum, type AnimateKling21V1Request, type AnimateKling21V1Response, AnimateKling21V1ResponseKindEnum, AnimateKling21V1ResponseStatusEnum, type AttachAccessControllerParamsDto, type AttachAccessParamsDto, type BalanceResultDto, BalancesApi, BalancesApiAxiosParamCreator, BalancesApiFactory, BalancesApiFp, CallApi, CallApiAxiosParamCreator, CallApiFactory, CallApiFp, type CollectionEntity, CollectionEntityKindEnum, type CollectionMetadata, CollectionsApi, CollectionsApiAxiosParamCreator, CollectionsApiFactory, CollectionsApiFp, CollectionsControllerListCollectionsV1OrderByEnum, CollectionsControllerListItemsV1KindEnum, CollectionsControllerListItemsV1OrderByEnum, type CompositeElement, CompositeElementBlendEnum, CompositeElementFitEnum, type CompositeV1Input, type CompositeV1Request, type CompositeV1Response, CompositeV1ResponseKindEnum, CompositeV1ResponseStatusEnum, Configuration, type ConfigurationParameters, type ContrastV1Input, type ContrastV1Request, type ContrastV1Response, ContrastV1ResponseKindEnum, ContrastV1ResponseStatusEnum, type CreateAccountParamsDto, type CreateCollectionParamsDto, type CreateImageParamsDto, type CreatePipelineParamsDto, type CreatePipelineTaskDto, type CreateStackParamsDto, type CreateStorageRecordParamsDto, type CreateVideoParamsDto, type CreateWorkflowParamsDto, type CropV1Input, type CropV1Request, type CropV1Response, CropV1ResponseKindEnum, CropV1ResponseStatusEnum, type CutV1Input, type CutV1Request, type CutV1Response, CutV1ResponseKindEnum, CutV1ResponseStatusEnum, type DeleteParamsDto, type DeleteStorageParamsDto, type DetachAccessControllerParamsDto, type EchoV1Input, type EchoV1Request, type EchoV1Response, EchoV1ResponseKindEnum, EchoV1ResponseStatusEnum, type EditFluxKontextDevV1Input, type EditFluxKontextDevV1Request, type EditFluxKontextDevV1Response, EditFluxKontextDevV1ResponseKindEnum, EditFluxKontextDevV1ResponseStatusEnum, type GPTV1Input, GPTV1InputModelEnum, type GPTV2AssistantMessageDto, GPTV2AssistantMessageDtoRoleEnum, type GPTV2DeveloperMessageDto, GPTV2DeveloperMessageDtoRoleEnum, type GPTV2Input, type GPTV2InputMessagesInner, GPTV2InputModelEnum, type GPTV2InputResponseFormat, type GPTV2MessageToolCallDto, GPTV2MessageToolCallDtoTypeEnum, type GPTV2ResponseFormatJsonSchemaDetailsDto, type GPTV2ResponseFormatJsonSchemaDto, GPTV2ResponseFormatJsonSchemaDtoTypeEnum, type GPTV2ResponseFormatTextOrObjectDto, GPTV2ResponseFormatTextOrObjectDtoTypeEnum, type GPTV2SystemMessageDto, GPTV2SystemMessageDtoRoleEnum, type GPTV2ToolChoiceDto, GPTV2ToolChoiceDtoTypeEnum, type GPTV2ToolChoiceFunctionDto, type GPTV2ToolDto, GPTV2ToolDtoTypeEnum, type GPTV2ToolFunctionDto, type GPTV2ToolMessageDto, GPTV2ToolMessageDtoRoleEnum, type GPTV2UserMessageDto, GPTV2UserMessageDtoRoleEnum, type GetAccountParamsDto, type GetBalanceParamsDto, type GetCollectionParamsDto, type GetGroupParamsDto, type GetImageParamsDto, type GetImageRepresentationParamsDto, GetImageRepresentationParamsDtoTypeEnum, type GetOperationParamsDto, type GetOperationsParamsDto, type GetPoseParamsDto, type GetStackParamsDto, type GetStorageRecordParamsDto, type GetUrlsForImagesParamsDto, type GetVideoParamsDto, type GetVideosParamsDto, type GiseleVtonV1Input, GiseleVtonV1InputCategoryEnum, type GptV1Request, type GptV1Response, GptV1ResponseKindEnum, GptV1ResponseStatusEnum, type GptV2Request, type GptV2Response, GptV2ResponseKindEnum, GptV2ResponseStatusEnum, type GrantAccessControllerParams, GrantAccessControllerParamsPrincipalTypeEnum, type GroupEntity, GroupsApi, GroupsApiAxiosParamCreator, GroupsApiFactory, GroupsApiFp, type HauteLindaV1Request, type HauteLindaV1Response, HauteLindaV1ResponseKindEnum, HauteLindaV1ResponseStatusEnum, type HauteNaomiV1Request, type HauteNaomiV1Response, HauteNaomiV1ResponseKindEnum, HauteNaomiV1ResponseStatusEnum, type ImageEntity, ImageEntityKindEnum, type ImageRepresentationResponseDto, type ImageUrlResponseDto, ImagesApi, ImagesApiAxiosParamCreator, ImagesApiFactory, ImagesApiFp, type ImagineKateV1Request, type ImagineKateV1Response, ImagineKateV1ResponseKindEnum, ImagineKateV1ResponseStatusEnum, type InitializeImageUploadResultDto, type InpaintKateV1Request, type InpaintKateV1Response, InpaintKateV1ResponseKindEnum, InpaintKateV1ResponseStatusEnum, type KateImagineV1Input, KateImagineV1InputAspectRatioEnum, type KateInpaintV1Input, KateInpaintV1InputBranchEnum, type LindaHauteV1Input, LindaHauteV1InputAspectRatioEnum, type ListAccessControllerAttachmentsDto, type ListAccessControllerDto, type ListAccessControllerGrantsDto, ListAccessControllerGrantsDtoAccessEnum, type ListAccountsDto, type ListAccountsDtoPageInfo, type ListAccountsParamsDto, ListAccountsParamsDtoOrderByEnum, type ListCollectionItemsDto, type ListCollectionItemsParamsDto, ListCollectionItemsParamsDtoKindEnum, ListCollectionItemsParamsDtoOrderByEnum, type ListCollectionsDto, type ListCollectionsParamsDto, ListCollectionsParamsDtoOrderByEnum, type ListOperationsDto, type ListOperationsParamsDto, ListOperationsParamsDtoOrderByEnum, type ListPipelinesDto, type ListPipelinesDtoPageInfo, type ListPosesDto, type ListPosesParamsDto, ListPosesParamsDtoOrderByEnum, type ListProps, ListResponse, type ListStacksDto, type ListStacksParamsDto, ListStacksParamsDtoOrderByEnum, type ListWorkflowsDto, type MathV1Input, type MathV1Request, type MathV1Response, MathV1ResponseKindEnum, MathV1ResponseStatusEnum, type MethodsPermissions, type ModifyAccessParamsDto, ModifyAccessParamsDtoPrincipalTypeEnum, type NaomiHauteV1Input, NaomiHauteV1InputModeEnum, type NegateImageV1Input, type NegateImageV1Request, type NegateImageV1Response, NegateImageV1ResponseKindEnum, NegateImageV1ResponseStatusEnum, type NoiseV1Input, type NoiseV1Request, type NoiseV1Response, NoiseV1ResponseKindEnum, NoiseV1ResponseStatusEnum, type ObjectDetectionV1Input, type ObjectDetectionV1Request, type ObjectDetectionV1Response, ObjectDetectionV1ResponseKindEnum, ObjectDetectionV1ResponseStatusEnum, type OneCompilerV1Input, OneCompilerV1InputLanguageEnum, type OnecompilerV1Request, type OnecompilerV1Response, OnecompilerV1ResponseKindEnum, OnecompilerV1ResponseStatusEnum, type OperationEntity, OperationEntityKindEnum, OperationEntityStatusEnum, type OperationMetadata, type OperationOutputImageMultiple, OperationOutputImageMultipleKindEnum, type OperationOutputImageSingle, OperationOutputImageSingleKindEnum, type OperationOutputJSON, OperationOutputJSONKindEnum, type OperationOutputTextSingle, OperationOutputTextSingleKindEnum, type OperationOutputVideoSingle, OperationOutputVideoSingleKindEnum, OperationsApi, OperationsApiAxiosParamCreator, OperationsApiFactory, OperationsApiFp, OperationsControllerListOperationsV1OrderByEnum, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type PipelineDto, PipelineDtoKindEnum, type PipelineDtoStateValue, PipelineDtoStateValueStatusEnum, PipelineDtoStatusEnum, type PipelineMapV1Input, type PipelineMapV1Request, type PipelineMapV1Response, PipelineMapV1ResponseKindEnum, PipelineMapV1ResponseStatusEnum, type PipelineMetadata, type PipelinePreviewDto, PipelinePreviewDtoKindEnum, PipelinePreviewDtoStatusEnum, PipelinesApi, PipelinesApiAxiosParamCreator, PipelinesApiFactory, PipelinesApiFp, PipelinesControllerListPipelinesV1OrderByEnum, type PoseEntity, PoseEntityKindEnum, type PoseEstimationV1Input, type PoseEstimationV1Request, type PoseEstimationV1Response, PoseEstimationV1ResponseKindEnum, PoseEstimationV1ResponseStatusEnum, type PoseMetadata, PosesApi, PosesApiAxiosParamCreator, PosesApiFactory, PosesApiFp, PosesControllerListPosesV1OrderByEnum, type RemoveAccountFromGroupControllerParamsDto, RemoveAccountFromGroupControllerParamsDtoRoleEnum, type RemoveAccountFromGroupParamsDto, RemoveAccountFromGroupParamsDtoRoleEnum, type RemoveItemsFromCollectionControllerParamsDto, type RemoveItemsFromCollectionParamsDto, type RemoveItemsFromStackParamsDto, type ResizeV1Input, type ResizeV1Request, type ResizeV1Response, ResizeV1ResponseKindEnum, ResizeV1ResponseStatusEnum, type ResourceEntity, ResourceEntityKindEnum, type RevokeAccessControllerParamsDto, RevokeAccessControllerParamsDtoPrincipalTypeEnum, type RunWorkflowParamsDto, type RunWorkflowResponseDto, type SDK, type SDKOptions, type SegmentAnythingEmbeddingsV1Input, type SegmentAnythingEmbeddingsV1Request, type SegmentAnythingEmbeddingsV1Response, SegmentAnythingEmbeddingsV1ResponseKindEnum, SegmentAnythingEmbeddingsV1ResponseStatusEnum, type SegmentAnythingMaskV1Input, type SegmentAnythingMaskV1Request, type SegmentAnythingMaskV1Response, SegmentAnythingMaskV1ResponseKindEnum, SegmentAnythingMaskV1ResponseStatusEnum, type SelfAccountDto, SelfAccountDtoTypeEnum, type SetPosePreviewControllerParamsDto, type SetPosePreviewDto, type StackEntity, type StackEntityItemsInner, StackEntityKindEnum, type StackMetadata, StacksApi, StacksApiAxiosParamCreator, StacksApiFactory, StacksApiFp, StacksControllerListStacksV1OrderByEnum, StorageApi, StorageApiAxiosParamCreator, StorageApiFactory, StorageApiFp, type StorageEntity, StorageEntityKindEnum, type StorageRecordsResultDto, type StringsTemplateV1Input, type StringsTemplateV1Request, type StringsTemplateV1Response, StringsTemplateV1ResponseKindEnum, StringsTemplateV1ResponseStatusEnum, type SupportFile, type TaskDto, type TranslateV1Input, type TranslateV1Request, type TranslateV1Response, TranslateV1ResponseKindEnum, TranslateV1ResponseStatusEnum, type UpdateAccountParamsDto, type UpdateMetadataDto, type UpdateResourceMetadataDto, type UpdateStorageRecordParamsDto, type UpscaleV1Input, type UpscaleV1Request, type UpscaleV1Response, UpscaleV1ResponseKindEnum, UpscaleV1ResponseStatusEnum, type VariableDto, type VideoEntity, VideoEntityKindEnum, type VideoUrlResponseDto, VideosApi, VideosApiAxiosParamCreator, VideosApiFactory, VideosApiFp, type VtonGiseleV1Request, type VtonGiseleV1Response, VtonGiseleV1ResponseKindEnum, VtonGiseleV1ResponseStatusEnum, type WaitOperationParamsDto, WebsocketApi, WebsocketApiAxiosParamCreator, WebsocketApiFactory, WebsocketApiFp, type WorkflowDto, type WorkflowMetadata, WorkflowsApi, WorkflowsApiAxiosParamCreator, WorkflowsApiFactory, WorkflowsApiFp, WorkflowsControllerListWorkflowsV1OrderByEnum, createSDK, createTokenSigner };