File tree Expand file tree Collapse file tree 5 files changed +8
-4
lines changed
src/main/java/com/authsignal Expand file tree Collapse file tree 5 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Check out our [official Java SDK documentation](https://docs.authsignal.com/sdks
1515Add this dependency to your project's build file:
1616
1717``` groovy
18- implementation 'com.authsignal:authsignal-java:2.9 .1'
18+ implementation 'com.authsignal:authsignal-java:2.10 .1'
1919```
2020
2121### Maven users
@@ -26,7 +26,7 @@ Add this dependency to your project's POM:
2626<dependency >
2727 <groupId >com.authsignal</groupId >
2828 <artifactId >authsignal-java</artifactId >
29- <version >2.9 .1</version >
29+ <version >2.10 .1</version >
3030</dependency >
3131```
3232
Original file line number Diff line number Diff line change 1- version =2.9 .1
1+ version =2.10 .1
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ public class AuthsignalClient {
2727
2828 private static final String DEFAULT_API_URL = "https://api.authsignal.com/v1" ;
2929 private static final int DEFAULT_RETRIES = 2 ;
30- private static final String VERSION = "2.9 .1" ;
30+ private static final String VERSION = "2.10 .1" ;
3131
3232 public Webhook webhook ;
3333
Original file line number Diff line number Diff line change @@ -14,4 +14,7 @@ public class TrackAttributes extends ApiModel {
1414 public String scope ;
1515 public Boolean redirectToSettings ;
1616 public Map <String , Object > custom ;
17+ public String locale ;
18+ public String challengeId ;
19+ public String customDomain ;
1720}
Original file line number Diff line number Diff line change @@ -9,4 +9,5 @@ public class TrackResponse extends ApiModel {
99 public VerificationMethodType [] allowedVerificationMethods ;
1010 public VerificationMethodType [] enrolledVerificationMethods ;
1111 public VerificationMethodType defaultVerificationMethod ;
12+ public String [] ruleIds ;
1213}
You can’t perform that action at this time.
0 commit comments