From 87ab7e65d60142f567dc8823b7a46e0483fdd746 Mon Sep 17 00:00:00 2001 From: Prince Mathew Date: Mon, 17 Nov 2025 10:56:17 +0530 Subject: [PATCH 1/2] refactor: Added tow new fields to the passkey authentication method --- .../java/com/auth0/android/result/AuthenticationMethod.kt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/auth0/src/main/java/com/auth0/android/result/AuthenticationMethod.kt b/auth0/src/main/java/com/auth0/android/result/AuthenticationMethod.kt index fcd5df8c..2d782237 100644 --- a/auth0/src/main/java/com/auth0/android/result/AuthenticationMethod.kt +++ b/auth0/src/main/java/com/auth0/android/result/AuthenticationMethod.kt @@ -75,7 +75,11 @@ public data class PasskeyAuthenticationMethod( @SerializedName("user_agent") public val userAgent: String?, @SerializedName("user_handle") - public val userHandle: String? + public val userHandle: String?, + @SerializedName("aaguid") + public val aaguid: String, + @SerializedName("relying_party_id") + public val relyingPartyId: String ) : AuthenticationMethod() public sealed class MfaAuthenticationMethod : AuthenticationMethod() { From 1681fe75193a03774f4a201e61070de655a54007 Mon Sep 17 00:00:00 2001 From: Prince Mathew Date: Mon, 17 Nov 2025 10:56:17 +0530 Subject: [PATCH 2/2] refactor: Added tow new fields to the passkey authentication method --- .../java/com/auth0/android/result/AuthenticationMethod.kt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/auth0/src/main/java/com/auth0/android/result/AuthenticationMethod.kt b/auth0/src/main/java/com/auth0/android/result/AuthenticationMethod.kt index fcd5df8c..2d782237 100644 --- a/auth0/src/main/java/com/auth0/android/result/AuthenticationMethod.kt +++ b/auth0/src/main/java/com/auth0/android/result/AuthenticationMethod.kt @@ -75,7 +75,11 @@ public data class PasskeyAuthenticationMethod( @SerializedName("user_agent") public val userAgent: String?, @SerializedName("user_handle") - public val userHandle: String? + public val userHandle: String?, + @SerializedName("aaguid") + public val aaguid: String, + @SerializedName("relying_party_id") + public val relyingPartyId: String ) : AuthenticationMethod() public sealed class MfaAuthenticationMethod : AuthenticationMethod() {