feat: support restoring backups from a different server

This commit is contained in:
Aiden McClelland
2026-03-19 01:07:37 -06:00
parent e4b0f56fa7
commit 96dcd126db
5 changed files with 15 additions and 5 deletions

View File

@@ -3,7 +3,8 @@ import type { BackupTargetId } from './BackupTargetId'
import type { PackageId } from './PackageId'
export type RestorePackageParams = {
ids: Array<PackageId>
targetId: BackupTargetId
password: string
ids: Array<PackageId>
serverId: string | null
}