Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Unified Diff: generated/googleapis/lib/identitytoolkit/v3.dart

Issue 2695743002: Api-roll 45: 2017-02-13 (Closed)
Patch Set: reverted local changes to pubspec file Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « generated/googleapis/lib/iam/v1.dart ('k') | generated/googleapis/lib/kgsearch/v1.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/identitytoolkit/v3.dart
diff --git a/generated/googleapis/lib/identitytoolkit/v3.dart b/generated/googleapis/lib/identitytoolkit/v3.dart
index 78166cde85048b2f9f4389e4def74e55b3cc6e1f..3d03e844a71aa33b367217d4275ef3bb1f5e3180 100644
--- a/generated/googleapis/lib/identitytoolkit/v3.dart
+++ b/generated/googleapis/lib/identitytoolkit/v3.dart
@@ -803,7 +803,7 @@ class DeleteAccountResponse {
}
}
-/** Respone of downloading accounts in batch. */
+/** Response of downloading accounts in batch. */
class DownloadAccountResponse {
/** The fixed string "identitytoolkit#DownloadAccountResponse". */
core.String kind;
@@ -1896,6 +1896,8 @@ class IdentitytoolkitRelyingpartySignupNewUserRequest {
core.String idToken;
/** Instance id token of the app. */
core.String instanceId;
+ /** Privileged caller can create user with specified user id. */
+ core.String localId;
/** The new password of the user. */
core.String password;
/** The photo url of the user. */
@@ -1928,6 +1930,9 @@ class IdentitytoolkitRelyingpartySignupNewUserRequest {
if (_json.containsKey("instanceId")) {
instanceId = _json["instanceId"];
}
+ if (_json.containsKey("localId")) {
+ localId = _json["localId"];
+ }
if (_json.containsKey("password")) {
password = _json["password"];
}
@@ -1962,6 +1967,9 @@ class IdentitytoolkitRelyingpartySignupNewUserRequest {
if (instanceId != null) {
_json["instanceId"] = instanceId;
}
+ if (localId != null) {
+ _json["localId"] = localId;
+ }
if (password != null) {
_json["password"] = password;
}
@@ -2588,6 +2596,8 @@ class SetAccountInfoResponse {
core.String displayName;
/** The email of the user. */
core.String email;
+ /** If email has been verified. */
+ core.bool emailVerified;
/**
* If idToken is STS id token, then this field will be expiration time of STS
* id token in seconds.
@@ -2626,6 +2636,9 @@ class SetAccountInfoResponse {
if (_json.containsKey("email")) {
email = _json["email"];
}
+ if (_json.containsKey("emailVerified")) {
+ emailVerified = _json["emailVerified"];
+ }
if (_json.containsKey("expiresIn")) {
expiresIn = _json["expiresIn"];
}
@@ -2663,6 +2676,9 @@ class SetAccountInfoResponse {
if (email != null) {
_json["email"] = email;
}
+ if (emailVerified != null) {
+ _json["emailVerified"] = emailVerified;
+ }
if (expiresIn != null) {
_json["expiresIn"] = expiresIn;
}
@@ -3116,6 +3132,8 @@ class VerifyAssertionResponse {
* from the asserted email.
*/
core.String inputEmail;
+ /** True if it's a new user sign-in, false if it's a returning user. */
+ core.bool isNewUser;
/** The fixed string "identitytoolkit#VerifyAssertionResponse". */
core.String kind;
/** The language preference of the user. */
@@ -3231,6 +3249,9 @@ class VerifyAssertionResponse {
if (_json.containsKey("inputEmail")) {
inputEmail = _json["inputEmail"];
}
+ if (_json.containsKey("isNewUser")) {
+ isNewUser = _json["isNewUser"];
+ }
if (_json.containsKey("kind")) {
kind = _json["kind"];
}
@@ -3349,6 +3370,9 @@ class VerifyAssertionResponse {
if (inputEmail != null) {
_json["inputEmail"] = inputEmail;
}
+ if (isNewUser != null) {
+ _json["isNewUser"] = isNewUser;
+ }
if (kind != null) {
_json["kind"] = kind;
}
« no previous file with comments | « generated/googleapis/lib/iam/v1.dart ('k') | generated/googleapis/lib/kgsearch/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698