Update the SDK, minor version, handle API breaks (#1994)

This commit is contained in:
Doug
2023-10-31 14:56:23 +00:00
committed by GitHub
parent 93dddda0b2
commit 13b12630e3
9 changed files with 63 additions and 20 deletions

View File

@@ -45,6 +45,8 @@ enum SecureBackupControllerError: Error {
case failedConfirmingRecoveryKey
case failedFetchingSessionState
case failedUploadingForBackup
}
// sourcery: AutoMockable
@@ -61,7 +63,7 @@ protocol SecureBackupControllerProtocol {
func isLastSession() async -> Result<Bool, SecureBackupControllerError>
func waitForKeyBackup() async
func waitForKeyBackupUpload() async -> Result<Void, SecureBackupControllerError>
}
extension SecureBackupControllerMock {