Index: generated/googleapis/lib/identitytoolkit/v3.dart |
diff --git a/generated/googleapis/lib/identitytoolkit/v3.dart b/generated/googleapis/lib/identitytoolkit/v3.dart |
index f132eefe670b213743400d42cf33d53f72443542..caca776f53af4949ea0078a1dc9737afea1a27b4 100644 |
--- a/generated/googleapis/lib/identitytoolkit/v3.dart |
+++ b/generated/googleapis/lib/identitytoolkit/v3.dart |
@@ -21,7 +21,7 @@ class IdentitytoolkitApi { |
RelyingpartyResourceApi get relyingparty => new RelyingpartyResourceApi(_requester); |
IdentitytoolkitApi(http.Client client) : |
- _requester = new common_internal.ApiRequester(client, "https://www.googleapis.com/", "/identitytoolkit/v3/relyingparty/"); |
+ _requester = new common_internal.ApiRequester(client, "https://www.googleapis.com/", "identitytoolkit/v3/relyingparty/"); |
} |
@@ -268,7 +268,7 @@ class RelyingpartyResourceApi { |
} |
/** |
- * Set account info for a user. |
+ * Reset password for a user. |
* |
* [request] - The metadata request object. |
* |
@@ -476,6 +476,9 @@ class CreateAuthUriResponse { |
/** The URI used by the IDP to authenticate the user. */ |
core.String authUri; |
+ /** True if captcha is required. */ |
+ core.bool captchaRequired; |
+ |
/** True if the authUri is for user's existing provider. */ |
core.bool forExistingProvider; |
@@ -495,6 +498,9 @@ class CreateAuthUriResponse { |
if (_json.containsKey("authUri")) { |
authUri = _json["authUri"]; |
} |
+ if (_json.containsKey("captchaRequired")) { |
+ captchaRequired = _json["captchaRequired"]; |
+ } |
if (_json.containsKey("forExistingProvider")) { |
forExistingProvider = _json["forExistingProvider"]; |
} |
@@ -514,6 +520,9 @@ class CreateAuthUriResponse { |
if (authUri != null) { |
_json["authUri"] = authUri; |
} |
+ if (captchaRequired != null) { |
+ _json["captchaRequired"] = captchaRequired; |
+ } |
if (forExistingProvider != null) { |
_json["forExistingProvider"] = forExistingProvider; |
} |