@hautechai/sdk 1.7.0 → 1.8.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 +25 -42
- package/dist/index.d.ts +25 -42
- package/dist/index.js +31 -15
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +30 -15
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -4020,41 +4020,10 @@ interface ListWorkflowsDto {
|
|
|
4020
4020
|
'data': Array<WorkflowDto>;
|
|
4021
4021
|
/**
|
|
4022
4022
|
*
|
|
4023
|
-
* @type {
|
|
4023
|
+
* @type {ListPipelinesDtoPageInfo}
|
|
4024
4024
|
* @memberof ListWorkflowsDto
|
|
4025
4025
|
*/
|
|
4026
|
-
'pageInfo':
|
|
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;
|
|
4026
|
+
'pageInfo': ListPipelinesDtoPageInfo;
|
|
4058
4027
|
}
|
|
4059
4028
|
/**
|
|
4060
4029
|
*
|
|
@@ -12306,12 +12275,13 @@ declare const WorkflowsApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
12306
12275
|
workflowsControllerGetWorkflowV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12307
12276
|
/**
|
|
12308
12277
|
*
|
|
12278
|
+
* @param {WorkflowsControllerListWorkflowsV1OrderByEnum} [orderBy]
|
|
12309
12279
|
* @param {number} [limit]
|
|
12310
|
-
* @param {
|
|
12280
|
+
* @param {string} [cursor]
|
|
12311
12281
|
* @param {*} [options] Override http request option.
|
|
12312
12282
|
* @throws {RequiredError}
|
|
12313
12283
|
*/
|
|
12314
|
-
workflowsControllerListWorkflowsV1: (limit?: number,
|
|
12284
|
+
workflowsControllerListWorkflowsV1: (orderBy?: WorkflowsControllerListWorkflowsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12315
12285
|
/**
|
|
12316
12286
|
*
|
|
12317
12287
|
* @param {string} workflowId
|
|
@@ -12356,12 +12326,13 @@ declare const WorkflowsApiFp: (configuration?: Configuration) => {
|
|
|
12356
12326
|
workflowsControllerGetWorkflowV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkflowDto>>;
|
|
12357
12327
|
/**
|
|
12358
12328
|
*
|
|
12329
|
+
* @param {WorkflowsControllerListWorkflowsV1OrderByEnum} [orderBy]
|
|
12359
12330
|
* @param {number} [limit]
|
|
12360
|
-
* @param {
|
|
12331
|
+
* @param {string} [cursor]
|
|
12361
12332
|
* @param {*} [options] Override http request option.
|
|
12362
12333
|
* @throws {RequiredError}
|
|
12363
12334
|
*/
|
|
12364
|
-
workflowsControllerListWorkflowsV1(limit?: number,
|
|
12335
|
+
workflowsControllerListWorkflowsV1(orderBy?: WorkflowsControllerListWorkflowsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListWorkflowsDto>>;
|
|
12365
12336
|
/**
|
|
12366
12337
|
*
|
|
12367
12338
|
* @param {string} workflowId
|
|
@@ -12406,12 +12377,13 @@ declare const WorkflowsApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
12406
12377
|
workflowsControllerGetWorkflowV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<WorkflowDto>;
|
|
12407
12378
|
/**
|
|
12408
12379
|
*
|
|
12380
|
+
* @param {WorkflowsControllerListWorkflowsV1OrderByEnum} [orderBy]
|
|
12409
12381
|
* @param {number} [limit]
|
|
12410
|
-
* @param {
|
|
12382
|
+
* @param {string} [cursor]
|
|
12411
12383
|
* @param {*} [options] Override http request option.
|
|
12412
12384
|
* @throws {RequiredError}
|
|
12413
12385
|
*/
|
|
12414
|
-
workflowsControllerListWorkflowsV1(limit?: number,
|
|
12386
|
+
workflowsControllerListWorkflowsV1(orderBy?: WorkflowsControllerListWorkflowsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListWorkflowsDto>;
|
|
12415
12387
|
/**
|
|
12416
12388
|
*
|
|
12417
12389
|
* @param {string} workflowId
|
|
@@ -12461,13 +12433,14 @@ declare class WorkflowsApi extends BaseAPI {
|
|
|
12461
12433
|
workflowsControllerGetWorkflowV1(id: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<WorkflowDto, any>>;
|
|
12462
12434
|
/**
|
|
12463
12435
|
*
|
|
12436
|
+
* @param {WorkflowsControllerListWorkflowsV1OrderByEnum} [orderBy]
|
|
12464
12437
|
* @param {number} [limit]
|
|
12465
|
-
* @param {
|
|
12438
|
+
* @param {string} [cursor]
|
|
12466
12439
|
* @param {*} [options] Override http request option.
|
|
12467
12440
|
* @throws {RequiredError}
|
|
12468
12441
|
* @memberof WorkflowsApi
|
|
12469
12442
|
*/
|
|
12470
|
-
workflowsControllerListWorkflowsV1(limit?: number,
|
|
12443
|
+
workflowsControllerListWorkflowsV1(orderBy?: WorkflowsControllerListWorkflowsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListWorkflowsDto, any>>;
|
|
12471
12444
|
/**
|
|
12472
12445
|
*
|
|
12473
12446
|
* @param {string} workflowId
|
|
@@ -12486,6 +12459,16 @@ declare class WorkflowsApi extends BaseAPI {
|
|
|
12486
12459
|
*/
|
|
12487
12460
|
workflowsControllerUpdateWorkflowV1(id: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<WorkflowDto, any>>;
|
|
12488
12461
|
}
|
|
12462
|
+
/**
|
|
12463
|
+
* @export
|
|
12464
|
+
*/
|
|
12465
|
+
declare const WorkflowsControllerListWorkflowsV1OrderByEnum: {
|
|
12466
|
+
readonly CreatedAtAsc: "createdAt_ASC";
|
|
12467
|
+
readonly CreatedAtDesc: "createdAt_DESC";
|
|
12468
|
+
readonly UpdatedAtAsc: "updatedAt_ASC";
|
|
12469
|
+
readonly UpdatedAtDesc: "updatedAt_DESC";
|
|
12470
|
+
};
|
|
12471
|
+
type WorkflowsControllerListWorkflowsV1OrderByEnum = typeof WorkflowsControllerListWorkflowsV1OrderByEnum[keyof typeof WorkflowsControllerListWorkflowsV1OrderByEnum];
|
|
12489
12472
|
|
|
12490
12473
|
interface SDKOptions {
|
|
12491
12474
|
authToken: () => string | Promise<string>;
|
|
@@ -14308,4 +14291,4 @@ declare const createTokenSigner: (options: {
|
|
|
14308
14291
|
}) => Promise<string>;
|
|
14309
14292
|
};
|
|
14310
14293
|
|
|
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 };
|
|
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -4020,41 +4020,10 @@ interface ListWorkflowsDto {
|
|
|
4020
4020
|
'data': Array<WorkflowDto>;
|
|
4021
4021
|
/**
|
|
4022
4022
|
*
|
|
4023
|
-
* @type {
|
|
4023
|
+
* @type {ListPipelinesDtoPageInfo}
|
|
4024
4024
|
* @memberof ListWorkflowsDto
|
|
4025
4025
|
*/
|
|
4026
|
-
'pageInfo':
|
|
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;
|
|
4026
|
+
'pageInfo': ListPipelinesDtoPageInfo;
|
|
4058
4027
|
}
|
|
4059
4028
|
/**
|
|
4060
4029
|
*
|
|
@@ -12306,12 +12275,13 @@ declare const WorkflowsApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
12306
12275
|
workflowsControllerGetWorkflowV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12307
12276
|
/**
|
|
12308
12277
|
*
|
|
12278
|
+
* @param {WorkflowsControllerListWorkflowsV1OrderByEnum} [orderBy]
|
|
12309
12279
|
* @param {number} [limit]
|
|
12310
|
-
* @param {
|
|
12280
|
+
* @param {string} [cursor]
|
|
12311
12281
|
* @param {*} [options] Override http request option.
|
|
12312
12282
|
* @throws {RequiredError}
|
|
12313
12283
|
*/
|
|
12314
|
-
workflowsControllerListWorkflowsV1: (limit?: number,
|
|
12284
|
+
workflowsControllerListWorkflowsV1: (orderBy?: WorkflowsControllerListWorkflowsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12315
12285
|
/**
|
|
12316
12286
|
*
|
|
12317
12287
|
* @param {string} workflowId
|
|
@@ -12356,12 +12326,13 @@ declare const WorkflowsApiFp: (configuration?: Configuration) => {
|
|
|
12356
12326
|
workflowsControllerGetWorkflowV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkflowDto>>;
|
|
12357
12327
|
/**
|
|
12358
12328
|
*
|
|
12329
|
+
* @param {WorkflowsControllerListWorkflowsV1OrderByEnum} [orderBy]
|
|
12359
12330
|
* @param {number} [limit]
|
|
12360
|
-
* @param {
|
|
12331
|
+
* @param {string} [cursor]
|
|
12361
12332
|
* @param {*} [options] Override http request option.
|
|
12362
12333
|
* @throws {RequiredError}
|
|
12363
12334
|
*/
|
|
12364
|
-
workflowsControllerListWorkflowsV1(limit?: number,
|
|
12335
|
+
workflowsControllerListWorkflowsV1(orderBy?: WorkflowsControllerListWorkflowsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListWorkflowsDto>>;
|
|
12365
12336
|
/**
|
|
12366
12337
|
*
|
|
12367
12338
|
* @param {string} workflowId
|
|
@@ -12406,12 +12377,13 @@ declare const WorkflowsApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
12406
12377
|
workflowsControllerGetWorkflowV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<WorkflowDto>;
|
|
12407
12378
|
/**
|
|
12408
12379
|
*
|
|
12380
|
+
* @param {WorkflowsControllerListWorkflowsV1OrderByEnum} [orderBy]
|
|
12409
12381
|
* @param {number} [limit]
|
|
12410
|
-
* @param {
|
|
12382
|
+
* @param {string} [cursor]
|
|
12411
12383
|
* @param {*} [options] Override http request option.
|
|
12412
12384
|
* @throws {RequiredError}
|
|
12413
12385
|
*/
|
|
12414
|
-
workflowsControllerListWorkflowsV1(limit?: number,
|
|
12386
|
+
workflowsControllerListWorkflowsV1(orderBy?: WorkflowsControllerListWorkflowsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListWorkflowsDto>;
|
|
12415
12387
|
/**
|
|
12416
12388
|
*
|
|
12417
12389
|
* @param {string} workflowId
|
|
@@ -12461,13 +12433,14 @@ declare class WorkflowsApi extends BaseAPI {
|
|
|
12461
12433
|
workflowsControllerGetWorkflowV1(id: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<WorkflowDto, any>>;
|
|
12462
12434
|
/**
|
|
12463
12435
|
*
|
|
12436
|
+
* @param {WorkflowsControllerListWorkflowsV1OrderByEnum} [orderBy]
|
|
12464
12437
|
* @param {number} [limit]
|
|
12465
|
-
* @param {
|
|
12438
|
+
* @param {string} [cursor]
|
|
12466
12439
|
* @param {*} [options] Override http request option.
|
|
12467
12440
|
* @throws {RequiredError}
|
|
12468
12441
|
* @memberof WorkflowsApi
|
|
12469
12442
|
*/
|
|
12470
|
-
workflowsControllerListWorkflowsV1(limit?: number,
|
|
12443
|
+
workflowsControllerListWorkflowsV1(orderBy?: WorkflowsControllerListWorkflowsV1OrderByEnum, limit?: number, cursor?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ListWorkflowsDto, any>>;
|
|
12471
12444
|
/**
|
|
12472
12445
|
*
|
|
12473
12446
|
* @param {string} workflowId
|
|
@@ -12486,6 +12459,16 @@ declare class WorkflowsApi extends BaseAPI {
|
|
|
12486
12459
|
*/
|
|
12487
12460
|
workflowsControllerUpdateWorkflowV1(id: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<WorkflowDto, any>>;
|
|
12488
12461
|
}
|
|
12462
|
+
/**
|
|
12463
|
+
* @export
|
|
12464
|
+
*/
|
|
12465
|
+
declare const WorkflowsControllerListWorkflowsV1OrderByEnum: {
|
|
12466
|
+
readonly CreatedAtAsc: "createdAt_ASC";
|
|
12467
|
+
readonly CreatedAtDesc: "createdAt_DESC";
|
|
12468
|
+
readonly UpdatedAtAsc: "updatedAt_ASC";
|
|
12469
|
+
readonly UpdatedAtDesc: "updatedAt_DESC";
|
|
12470
|
+
};
|
|
12471
|
+
type WorkflowsControllerListWorkflowsV1OrderByEnum = typeof WorkflowsControllerListWorkflowsV1OrderByEnum[keyof typeof WorkflowsControllerListWorkflowsV1OrderByEnum];
|
|
12489
12472
|
|
|
12490
12473
|
interface SDKOptions {
|
|
12491
12474
|
authToken: () => string | Promise<string>;
|
|
@@ -14308,4 +14291,4 @@ declare const createTokenSigner: (options: {
|
|
|
14308
14291
|
}) => Promise<string>;
|
|
14309
14292
|
};
|
|
14310
14293
|
|
|
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 };
|
|
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 };
|
package/dist/index.js
CHANGED
|
@@ -220,6 +220,7 @@ __export(index_exports, {
|
|
|
220
220
|
WorkflowsApiAxiosParamCreator: () => WorkflowsApiAxiosParamCreator,
|
|
221
221
|
WorkflowsApiFactory: () => WorkflowsApiFactory,
|
|
222
222
|
WorkflowsApiFp: () => WorkflowsApiFp,
|
|
223
|
+
WorkflowsControllerListWorkflowsV1OrderByEnum: () => WorkflowsControllerListWorkflowsV1OrderByEnum,
|
|
223
224
|
createSDK: () => createSDK,
|
|
224
225
|
createTokenSigner: () => createTokenSigner
|
|
225
226
|
});
|
|
@@ -10830,12 +10831,13 @@ var WorkflowsApiAxiosParamCreator = function(configuration) {
|
|
|
10830
10831
|
},
|
|
10831
10832
|
/**
|
|
10832
10833
|
*
|
|
10834
|
+
* @param {WorkflowsControllerListWorkflowsV1OrderByEnum} [orderBy]
|
|
10833
10835
|
* @param {number} [limit]
|
|
10834
|
-
* @param {
|
|
10836
|
+
* @param {string} [cursor]
|
|
10835
10837
|
* @param {*} [options] Override http request option.
|
|
10836
10838
|
* @throws {RequiredError}
|
|
10837
10839
|
*/
|
|
10838
|
-
workflowsControllerListWorkflowsV1: async (limit,
|
|
10840
|
+
workflowsControllerListWorkflowsV1: async (orderBy, limit, cursor, options = {}) => {
|
|
10839
10841
|
const localVarPath = `/v1/workflows`;
|
|
10840
10842
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
10841
10843
|
let baseOptions;
|
|
@@ -10846,11 +10848,14 @@ var WorkflowsApiAxiosParamCreator = function(configuration) {
|
|
|
10846
10848
|
const localVarHeaderParameter = {};
|
|
10847
10849
|
const localVarQueryParameter = {};
|
|
10848
10850
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
10851
|
+
if (orderBy !== void 0) {
|
|
10852
|
+
localVarQueryParameter["orderBy"] = orderBy;
|
|
10853
|
+
}
|
|
10849
10854
|
if (limit !== void 0) {
|
|
10850
10855
|
localVarQueryParameter["limit"] = limit;
|
|
10851
10856
|
}
|
|
10852
|
-
if (
|
|
10853
|
-
localVarQueryParameter["
|
|
10857
|
+
if (cursor !== void 0) {
|
|
10858
|
+
localVarQueryParameter["cursor"] = cursor;
|
|
10854
10859
|
}
|
|
10855
10860
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
10856
10861
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -10959,13 +10964,14 @@ var WorkflowsApiFp = function(configuration) {
|
|
|
10959
10964
|
},
|
|
10960
10965
|
/**
|
|
10961
10966
|
*
|
|
10967
|
+
* @param {WorkflowsControllerListWorkflowsV1OrderByEnum} [orderBy]
|
|
10962
10968
|
* @param {number} [limit]
|
|
10963
|
-
* @param {
|
|
10969
|
+
* @param {string} [cursor]
|
|
10964
10970
|
* @param {*} [options] Override http request option.
|
|
10965
10971
|
* @throws {RequiredError}
|
|
10966
10972
|
*/
|
|
10967
|
-
async workflowsControllerListWorkflowsV1(limit,
|
|
10968
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.workflowsControllerListWorkflowsV1(limit,
|
|
10973
|
+
async workflowsControllerListWorkflowsV1(orderBy, limit, cursor, options) {
|
|
10974
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.workflowsControllerListWorkflowsV1(orderBy, limit, cursor, options);
|
|
10969
10975
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
10970
10976
|
const localVarOperationServerBasePath = operationServerMap["WorkflowsApi.workflowsControllerListWorkflowsV1"]?.[localVarOperationServerIndex]?.url;
|
|
10971
10977
|
return (axios2, basePath) => createRequestFunction(localVarAxiosArgs, import_axios2.default, BASE_PATH, configuration)(axios2, localVarOperationServerBasePath || basePath);
|
|
@@ -11029,13 +11035,14 @@ var WorkflowsApiFactory = function(configuration, basePath, axios2) {
|
|
|
11029
11035
|
},
|
|
11030
11036
|
/**
|
|
11031
11037
|
*
|
|
11038
|
+
* @param {WorkflowsControllerListWorkflowsV1OrderByEnum} [orderBy]
|
|
11032
11039
|
* @param {number} [limit]
|
|
11033
|
-
* @param {
|
|
11040
|
+
* @param {string} [cursor]
|
|
11034
11041
|
* @param {*} [options] Override http request option.
|
|
11035
11042
|
* @throws {RequiredError}
|
|
11036
11043
|
*/
|
|
11037
|
-
workflowsControllerListWorkflowsV1(limit,
|
|
11038
|
-
return localVarFp.workflowsControllerListWorkflowsV1(limit,
|
|
11044
|
+
workflowsControllerListWorkflowsV1(orderBy, limit, cursor, options) {
|
|
11045
|
+
return localVarFp.workflowsControllerListWorkflowsV1(orderBy, limit, cursor, options).then((request) => request(axios2, basePath));
|
|
11039
11046
|
},
|
|
11040
11047
|
/**
|
|
11041
11048
|
*
|
|
@@ -11091,14 +11098,15 @@ var WorkflowsApi = class extends BaseAPI {
|
|
|
11091
11098
|
}
|
|
11092
11099
|
/**
|
|
11093
11100
|
*
|
|
11101
|
+
* @param {WorkflowsControllerListWorkflowsV1OrderByEnum} [orderBy]
|
|
11094
11102
|
* @param {number} [limit]
|
|
11095
|
-
* @param {
|
|
11103
|
+
* @param {string} [cursor]
|
|
11096
11104
|
* @param {*} [options] Override http request option.
|
|
11097
11105
|
* @throws {RequiredError}
|
|
11098
11106
|
* @memberof WorkflowsApi
|
|
11099
11107
|
*/
|
|
11100
|
-
workflowsControllerListWorkflowsV1(limit,
|
|
11101
|
-
return WorkflowsApiFp(this.configuration).workflowsControllerListWorkflowsV1(limit,
|
|
11108
|
+
workflowsControllerListWorkflowsV1(orderBy, limit, cursor, options) {
|
|
11109
|
+
return WorkflowsApiFp(this.configuration).workflowsControllerListWorkflowsV1(orderBy, limit, cursor, options).then((request) => request(this.axios, this.basePath));
|
|
11102
11110
|
}
|
|
11103
11111
|
/**
|
|
11104
11112
|
*
|
|
@@ -11122,6 +11130,12 @@ var WorkflowsApi = class extends BaseAPI {
|
|
|
11122
11130
|
return WorkflowsApiFp(this.configuration).workflowsControllerUpdateWorkflowV1(id, options).then((request) => request(this.axios, this.basePath));
|
|
11123
11131
|
}
|
|
11124
11132
|
};
|
|
11133
|
+
var WorkflowsControllerListWorkflowsV1OrderByEnum = {
|
|
11134
|
+
CreatedAtAsc: "createdAt_ASC",
|
|
11135
|
+
CreatedAtDesc: "createdAt_DESC",
|
|
11136
|
+
UpdatedAtAsc: "updatedAt_ASC",
|
|
11137
|
+
UpdatedAtDesc: "updatedAt_DESC"
|
|
11138
|
+
};
|
|
11125
11139
|
|
|
11126
11140
|
// src/autogenerated/configuration.ts
|
|
11127
11141
|
var Configuration = class {
|
|
@@ -11836,7 +11850,7 @@ var pipelines = (options) => {
|
|
|
11836
11850
|
metadata: props.metadata,
|
|
11837
11851
|
tasks: props.template?.tasks ?? props.tasks,
|
|
11838
11852
|
state: props.state,
|
|
11839
|
-
pipelineInput: props.template?.
|
|
11853
|
+
pipelineInput: props.template?.input,
|
|
11840
11854
|
outputRef: props.template?.outputRef
|
|
11841
11855
|
});
|
|
11842
11856
|
}
|
|
@@ -12086,7 +12100,8 @@ var workflows = (options) => {
|
|
|
12086
12100
|
run: (methods) => methods.workflowsControllerGetWorkflowV1(props.id)
|
|
12087
12101
|
}),
|
|
12088
12102
|
list: () => api.call({
|
|
12089
|
-
run: (methods) => methods.workflowsControllerListWorkflowsV1()
|
|
12103
|
+
run: (methods) => methods.workflowsControllerListWorkflowsV1(),
|
|
12104
|
+
transform: transformToListResponse
|
|
12090
12105
|
}),
|
|
12091
12106
|
update: async (props) => api.call({
|
|
12092
12107
|
run: (methods) => methods.workflowsControllerUpdateWorkflowV1(props.id, props)
|
|
@@ -12401,6 +12416,7 @@ var createTokenSigner = (options) => {
|
|
|
12401
12416
|
WorkflowsApiAxiosParamCreator,
|
|
12402
12417
|
WorkflowsApiFactory,
|
|
12403
12418
|
WorkflowsApiFp,
|
|
12419
|
+
WorkflowsControllerListWorkflowsV1OrderByEnum,
|
|
12404
12420
|
createSDK,
|
|
12405
12421
|
createTokenSigner
|
|
12406
12422
|
});
|