@hautechai/sdk 1.10.1 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +44 -27
- package/dist/index.d.ts +44 -27
- package/dist/index.js +14 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -4282,13 +4282,13 @@ interface NaomiHauteV1Input {
|
|
|
4282
4282
|
* @type {number}
|
|
4283
4283
|
* @memberof NaomiHauteV1Input
|
|
4284
4284
|
*/
|
|
4285
|
-
'width'
|
|
4285
|
+
'width'?: number;
|
|
4286
4286
|
/**
|
|
4287
4287
|
*
|
|
4288
4288
|
* @type {number}
|
|
4289
4289
|
* @memberof NaomiHauteV1Input
|
|
4290
4290
|
*/
|
|
4291
|
-
'height'
|
|
4291
|
+
'height'?: number;
|
|
4292
4292
|
/**
|
|
4293
4293
|
*
|
|
4294
4294
|
* @type {number}
|
|
@@ -5030,6 +5030,14 @@ interface PipelineDto {
|
|
|
5030
5030
|
* @memberof PipelineDto
|
|
5031
5031
|
*/
|
|
5032
5032
|
'kind': PipelineDtoKindEnum;
|
|
5033
|
+
/**
|
|
5034
|
+
* State of the pipeline tasks
|
|
5035
|
+
* @type {{ [key: string]: PipelineDtoStateValue; }}
|
|
5036
|
+
* @memberof PipelineDto
|
|
5037
|
+
*/
|
|
5038
|
+
'state': {
|
|
5039
|
+
[key: string]: PipelineDtoStateValue;
|
|
5040
|
+
};
|
|
5033
5041
|
/**
|
|
5034
5042
|
* Total estimated credits of all tasks in the pipeline as a decimal string
|
|
5035
5043
|
* @type {string}
|
|
@@ -5042,14 +5050,6 @@ interface PipelineDto {
|
|
|
5042
5050
|
* @memberof PipelineDto
|
|
5043
5051
|
*/
|
|
5044
5052
|
'consumedCredits': string;
|
|
5045
|
-
/**
|
|
5046
|
-
* State of the pipeline tasks
|
|
5047
|
-
* @type {{ [key: string]: PipelineDtoStateValue; }}
|
|
5048
|
-
* @memberof PipelineDto
|
|
5049
|
-
*/
|
|
5050
|
-
'state': {
|
|
5051
|
-
[key: string]: PipelineDtoStateValue;
|
|
5052
|
-
};
|
|
5053
5053
|
/**
|
|
5054
5054
|
*
|
|
5055
5055
|
* @type {object}
|
|
@@ -5279,18 +5279,6 @@ interface PipelinePreviewDto {
|
|
|
5279
5279
|
* @memberof PipelinePreviewDto
|
|
5280
5280
|
*/
|
|
5281
5281
|
'kind': PipelinePreviewDtoKindEnum;
|
|
5282
|
-
/**
|
|
5283
|
-
* Total estimated credits of all tasks in the pipeline as a decimal string
|
|
5284
|
-
* @type {string}
|
|
5285
|
-
* @memberof PipelinePreviewDto
|
|
5286
|
-
*/
|
|
5287
|
-
'estimatedCredits': string;
|
|
5288
|
-
/**
|
|
5289
|
-
* Consumed credits of all successfully completed tasks in the pipeline as a decimal string
|
|
5290
|
-
* @type {string}
|
|
5291
|
-
* @memberof PipelinePreviewDto
|
|
5292
|
-
*/
|
|
5293
|
-
'consumedCredits': string;
|
|
5294
5282
|
/**
|
|
5295
5283
|
*
|
|
5296
5284
|
* @type {string}
|
|
@@ -6695,6 +6683,31 @@ interface UpdateStorageRecordParamsDto {
|
|
|
6695
6683
|
*/
|
|
6696
6684
|
'value': object;
|
|
6697
6685
|
}
|
|
6686
|
+
/**
|
|
6687
|
+
*
|
|
6688
|
+
* @export
|
|
6689
|
+
* @interface UpdateWorkflowParamsDto
|
|
6690
|
+
*/
|
|
6691
|
+
interface UpdateWorkflowParamsDto {
|
|
6692
|
+
/**
|
|
6693
|
+
*
|
|
6694
|
+
* @type {object}
|
|
6695
|
+
* @memberof UpdateWorkflowParamsDto
|
|
6696
|
+
*/
|
|
6697
|
+
'data'?: object;
|
|
6698
|
+
/**
|
|
6699
|
+
*
|
|
6700
|
+
* @type {string}
|
|
6701
|
+
* @memberof UpdateWorkflowParamsDto
|
|
6702
|
+
*/
|
|
6703
|
+
'version'?: string;
|
|
6704
|
+
/**
|
|
6705
|
+
*
|
|
6706
|
+
* @type {object}
|
|
6707
|
+
* @memberof UpdateWorkflowParamsDto
|
|
6708
|
+
*/
|
|
6709
|
+
'metadata'?: object;
|
|
6710
|
+
}
|
|
6698
6711
|
/**
|
|
6699
6712
|
*
|
|
6700
6713
|
* @export
|
|
@@ -12436,10 +12449,11 @@ declare const WorkflowsApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
12436
12449
|
/**
|
|
12437
12450
|
*
|
|
12438
12451
|
* @param {string} id
|
|
12452
|
+
* @param {UpdateWorkflowParamsDto} updateWorkflowParamsDto
|
|
12439
12453
|
* @param {*} [options] Override http request option.
|
|
12440
12454
|
* @throws {RequiredError}
|
|
12441
12455
|
*/
|
|
12442
|
-
workflowsControllerUpdateWorkflowV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12456
|
+
workflowsControllerUpdateWorkflowV1: (id: string, updateWorkflowParamsDto: UpdateWorkflowParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12443
12457
|
};
|
|
12444
12458
|
/**
|
|
12445
12459
|
* WorkflowsApi - functional programming interface
|
|
@@ -12487,10 +12501,11 @@ declare const WorkflowsApiFp: (configuration?: Configuration) => {
|
|
|
12487
12501
|
/**
|
|
12488
12502
|
*
|
|
12489
12503
|
* @param {string} id
|
|
12504
|
+
* @param {UpdateWorkflowParamsDto} updateWorkflowParamsDto
|
|
12490
12505
|
* @param {*} [options] Override http request option.
|
|
12491
12506
|
* @throws {RequiredError}
|
|
12492
12507
|
*/
|
|
12493
|
-
workflowsControllerUpdateWorkflowV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkflowDto>>;
|
|
12508
|
+
workflowsControllerUpdateWorkflowV1(id: string, updateWorkflowParamsDto: UpdateWorkflowParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkflowDto>>;
|
|
12494
12509
|
};
|
|
12495
12510
|
/**
|
|
12496
12511
|
* WorkflowsApi - factory interface
|
|
@@ -12538,10 +12553,11 @@ declare const WorkflowsApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
12538
12553
|
/**
|
|
12539
12554
|
*
|
|
12540
12555
|
* @param {string} id
|
|
12556
|
+
* @param {UpdateWorkflowParamsDto} updateWorkflowParamsDto
|
|
12541
12557
|
* @param {*} [options] Override http request option.
|
|
12542
12558
|
* @throws {RequiredError}
|
|
12543
12559
|
*/
|
|
12544
|
-
workflowsControllerUpdateWorkflowV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<WorkflowDto>;
|
|
12560
|
+
workflowsControllerUpdateWorkflowV1(id: string, updateWorkflowParamsDto: UpdateWorkflowParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<WorkflowDto>;
|
|
12545
12561
|
};
|
|
12546
12562
|
/**
|
|
12547
12563
|
* WorkflowsApi - object-oriented interface
|
|
@@ -12596,11 +12612,12 @@ declare class WorkflowsApi extends BaseAPI {
|
|
|
12596
12612
|
/**
|
|
12597
12613
|
*
|
|
12598
12614
|
* @param {string} id
|
|
12615
|
+
* @param {UpdateWorkflowParamsDto} updateWorkflowParamsDto
|
|
12599
12616
|
* @param {*} [options] Override http request option.
|
|
12600
12617
|
* @throws {RequiredError}
|
|
12601
12618
|
* @memberof WorkflowsApi
|
|
12602
12619
|
*/
|
|
12603
|
-
workflowsControllerUpdateWorkflowV1(id: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<WorkflowDto, any>>;
|
|
12620
|
+
workflowsControllerUpdateWorkflowV1(id: string, updateWorkflowParamsDto: UpdateWorkflowParamsDto, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<WorkflowDto, any>>;
|
|
12604
12621
|
}
|
|
12605
12622
|
/**
|
|
12606
12623
|
* @export
|
|
@@ -14439,4 +14456,4 @@ declare const createTokenSigner: (options: {
|
|
|
14439
14456
|
}) => Promise<string>;
|
|
14440
14457
|
};
|
|
14441
14458
|
|
|
14442
|
-
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 };
|
|
14459
|
+
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 UpdateWorkflowParamsDto, 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
|
@@ -4282,13 +4282,13 @@ interface NaomiHauteV1Input {
|
|
|
4282
4282
|
* @type {number}
|
|
4283
4283
|
* @memberof NaomiHauteV1Input
|
|
4284
4284
|
*/
|
|
4285
|
-
'width'
|
|
4285
|
+
'width'?: number;
|
|
4286
4286
|
/**
|
|
4287
4287
|
*
|
|
4288
4288
|
* @type {number}
|
|
4289
4289
|
* @memberof NaomiHauteV1Input
|
|
4290
4290
|
*/
|
|
4291
|
-
'height'
|
|
4291
|
+
'height'?: number;
|
|
4292
4292
|
/**
|
|
4293
4293
|
*
|
|
4294
4294
|
* @type {number}
|
|
@@ -5030,6 +5030,14 @@ interface PipelineDto {
|
|
|
5030
5030
|
* @memberof PipelineDto
|
|
5031
5031
|
*/
|
|
5032
5032
|
'kind': PipelineDtoKindEnum;
|
|
5033
|
+
/**
|
|
5034
|
+
* State of the pipeline tasks
|
|
5035
|
+
* @type {{ [key: string]: PipelineDtoStateValue; }}
|
|
5036
|
+
* @memberof PipelineDto
|
|
5037
|
+
*/
|
|
5038
|
+
'state': {
|
|
5039
|
+
[key: string]: PipelineDtoStateValue;
|
|
5040
|
+
};
|
|
5033
5041
|
/**
|
|
5034
5042
|
* Total estimated credits of all tasks in the pipeline as a decimal string
|
|
5035
5043
|
* @type {string}
|
|
@@ -5042,14 +5050,6 @@ interface PipelineDto {
|
|
|
5042
5050
|
* @memberof PipelineDto
|
|
5043
5051
|
*/
|
|
5044
5052
|
'consumedCredits': string;
|
|
5045
|
-
/**
|
|
5046
|
-
* State of the pipeline tasks
|
|
5047
|
-
* @type {{ [key: string]: PipelineDtoStateValue; }}
|
|
5048
|
-
* @memberof PipelineDto
|
|
5049
|
-
*/
|
|
5050
|
-
'state': {
|
|
5051
|
-
[key: string]: PipelineDtoStateValue;
|
|
5052
|
-
};
|
|
5053
5053
|
/**
|
|
5054
5054
|
*
|
|
5055
5055
|
* @type {object}
|
|
@@ -5279,18 +5279,6 @@ interface PipelinePreviewDto {
|
|
|
5279
5279
|
* @memberof PipelinePreviewDto
|
|
5280
5280
|
*/
|
|
5281
5281
|
'kind': PipelinePreviewDtoKindEnum;
|
|
5282
|
-
/**
|
|
5283
|
-
* Total estimated credits of all tasks in the pipeline as a decimal string
|
|
5284
|
-
* @type {string}
|
|
5285
|
-
* @memberof PipelinePreviewDto
|
|
5286
|
-
*/
|
|
5287
|
-
'estimatedCredits': string;
|
|
5288
|
-
/**
|
|
5289
|
-
* Consumed credits of all successfully completed tasks in the pipeline as a decimal string
|
|
5290
|
-
* @type {string}
|
|
5291
|
-
* @memberof PipelinePreviewDto
|
|
5292
|
-
*/
|
|
5293
|
-
'consumedCredits': string;
|
|
5294
5282
|
/**
|
|
5295
5283
|
*
|
|
5296
5284
|
* @type {string}
|
|
@@ -6695,6 +6683,31 @@ interface UpdateStorageRecordParamsDto {
|
|
|
6695
6683
|
*/
|
|
6696
6684
|
'value': object;
|
|
6697
6685
|
}
|
|
6686
|
+
/**
|
|
6687
|
+
*
|
|
6688
|
+
* @export
|
|
6689
|
+
* @interface UpdateWorkflowParamsDto
|
|
6690
|
+
*/
|
|
6691
|
+
interface UpdateWorkflowParamsDto {
|
|
6692
|
+
/**
|
|
6693
|
+
*
|
|
6694
|
+
* @type {object}
|
|
6695
|
+
* @memberof UpdateWorkflowParamsDto
|
|
6696
|
+
*/
|
|
6697
|
+
'data'?: object;
|
|
6698
|
+
/**
|
|
6699
|
+
*
|
|
6700
|
+
* @type {string}
|
|
6701
|
+
* @memberof UpdateWorkflowParamsDto
|
|
6702
|
+
*/
|
|
6703
|
+
'version'?: string;
|
|
6704
|
+
/**
|
|
6705
|
+
*
|
|
6706
|
+
* @type {object}
|
|
6707
|
+
* @memberof UpdateWorkflowParamsDto
|
|
6708
|
+
*/
|
|
6709
|
+
'metadata'?: object;
|
|
6710
|
+
}
|
|
6698
6711
|
/**
|
|
6699
6712
|
*
|
|
6700
6713
|
* @export
|
|
@@ -12436,10 +12449,11 @@ declare const WorkflowsApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
12436
12449
|
/**
|
|
12437
12450
|
*
|
|
12438
12451
|
* @param {string} id
|
|
12452
|
+
* @param {UpdateWorkflowParamsDto} updateWorkflowParamsDto
|
|
12439
12453
|
* @param {*} [options] Override http request option.
|
|
12440
12454
|
* @throws {RequiredError}
|
|
12441
12455
|
*/
|
|
12442
|
-
workflowsControllerUpdateWorkflowV1: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12456
|
+
workflowsControllerUpdateWorkflowV1: (id: string, updateWorkflowParamsDto: UpdateWorkflowParamsDto, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12443
12457
|
};
|
|
12444
12458
|
/**
|
|
12445
12459
|
* WorkflowsApi - functional programming interface
|
|
@@ -12487,10 +12501,11 @@ declare const WorkflowsApiFp: (configuration?: Configuration) => {
|
|
|
12487
12501
|
/**
|
|
12488
12502
|
*
|
|
12489
12503
|
* @param {string} id
|
|
12504
|
+
* @param {UpdateWorkflowParamsDto} updateWorkflowParamsDto
|
|
12490
12505
|
* @param {*} [options] Override http request option.
|
|
12491
12506
|
* @throws {RequiredError}
|
|
12492
12507
|
*/
|
|
12493
|
-
workflowsControllerUpdateWorkflowV1(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkflowDto>>;
|
|
12508
|
+
workflowsControllerUpdateWorkflowV1(id: string, updateWorkflowParamsDto: UpdateWorkflowParamsDto, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkflowDto>>;
|
|
12494
12509
|
};
|
|
12495
12510
|
/**
|
|
12496
12511
|
* WorkflowsApi - factory interface
|
|
@@ -12538,10 +12553,11 @@ declare const WorkflowsApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
12538
12553
|
/**
|
|
12539
12554
|
*
|
|
12540
12555
|
* @param {string} id
|
|
12556
|
+
* @param {UpdateWorkflowParamsDto} updateWorkflowParamsDto
|
|
12541
12557
|
* @param {*} [options] Override http request option.
|
|
12542
12558
|
* @throws {RequiredError}
|
|
12543
12559
|
*/
|
|
12544
|
-
workflowsControllerUpdateWorkflowV1(id: string, options?: RawAxiosRequestConfig): AxiosPromise<WorkflowDto>;
|
|
12560
|
+
workflowsControllerUpdateWorkflowV1(id: string, updateWorkflowParamsDto: UpdateWorkflowParamsDto, options?: RawAxiosRequestConfig): AxiosPromise<WorkflowDto>;
|
|
12545
12561
|
};
|
|
12546
12562
|
/**
|
|
12547
12563
|
* WorkflowsApi - object-oriented interface
|
|
@@ -12596,11 +12612,12 @@ declare class WorkflowsApi extends BaseAPI {
|
|
|
12596
12612
|
/**
|
|
12597
12613
|
*
|
|
12598
12614
|
* @param {string} id
|
|
12615
|
+
* @param {UpdateWorkflowParamsDto} updateWorkflowParamsDto
|
|
12599
12616
|
* @param {*} [options] Override http request option.
|
|
12600
12617
|
* @throws {RequiredError}
|
|
12601
12618
|
* @memberof WorkflowsApi
|
|
12602
12619
|
*/
|
|
12603
|
-
workflowsControllerUpdateWorkflowV1(id: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<WorkflowDto, any>>;
|
|
12620
|
+
workflowsControllerUpdateWorkflowV1(id: string, updateWorkflowParamsDto: UpdateWorkflowParamsDto, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<WorkflowDto, any>>;
|
|
12604
12621
|
}
|
|
12605
12622
|
/**
|
|
12606
12623
|
* @export
|
|
@@ -14439,4 +14456,4 @@ declare const createTokenSigner: (options: {
|
|
|
14439
14456
|
}) => Promise<string>;
|
|
14440
14457
|
};
|
|
14441
14458
|
|
|
14442
|
-
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 };
|
|
14459
|
+
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 UpdateWorkflowParamsDto, 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
|
@@ -10987,11 +10987,13 @@ var WorkflowsApiAxiosParamCreator = function(configuration) {
|
|
|
10987
10987
|
/**
|
|
10988
10988
|
*
|
|
10989
10989
|
* @param {string} id
|
|
10990
|
+
* @param {UpdateWorkflowParamsDto} updateWorkflowParamsDto
|
|
10990
10991
|
* @param {*} [options] Override http request option.
|
|
10991
10992
|
* @throws {RequiredError}
|
|
10992
10993
|
*/
|
|
10993
|
-
workflowsControllerUpdateWorkflowV1: async (id, options = {}) => {
|
|
10994
|
+
workflowsControllerUpdateWorkflowV1: async (id, updateWorkflowParamsDto, options = {}) => {
|
|
10994
10995
|
assertParamExists("workflowsControllerUpdateWorkflowV1", "id", id);
|
|
10996
|
+
assertParamExists("workflowsControllerUpdateWorkflowV1", "updateWorkflowParamsDto", updateWorkflowParamsDto);
|
|
10995
10997
|
const localVarPath = `/v1/workflows/{id}`.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
10996
10998
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
10997
10999
|
let baseOptions;
|
|
@@ -11002,9 +11004,11 @@ var WorkflowsApiAxiosParamCreator = function(configuration) {
|
|
|
11002
11004
|
const localVarHeaderParameter = {};
|
|
11003
11005
|
const localVarQueryParameter = {};
|
|
11004
11006
|
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
11007
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
11005
11008
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
11006
11009
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
11007
11010
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
11011
|
+
localVarRequestOptions.data = serializeDataIfNeeded(updateWorkflowParamsDto, localVarRequestOptions, configuration);
|
|
11008
11012
|
return {
|
|
11009
11013
|
url: toPathString(localVarUrlObj),
|
|
11010
11014
|
options: localVarRequestOptions
|
|
@@ -11081,11 +11085,12 @@ var WorkflowsApiFp = function(configuration) {
|
|
|
11081
11085
|
/**
|
|
11082
11086
|
*
|
|
11083
11087
|
* @param {string} id
|
|
11088
|
+
* @param {UpdateWorkflowParamsDto} updateWorkflowParamsDto
|
|
11084
11089
|
* @param {*} [options] Override http request option.
|
|
11085
11090
|
* @throws {RequiredError}
|
|
11086
11091
|
*/
|
|
11087
|
-
async workflowsControllerUpdateWorkflowV1(id, options) {
|
|
11088
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.workflowsControllerUpdateWorkflowV1(id, options);
|
|
11092
|
+
async workflowsControllerUpdateWorkflowV1(id, updateWorkflowParamsDto, options) {
|
|
11093
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.workflowsControllerUpdateWorkflowV1(id, updateWorkflowParamsDto, options);
|
|
11089
11094
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
11090
11095
|
const localVarOperationServerBasePath = operationServerMap["WorkflowsApi.workflowsControllerUpdateWorkflowV1"]?.[localVarOperationServerIndex]?.url;
|
|
11091
11096
|
return (axios2, basePath) => createRequestFunction(localVarAxiosArgs, import_axios2.default, BASE_PATH, configuration)(axios2, localVarOperationServerBasePath || basePath);
|
|
@@ -11146,11 +11151,12 @@ var WorkflowsApiFactory = function(configuration, basePath, axios2) {
|
|
|
11146
11151
|
/**
|
|
11147
11152
|
*
|
|
11148
11153
|
* @param {string} id
|
|
11154
|
+
* @param {UpdateWorkflowParamsDto} updateWorkflowParamsDto
|
|
11149
11155
|
* @param {*} [options] Override http request option.
|
|
11150
11156
|
* @throws {RequiredError}
|
|
11151
11157
|
*/
|
|
11152
|
-
workflowsControllerUpdateWorkflowV1(id, options) {
|
|
11153
|
-
return localVarFp.workflowsControllerUpdateWorkflowV1(id, options).then((request) => request(axios2, basePath));
|
|
11158
|
+
workflowsControllerUpdateWorkflowV1(id, updateWorkflowParamsDto, options) {
|
|
11159
|
+
return localVarFp.workflowsControllerUpdateWorkflowV1(id, updateWorkflowParamsDto, options).then((request) => request(axios2, basePath));
|
|
11154
11160
|
}
|
|
11155
11161
|
};
|
|
11156
11162
|
};
|
|
@@ -11211,12 +11217,13 @@ var WorkflowsApi = class extends BaseAPI {
|
|
|
11211
11217
|
/**
|
|
11212
11218
|
*
|
|
11213
11219
|
* @param {string} id
|
|
11220
|
+
* @param {UpdateWorkflowParamsDto} updateWorkflowParamsDto
|
|
11214
11221
|
* @param {*} [options] Override http request option.
|
|
11215
11222
|
* @throws {RequiredError}
|
|
11216
11223
|
* @memberof WorkflowsApi
|
|
11217
11224
|
*/
|
|
11218
|
-
workflowsControllerUpdateWorkflowV1(id, options) {
|
|
11219
|
-
return WorkflowsApiFp(this.configuration).workflowsControllerUpdateWorkflowV1(id, options).then((request) => request(this.axios, this.basePath));
|
|
11225
|
+
workflowsControllerUpdateWorkflowV1(id, updateWorkflowParamsDto, options) {
|
|
11226
|
+
return WorkflowsApiFp(this.configuration).workflowsControllerUpdateWorkflowV1(id, updateWorkflowParamsDto, options).then((request) => request(this.axios, this.basePath));
|
|
11220
11227
|
}
|
|
11221
11228
|
};
|
|
11222
11229
|
var WorkflowsControllerListWorkflowsV1OrderByEnum = {
|