@hautechai/sdk 1.7.1 → 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
@@ -4020,41 +4049,10 @@ interface ListWorkflowsDto {
4020
4049
  'data': Array<WorkflowDto>;
4021
4050
  /**
4022
4051
  *
4023
- * @type {ListWorkflowsDtoPageInfo}
4052
+ * @type {ListPipelinesDtoPageInfo}
4024
4053
  * @memberof ListWorkflowsDto
4025
4054
  */
4026
- 'pageInfo': ListWorkflowsDtoPageInfo;
4027
- }
4028
- /**
4029
- *
4030
- * @export
4031
- * @interface ListWorkflowsDtoPageInfo
4032
- */
4033
- interface ListWorkflowsDtoPageInfo {
4034
- /**
4035
- *
4036
- * @type {number}
4037
- * @memberof ListWorkflowsDtoPageInfo
4038
- */
4039
- 'total': number;
4040
- /**
4041
- *
4042
- * @type {number}
4043
- * @memberof ListWorkflowsDtoPageInfo
4044
- */
4045
- 'limit': number;
4046
- /**
4047
- *
4048
- * @type {number}
4049
- * @memberof ListWorkflowsDtoPageInfo
4050
- */
4051
- 'offset': number;
4052
- /**
4053
- *
4054
- * @type {boolean}
4055
- * @memberof ListWorkflowsDtoPageInfo
4056
- */
4057
- 'hasMore': boolean;
4055
+ 'pageInfo': ListPipelinesDtoPageInfo;
4058
4056
  }
4059
4057
  /**
4060
4058
  *
@@ -6107,6 +6105,54 @@ declare const SegmentAnythingMaskV1ResponseStatusEnum: {
6107
6105
  readonly Failed: "failed";
6108
6106
  };
6109
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];
6110
6156
  /**
6111
6157
  *
6112
6158
  * @export
@@ -6573,6 +6619,19 @@ declare const TranslateV1ResponseStatusEnum: {
6573
6619
  readonly Failed: "failed";
6574
6620
  };
6575
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
+ }
6576
6635
  /**
6577
6636
  *
6578
6637
  * @export
@@ -7264,6 +7323,14 @@ declare const AccountsApiAxiosParamCreator: (configuration?: Configuration) => {
7264
7323
  * @throws {RequiredError}
7265
7324
  */
7266
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>;
7267
7334
  };
7268
7335
  /**
7269
7336
  * AccountsApi - functional programming interface
@@ -7296,7 +7363,7 @@ declare const AccountsApiFp: (configuration?: Configuration) => {
7296
7363
  * @param {*} [options] Override http request option.
7297
7364
  * @throws {RequiredError}
7298
7365
  */
7299
- accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountEntity>>;
7366
+ accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SelfAccountDto>>;
7300
7367
  /**
7301
7368
  *
7302
7369
  * @param {AccountsControllerListAccountsV1OrderByEnum} [orderBy]
@@ -7306,6 +7373,14 @@ declare const AccountsApiFp: (configuration?: Configuration) => {
7306
7373
  * @throws {RequiredError}
7307
7374
  */
7308
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>>;
7309
7384
  };
7310
7385
  /**
7311
7386
  * AccountsApi - factory interface
@@ -7338,7 +7413,7 @@ declare const AccountsApiFactory: (configuration?: Configuration, basePath?: str
7338
7413
  * @param {*} [options] Override http request option.
7339
7414
  * @throws {RequiredError}
7340
7415
  */
7341
- accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): AxiosPromise<AccountEntity>;
7416
+ accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): AxiosPromise<SelfAccountDto>;
7342
7417
  /**
7343
7418
  *
7344
7419
  * @param {AccountsControllerListAccountsV1OrderByEnum} [orderBy]
@@ -7348,6 +7423,14 @@ declare const AccountsApiFactory: (configuration?: Configuration, basePath?: str
7348
7423
  * @throws {RequiredError}
7349
7424
  */
7350
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>;
7351
7434
  };
7352
7435
  /**
7353
7436
  * AccountsApi - object-oriented interface
@@ -7386,7 +7469,7 @@ declare class AccountsApi extends BaseAPI {
7386
7469
  * @throws {RequiredError}
7387
7470
  * @memberof AccountsApi
7388
7471
  */
