feat: local volume explore file system

This commit is contained in:
Nicolas Meienberger
2025-11-08 11:00:18 +01:00
parent 4aeebea5b2
commit 5b4b571581
15 changed files with 409 additions and 24 deletions

View File

@@ -278,13 +278,12 @@ export const restoreSnapshotDto = describeRoute({
export const doctorStepSchema = type({
step: "string",
success: "boolean",
output: "string?",
error: "string?",
output: "string | null",
error: "string | null",
});
export const doctorRepositoryResponse = type({
success: "boolean",
message: "string",
steps: doctorStepSchema.array(),
});