feat(react/settings): port database anonymization

This commit is contained in:
Elian Doran
2025-08-14 23:10:25 +03:00
parent 7e03774b8e
commit 16cd91eb02
6 changed files with 106 additions and 126 deletions

View File

@@ -67,3 +67,13 @@ export interface DatabaseCheckIntegrityResponse {
integrity_check: string;
}[];
}
export interface DatabaseAnonymizeResponse {
success: boolean;
anonymizedFilePath: string;
}
export interface AnonymizedDbResponse {
filePath: string;
fileName: string;
}