Add Google sign in credential to protobufs

This commit is contained in:
Nick Botticelli 2021-09-21 01:18:58 -07:00
parent f99f336a6a
commit 69c2ad1387
2 changed files with 6 additions and 0 deletions

View file

@ -46,3 +46,8 @@ message SamsungSignInCredential {
string id_token = 3; string id_token = 3;
string token_endpoint_url = 4; string token_endpoint_url = 4;
} }
message GoogleSignInCredential {
string auth_code = 1;
string redirect_uri = 2;
}

View file

@ -52,6 +52,7 @@ message LoginRequest {
credentials.ParentChildCredential parent_child_credential = 105; credentials.ParentChildCredential parent_child_credential = 105;
credentials.AppleSignInCredential apple_sign_in_credential = 106; credentials.AppleSignInCredential apple_sign_in_credential = 106;
credentials.SamsungSignInCredential samsung_sign_in_credential = 107; credentials.SamsungSignInCredential samsung_sign_in_credential = 107;
credentials.GoogleSignInCredential google_sign_in_credential = 108;
} }
} }