feat(frontend): restore whole snapshot

This commit is contained in:
Nicolas Meienberger
2025-10-31 21:52:54 +01:00
parent c7db88fb56
commit ee79fce2aa
8 changed files with 203 additions and 24 deletions

View File

@@ -854,7 +854,6 @@ export type ListSnapshotFilesResponse = ListSnapshotFilesResponses[keyof ListSna
export type RestoreSnapshotData = {
body?: {
snapshotId: string;
targetPath: string;
exclude?: Array<string>;
include?: Array<string>;
path?: string;
@@ -872,10 +871,9 @@ export type RestoreSnapshotResponses = {
*/
200: {
filesRestored: number;
filesUpdated: number;
filesSkipped: number;
message: string;
success: boolean;
totalBytes: number;
};
};