File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
firebase-auth-rest/core/src/main/java/com/anotherdev/firebase/auth/rest/api Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 44import com .anotherdev .firebase .auth .UserProfileChangeRequest ;
55import com .anotherdev .firebase .auth .UserProfileChangeResponse ;
66import com .anotherdev .firebase .auth .rest .api .model .GetAccountInfoRequest ;
7+ import com .anotherdev .firebase .auth .rest .api .model .GetAccountInfoResponse ;
78import com .anotherdev .firebase .auth .rest .api .model .SendPasswordResetEmailRequest ;
89import com .anotherdev .firebase .auth .rest .api .model .SendPasswordResetEmailResponse ;
910import com .anotherdev .firebase .auth .rest .api .model .SignInRequest ;
1011import com .anotherdev .firebase .auth .rest .api .model .SignInWithCustomTokenRequest ;
1112import com .anotherdev .firebase .auth .rest .api .model .SignInWithEmailPasswordRequest ;
1213import com .anotherdev .firebase .auth .rest .api .model .SignInWithIdpRequest ;
1314import com .anotherdev .firebase .auth .rest .api .model .UserPasswordChangeRequest ;
14- import com .google .gson .JsonObject ;
1515
1616import io .reactivex .rxjava3 .core .Single ;
1717import retrofit2 .http .Body ;
@@ -42,7 +42,7 @@ public interface IdentityToolkitApi {
4242 Single <SendPasswordResetEmailResponse > sendPasswordResetEmail (@ Body SendPasswordResetEmailRequest request );
4343
4444 @ POST ("v1/accounts:lookup" )
45- Single <JsonObject > getAccounts (@ Body GetAccountInfoRequest request );
45+ Single <GetAccountInfoResponse > getAccounts (@ Body GetAccountInfoRequest request );
4646
4747 @ POST ("v1/accounts:update" )
4848 Single <UserProfileChangeResponse > updateProfile (@ Body UserProfileChangeRequest request );
You can’t perform that action at this time.
0 commit comments