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:
Blackoutta
2026-07-15 05:58:37 +00:00
committed by GitHub
co-authored by autofix-ci[bot]
parent 7dd33929c7
commit 7dc3126ff4
31 changed files with 757 additions and 75 deletions
@@ -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(),
})