Update docs for 1.4.2 release
diff --git a/docs/dyn/identitytoolkit_v3.relyingparty.html b/docs/dyn/identitytoolkit_v3.relyingparty.html
index c829479..b5325ea 100644
--- a/docs/dyn/identitytoolkit_v3.relyingparty.html
+++ b/docs/dyn/identitytoolkit_v3.relyingparty.html
@@ -378,10 +378,10 @@
   An object of the form:
 
     { # Respone of setting the account information.
-    "idToken": "A String", # The Gitkit id token to login the newly sign up user.
     "kind": "identitytoolkit#SetAccountInfoResponse", # The fixed string "identitytoolkit#SetAccountInfoResponse".
     "displayName": "A String", # The name of the user.
-    "email": "A String", # The email of the user.
+    "newEmail": "A String", # The new email the user attempts to change to.
+    "idToken": "A String", # The Gitkit id token to login the newly sign up user.
     "providerUserInfo": [ # The user's profiles at the associated IdPs.
       {
         "providerId": "A String", # The IdP ID. For whitelisted IdPs it's a short domain name, e.g., google.com, aol.com, live.net and yahoo.com. For other OpenID IdPs it's the OP identifier.
@@ -389,6 +389,7 @@
         "photoUrl": "A String", # The user's photo url at the IDP.
       },
     ],
+    "email": "A String", # The email of the user.
   }</pre>
 </div>
 
@@ -525,9 +526,12 @@
     "kind": "identitytoolkit#VerifyPasswordResponse", # The fixed string "identitytoolkit#VerifyPasswordResponse".
     "displayName": "A String", # The name of the user.
     "localId": "A String", # The RP local ID if it's already been mapped to the IdP account identified by the federated ID.
+    "oauthAccessToken": "A String", # The OAuth2 access token.
     "photoUrl": "A String", # The URI of the user's photo at IdP
+    "oauthExpireIn": 42, # The lifetime in seconds of the OAuth2 access token.
     "idToken": "A String", # The GITKit token for authenticated user.
     "registered": True or False, # Whether the email is registered.
+    "oauthAuthorizationCode": "A String", # The OAuth2 authorization code.
     "email": "A String", # The email returned by the IdP. NOTE: The federated login user may not own the email.
   }</pre>
 </div>