7389
- accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AccountEntity, any>>;
7472
+ accountsControllerGetSelfV1(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SelfAccountDto, any>>;
7390
7473
  /**
7391
7474
  *
7392
7475
  * @param {AccountsControllerListAccountsV1OrderByEnum} [orderBy]
@@ -7397,6 +7480,15 @@ declare class AccountsApi extends BaseAPI {
7397
7480
  * @memberof AccountsApi
7398
7481
  */
7399
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>>;
7400
7492
  }
7401
7493
  /**
7402
7494
  * @export
@@ -8110,7 +8202,7 @@ declare const CallApiFp: (configuration?: Configuration) => {
8110
8202
  * @param {*} [options] Override http request option.
8111
8203
  * @throws {RequiredError}
8112
8204
  */
8113
- 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>>;
8114
8206
  /**
8115
8207
  *
8116
8208
  * @param {CreateCollectionParamsDto} createCollectionParamsDto
@@ -8634,7 +8726,7 @@ declare const CallApiFactory: (configuration?: Configuration, basePath?: string,
8634
8726
  * @param {*} [options] Override http request option.
8635
8727
  * @throws {RequiredError}
8636
8728
  */
8637
- callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): AxiosPromise<AccountEntity>;
8729
+ callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): AxiosPromise<SelfAccountDto>;
8638
8730
  /**
8639
8731
  *
8640
8732
  * @param {CreateCollectionParamsDto} createCollectionParamsDto
@@ -9169,7 +9261,7 @@ declare class CallApi extends BaseAPI {
9169
9261
  * @throws {RequiredError}
9170
9262
  * @memberof CallApi
9171
9263
  */
