Regen docs (#364)
diff --git a/docs/dyn/identitytoolkit_v3.relyingparty.html b/docs/dyn/identitytoolkit_v3.relyingparty.html
index 03e9cbb..bd43282 100644
--- a/docs/dyn/identitytoolkit_v3.relyingparty.html
+++ b/docs/dyn/identitytoolkit_v3.relyingparty.html
@@ -84,6 +84,9 @@
<code><a href="#downloadAccount">downloadAccount(body)</a></code></p>
<p class="firstline">Batch download user accounts.</p>
<p class="toc_element">
+ <code><a href="#downloadAccount_next">downloadAccount_next(previous_request, previous_response)</a></code></p>
+<p class="firstline">Retrieves the next page of results.</p>
+<p class="toc_element">
<code><a href="#getAccountInfo">getAccountInfo(body)</a></code></p>
<p class="firstline">Returns the account info.</p>
<p class="toc_element">
@@ -213,7 +216,7 @@
Returns:
An object of the form:
- { # Respone of downloading accounts in batch.
+ { # Response of downloading accounts in batch.
"nextPageToken": "A String", # The next page token. To be used in a subsequent request to return the next page of results.
"kind": "identitytoolkit#DownloadAccountResponse", # The fixed string "identitytoolkit#DownloadAccountResponse".
"users": [ # The user accounts data.
@@ -251,6 +254,20 @@
</div>
<div class="method">
+ <code class="details" id="downloadAccount_next">downloadAccount_next(previous_request, previous_response)</code>
+ <pre>Retrieves the next page of results.
+
+Args:
+ previous_request: The request for the previous page. (required)
+ previous_response: The response from the request for the previous page. (required)
+
+Returns:
+ A request object that you can call 'execute()' on to request the next
+ page. Returns None if there are no more items in the collection.
+ </pre>
+</div>
+
+<div class="method">
<code class="details" id="getAccountInfo">getAccountInfo(body)</code>
<pre>Returns the account info.
@@ -512,9 +529,10 @@
"displayName": "A String", # The name of the user.
"localId": "A String", # The local ID of the user.
"photoUrl": "A String", # The photo url of the user.
- "idToken": "A String", # The Gitkit id token to login the newly sign up user.
+ "emailVerified": True or False, # If email has been verified.
"passwordHash": "A String", # The user's hashed password.
"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.
"refreshToken": "A String", # If idToken is STS id token, then this field will be refresh token.
"providerUserInfo": [ # The user's profiles at the associated IdPs.
{
@@ -633,6 +651,7 @@
{ # Request to signup new user, create anonymous user or anonymous user reauth.
"instanceId": "A String", # Instance id token of the app.
"displayName": "A String", # The name of the user.
+ "localId": "A String", # Privileged caller can create user with specified user id.
"photoUrl": "A String", # The photo url of the user.
"captchaResponse": "A String", # Response to the captcha.
"emailVerified": True or False, # Mark the email as verified or not. Only can be used by service account.
@@ -753,6 +772,7 @@
"federatedId": "A String", # The unique ID identifies the IdP account.
"localId": "A String", # The RP local ID if it's already been mapped to the IdP account identified by the federated ID.
"photoUrl": "A String", # The URI of the public accessible profiel picture.
+ "isNewUser": True or False, # True if it's a new user sign-in, false if it's a returning user.
"inputEmail": "A String", # It's the identifier param in the createAuthUri request if the identifier is an email. It can be used to check whether the user input email is different from the asserted email.
"rawUserInfo": "A String", # Raw IDP-returned user info.
"appScheme": "A String", # The custom scheme used by mobile app.