mirror of
https://github.com/langgenius/dify.git
synced 2026-05-05 18:08:07 +08:00
Merge fix/chore-fix into dev/plugin-deploy
This commit is contained in:
@ -30,6 +30,7 @@ export type SystemFeatures = {
|
||||
enable_social_oauth_login: boolean
|
||||
is_allow_create_workspace: boolean
|
||||
is_allow_register: boolean
|
||||
is_email_setup: boolean
|
||||
license: License
|
||||
}
|
||||
|
||||
@ -45,6 +46,7 @@ export const defaultSystemFeatures: SystemFeatures = {
|
||||
enable_social_oauth_login: false,
|
||||
is_allow_create_workspace: false,
|
||||
is_allow_register: false,
|
||||
is_email_setup: false,
|
||||
license: {
|
||||
status: LicenseStatus.NONE,
|
||||
expired_at: '',
|
||||
|
||||
@ -52,10 +52,12 @@ export type NodeTracing = {
|
||||
extras?: any
|
||||
expand?: boolean // for UI
|
||||
details?: NodeTracing[][] // iteration detail
|
||||
retryDetail?: NodeTracing[] // retry detail
|
||||
parallel_id?: string
|
||||
parallel_start_node_id?: string
|
||||
parent_parallel_id?: string
|
||||
parent_parallel_start_node_id?: string
|
||||
retry_index?: number
|
||||
}
|
||||
|
||||
export type FetchWorkflowDraftResponse = {
|
||||
@ -178,6 +180,7 @@ export type NodeFinishedResponse = {
|
||||
}
|
||||
created_at: number
|
||||
files?: FileResponse[]
|
||||
retry_index?: number
|
||||
}
|
||||
}
|
||||
|
||||
@ -333,3 +336,7 @@ export type ConversationVariableResponse = {
|
||||
}
|
||||
|
||||
export type IterationDurationMap = Record<string, number>
|
||||
|
||||
export type WorkflowConfigResponse = {
|
||||
parallel_depth_limit: number
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user