From 2adec5a9994b54cf04e8c26752cfe48d3b4d50ca Mon Sep 17 00:00:00 2001 From: bcrooker Date: Sat, 7 Mar 2026 11:22:41 -0500 Subject: [PATCH] fix: add seconds_remaining to restic backup progress schema --- app/schemas/restic-dto.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/schemas/restic-dto.ts b/app/schemas/restic-dto.ts index ba62338a..390cf265 100644 --- a/app/schemas/restic-dto.ts +++ b/app/schemas/restic-dto.ts @@ -37,6 +37,7 @@ export const resticBackupOutputSchema = resticBackupRunSummarySchema.and( export const resticBackupProgressMetricsSchema = type({ seconds_elapsed: "number", + seconds_remaining: "number = 0", percent_done: "number", total_files: "number", files_done: "number",