Add session path migration to SessionData

This commit is contained in:
Jorge Martín 2024-06-06 16:25:42 +02:00
parent d06656d6bf
commit 67f6bf0d2d
18 changed files with 117 additions and 41 deletions

View file

@ -44,4 +44,6 @@ data class SessionData(
val loginType: LoginType,
/** The optional passphrase used to encrypt data in the SDK local store. */
val passphrase: String?,
/** The path to the session data stored in the filesystem. */
val sessionPath: String,
)