Merge fix/chore-fix into dev/plugin-deploy

This commit is contained in:
Yeuoly
2024-12-25 15:12:05 +08:00
733 changed files with 7774 additions and 5226 deletions

View File

@ -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: '',

View File

@ -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
}