9172
- callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<AccountEntity, any>>;
9264
+ callControllerCallAccountsSelfV1(body: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<SelfAccountDto, any>>;
9173
9265
  /**
9174
9266
  *
9175
9267
  * @param {CreateCollectionParamsDto} createCollectionParamsDto
@@ -12306,12 +12398,13 @@ declare const WorkflowsApiAxiosParamCreator: (configuration?: Configuration) =>
12306
12398
  workflowsControllerGetWorkflowV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12307
12399
  /**
12308
12400
  *
12401
+ * @param {WorkflowsControllerListWorkflowsV1OrderByEnum} [orderBy]
12309
12402
  * @param {number} [limit]
12310
- * @param {number} [offset]
12403
+ * @param {string} [cursor]
12311
12404
  * @param {*} [options] Override http request option.
12312
12405
  * @throws {RequiredError}
12313
12406
  */
12314
- workflowsControllerListWorkflowsV1: (limit?: number, offset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12407
+ workflowsControllerListWorkflowsV1: (orderBy?: WorkflowsControllerListWorkflowsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12315
12408
  /**
12316
12409
  *
12317
12410
  * @param {string} workflowId
@@ -12356,12 +12449,13 @@ declare const WorkflowsApiFp: (configuration?: Configuration) => {
12356
12449
  workflowsControllerGetWorkflowV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkflowDto>>;
12357
12450
  /**
12358
12451
  *
12452
+ * @param {WorkflowsControllerListWorkflowsV1OrderByEnum} [orderBy]
12359
12453
  * @param {number} [limit]
12360
- * @param {number} [offset]
12454
+ * @param {string} [cursor]
12361
12455
  * @param {*} [options] Override http request option.
12362
12456
  * @throws {RequiredError}
12363
12457
  */
12364
- workflowsControllerListWorkflowsV1(limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListWorkflowsDto>>;
12458
+ workflowsControllerListWorkflowsV1(orderBy?: WorkflowsControllerListWorkflowsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListWorkflowsDto>>;
12365
12459
  /**
12366
12460
  *
12367
12461
  * @param {string} workflowId
@@ -12406,12 +12500,13 @@ declare const WorkflowsApiFactory: (configuration?: Configuration, basePath?: st
12406
12500
  workflowsControllerGetWorkflowV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<WorkflowDto>;
12407
12501
  /**
12408
12502
  *
12503
+ * @param {WorkflowsControllerListWorkflowsV1OrderByEnum} [orderBy]
12409
12504
  * @param {number} [limit]
12410
- * @param {number} [offset]
12505
+ * @param {string} [cursor]
12411
12506
  * @param {*} [options] Override http request option.
12412
12507
  * @throws {RequiredError}
12413
12508
  */
12414
- workflowsControllerListWorkflowsV1(limit?: number, offset?: number, options?: RawAxiosRequestConfig): AxiosPromise<ListWorkflowsDto>;
12509
+ workflowsControllerListWorkflowsV1(orderBy?: WorkflowsControllerListWorkflowsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListWorkflowsDto>;
12415
12510
  /**
12416
12511
  *
12417
12512
  * @param {string} workflowId
@@ -12461,13 +12556,14 @@ declare class WorkflowsApi extends BaseAPI {
12461
12556
  workflowsControllerGetWorkflowV1(id: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<WorkflowDto, any>>;
12462
12557
  /**
12463
12558
  *
12559
+ * @param {WorkflowsControllerListWorkflowsV1OrderByEnum} [orderBy]
12464
12560
  * @param {number} [limit]
12465
- * @param {number} [offset]
12561
+ * @param {string} [cursor]
12466
12562
  * @param {*} [options] Override http request option.
12467
12563
  * @throws {RequiredError}
12468
12564
  * @memberof WorkflowsApi
12469
12565
  */
12470
- workflowsControllerListWorkflowsV1(limit?: number, offset?: number, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListWorkflowsDto, any>>;
12566
+ workflowsControllerListWorkflowsV1(orderBy?: WorkflowsControllerListWorkflowsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListWorkflowsDto, any>>;
12471
12567
  /**
12472
12568
  *
12473
12569
  * @param {string} workflowId
@@ -12486,6 +12582,16 @@ declare class WorkflowsApi extends BaseAPI {
12486
12582
  */
12487
12583
  workflowsControllerUpdateWorkflowV1(id: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<WorkflowDto, any>>;
12488
12584
  }
12585
+ /**
12586
+ * @export
12587
+ */
12588
+ declare const WorkflowsControllerListWorkflowsV1OrderByEnum: {
12589
+ readonly CreatedAtAsc: "createdAt_ASC";
12590
+ readonly CreatedAtDesc: "createdAt_DESC";
12591
+ readonly UpdatedAtAsc: "updatedAt_ASC";
12592
+ readonly UpdatedAtDesc: "updatedAt_DESC";
12593
+ };
12594
+ type WorkflowsControllerListWorkflowsV1OrderByEnum = typeof WorkflowsControllerListWorkflowsV1OrderByEnum[keyof typeof WorkflowsControllerListWorkflowsV1OrderByEnum];
12489
12595
 
12490
12596
  interface SDKOptions {
12491
12597
  authToken: () => string | Promise<string>;
@@ -12524,10 +12630,14 @@ declare const createSDK: (options: SDKOptions) => {
12524
12630
  create: (props?: {
12525
12631
  alias?: string;
12526
12632
  }) => Promise<AccountEntity>;
12633
+ edit: (props: {
12634
+ id: string;
12635
+ alias?: string;
12636
+ }) => Promise<AccountEntity>;
12527
12637
  get: (props: {
12528
12638
  id: string;
12529
12639
  }) => Promise<AccountEntity | undefined>;
12530
- self: () => Promise<AccountEntity | undefined>;
12640
+ self: () => Promise<SelfAccountDto | undefined>;
12531
12641
  getByAlias: (props: {
12532
12642
  alias: string;
12533
12643
  }) => Promise<AccountEntity | undefined>;
@@ -14196,6 +14306,7 @@ type MethodsPermissions = {
14196
14306
  create: boolean;
14197
14307
  read: boolean;
14198
14308
  list: boolean;
14309
+ update: boolean;
14199
14310
  };
14200
14311
  balances: {
14201
14312
  read: boolean;
@@ -14308,4 +14419,4 @@ declare const createTokenSigner: (options: {
14308
14419
  }) => Promise<string>;
14309
14420
  };
14310
14421
 
14311
- 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 ListWorkflowsDtoPageInfo, 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, 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 };