Regen docs (#373)
diff --git a/docs/dyn/identitytoolkit_v3.relyingparty.html b/docs/dyn/identitytoolkit_v3.relyingparty.html
index bd43282..4524ab2 100644
--- a/docs/dyn/identitytoolkit_v3.relyingparty.html
+++ b/docs/dyn/identitytoolkit_v3.relyingparty.html
@@ -335,13 +335,20 @@
The object takes the form of:
{ # Request of getting a code for user confirmation (reset password, change email etc.)
+ "canHandleCodeInApp": True or False, # whether or not the app can handle the oob code without first going to web
"kind": "identitytoolkit#relyingparty", # The fixed string "identitytoolkit#relyingparty".
- "requestType": "A String", # The request type.
+ "iOSBundleId": "A String", # the iOS bundle id of iOS app to handle the action code
+ "androidMinimumVersion": "A String", # minimum version of the app. if the version on the device is lower than this version then the user is taken to the play store to upgrade the app
+ "newEmail": "A String", # The new email if the code is for email change.
+ "androidPackageName": "A String", # android package name of the android app to handle the action code
"idToken": "A String", # The user's Gitkit login token for email change.
"challenge": "A String", # The recaptcha challenge presented to the user.
- "newEmail": "A String", # The new email if the code is for email change.
- "userIp": "A String", # The IP address of the user.
+ "iOSAppStoreId": "A String", # iOS app store id to download the app if it's not already installed
"email": "A String", # The email of the user.
+ "requestType": "A String", # The request type.
+ "androidInstallApp": True or False, # whether or not to install the android app on the device where the link is opened
+ "userIp": "A String", # The IP address of the user.
+ "continueUrl": "A String", # The url to continue to the Gitkit app
"captchaResp": "A String", # The recaptcha response from the user.
}
@@ -760,6 +767,7 @@
"sessionId": "A String", # Session ID, which should match the one in previous createAuthUri request.
"requestUri": "A String", # The URI to which the IDP redirects the user back. It may contain federated login result params added by the IDP.
"returnSecureToken": True or False, # Whether return sts id token and refresh token instead of gitkit token.
+ "autoCreate": True or False, # When it's true, automatically creates a new account if the user doesn't exist. When it's false, allows existing user to sign in normally and throws exception if the user doesn't exist.
"returnRefreshToken": True or False, # Whether to return refresh tokens.
"returnIdpCredential": True or False, # Whether return 200 and IDP credential rather than throw exception when federated id is already linked.
}