mirror of
https://github.com/langgenius/dify.git
synced 2026-05-02 08:28:03 +08:00
feat: Enhance dataset pipeline creation and management with new export and delete functionalities, improved internationalization, and refactor for better clarity
This commit is contained in:
@ -24,13 +24,25 @@ export type PipelineTemplateByIdResponse = {
|
||||
export_data: string
|
||||
}
|
||||
|
||||
export type UpdatePipelineInfoPayload = {
|
||||
pipelineId: string
|
||||
export type UpdatePipelineInfoRequest = {
|
||||
pipeline_id: string
|
||||
name: string
|
||||
icon_info: IconInfo
|
||||
description: string
|
||||
}
|
||||
|
||||
export type UpdatePipelineInfoResponse = {
|
||||
pipeline_id: string
|
||||
name: string
|
||||
icon_info: IconInfo
|
||||
description: string
|
||||
position: number
|
||||
}
|
||||
|
||||
export type DeletePipelineResponse = {
|
||||
code: number
|
||||
}
|
||||
|
||||
export type ExportPipelineDSLResponse = {
|
||||
data: string
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user