fix(restic-dto): allow missing current_files in schema
Some checks failed
Release Workflow / determine-release-type (push) Has been cancelled
Release Workflow / checks (push) Has been cancelled
Release Workflow / e2e-tests (push) Has been cancelled
Release Workflow / build-images (push) Has been cancelled
Release Workflow / publish-release (push) Has been cancelled
Some checks failed
Release Workflow / determine-release-type (push) Has been cancelled
Release Workflow / checks (push) Has been cancelled
Release Workflow / e2e-tests (push) Has been cancelled
Release Workflow / build-images (push) Has been cancelled
Release Workflow / publish-release (push) Has been cancelled
This commit is contained in:
parent
d533e470fc
commit
907bc57c2d
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ export const resticBackupProgressMetricsSchema = type({
|
||||||
files_done: "number",
|
files_done: "number",
|
||||||
total_bytes: "number",
|
total_bytes: "number",
|
||||||
bytes_done: "number",
|
bytes_done: "number",
|
||||||
current_files: "string[]",
|
current_files: "string[] | undefined?",
|
||||||
});
|
});
|
||||||
|
|
||||||
export const resticBackupProgressSchema = resticBackupProgressMetricsSchema.and(
|
export const resticBackupProgressSchema = resticBackupProgressMetricsSchema.and(
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue