mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-21 00:52:43 +02:00
28 lines
791 B
Swift
28 lines
791 B
Swift
//
|
|
// Copyright 2022-2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
// Please see LICENSE files in the repository root for full details.
|
|
//
|
|
|
|
import Foundation
|
|
import MatrixSDK
|
|
|
|
protocol UserSessionsDataProviderProtocol {
|
|
var myDeviceId: String { get }
|
|
|
|
var myUserId: String? { get }
|
|
|
|
var activeAccounts: [MXKAccount] { get }
|
|
|
|
func devices(completion: @escaping (MXResponse<[MXDevice]>) -> Void)
|
|
|
|
func device(withDeviceId deviceId: String, ofUser userId: String) -> MXDeviceInfo?
|
|
|
|
func verificationState(for deviceInfo: MXDeviceInfo?) -> UserSessionInfo.VerificationState
|
|
|
|
func accountData(for eventType: String) -> [AnyHashable: Any]?
|
|
|
|
func qrLoginAvailable() async throws -> Bool
|
|
}
|