Skip to content

Commit a0d5a2d

Browse files
committed
feat: Add new parameters in LoginParams.kt
Signed-off-by: Gaurav Goel <[email protected]>
1 parent 43e5a71 commit a0d5a2d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/src/main/java/com/web3auth/core/types/LoginParams.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ import androidx.annotation.Keep
66
@Keep
77
data class LoginParams(
88
@Keep val authConnection: AuthConnection,
9+
@Keep val authConnectionId: String? = null,
10+
@Keep val groupedAuthConnectionId: String? = null,
911
@Keep var dappShare: String? = null,
1012
@Keep val extraLoginOptions: ExtraLoginOptions? = null,
1113
@Keep @Transient var redirectUrl: Uri? = null,
1214
@Keep val appState: String? = null,
1315
@Keep val mfaLevel: MFALevel? = null,
1416
@Keep val curve: Curve? = Curve.SECP256K1,
15-
@Keep val dappUrl: String? = null,
16-
@Keep val authConnectionId: String? = null,
17-
@Keep val groupedAuthConnectionId: String? = null
17+
@Keep val dappUrl: String? = null
1818
)

0 commit comments

Comments
 (0)