mirror of
https://github.com/langgenius/dify.git
synced 2026-09-21 13:20:52 +08:00
fix: preserve and display workflow retry details (#38854)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
co-authored by
autofix-ci[bot]
parent
7dd33929c7
commit
7dc3126ff4
@@ -1144,6 +1144,7 @@ export type WorkflowRunNodeExecutionResponse = {
|
||||
predecessor_node_id?: string | null
|
||||
process_data?: unknown
|
||||
process_data_truncated?: boolean | null
|
||||
retry_index?: number | null
|
||||
status?: string | null
|
||||
title?: string | null
|
||||
}
|
||||
|
||||
@@ -1667,6 +1667,7 @@ export const zWorkflowRunNodeExecutionResponse = z.object({
|
||||
predecessor_node_id: z.string().nullish(),
|
||||
process_data: z.unknown().optional(),
|
||||
process_data_truncated: z.boolean().nullish(),
|
||||
retry_index: z.int().nullish(),
|
||||
status: z.string().nullish(),
|
||||
title: z.string().nullish(),
|
||||
})
|
||||
|
||||
@@ -240,6 +240,7 @@ export type WorkflowRunNodeExecutionResponse = {
|
||||
predecessor_node_id?: string | null
|
||||
process_data?: unknown
|
||||
process_data_truncated?: boolean | null
|
||||
retry_index?: number | null
|
||||
status?: string | null
|
||||
title?: string | null
|
||||
}
|
||||
|
||||
@@ -407,6 +407,7 @@ export const zWorkflowRunNodeExecutionResponse = z.object({
|
||||
predecessor_node_id: z.string().nullish(),
|
||||
process_data: z.unknown().optional(),
|
||||
process_data_truncated: z.boolean().nullish(),
|
||||
retry_index: z.int().nullish(),
|
||||
status: z.string().nullish(),
|
||||
title: z.string().nullish(),
|
||||
})
|
||||
|
||||
@@ -207,6 +207,7 @@ export type WorkflowRunNodeExecutionResponse = {
|
||||
predecessor_node_id?: string | null
|
||||
process_data?: unknown
|
||||
process_data_truncated?: boolean | null
|
||||
retry_index?: number | null
|
||||
status?: string | null
|
||||
title?: string | null
|
||||
}
|
||||
|
||||
@@ -243,6 +243,7 @@ export const zWorkflowRunNodeExecutionResponse = z.object({
|
||||
predecessor_node_id: z.string().nullish(),
|
||||
process_data: z.unknown().optional(),
|
||||
process_data_truncated: z.boolean().nullish(),
|
||||
retry_index: z.int().nullish(),
|
||||
status: z.string().nullish(),
|
||||
title: z.string().nullish(),
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user