feat: Friend notes backup/restore

This commit is contained in:
ΞTΞRNAL
2025-10-07 22:01:45 +05:30
parent 3daf5ea89b
commit 0303947f84
7 changed files with 128 additions and 7 deletions

View File

@@ -255,6 +255,10 @@ class BridgeClient(
fun setScopeNotes(id: String, content: String?) = safeServiceCall { service.setScopeNotes(id, content) }
fun getAllScopeNotes(): Map<String, String> = safeServiceCall { service.getAllScopeNotes() }
fun setAllScopeNotes(notes: Map<String, String>) = safeServiceCall { service.setAllScopeNotes(notes) }
fun getScriptingInterface(): IScripting = safeServiceCall { service.scriptingInterface }
fun getE2eeInterface(): E2eeInterface = safeServiceCall { service.e2eeInterface }