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

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

Issue 2987103002: Api-Roll 52: 2017-07-31 (Closed)
Patch Set: Created 3 years, 5 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 a46d54df06b0a400e6d8b1cae896980bc99a12e1..69644ca427b18c23d19b254aab764cdcc9abef91 100644
--- a/generated/googleapis/lib/identitytoolkit/v3.dart
+++ b/generated/googleapis/lib/identitytoolkit/v3.dart
@@ -1282,6 +1282,8 @@ class IdentitytoolkitRelyingpartyGetAccountInfoRequest {
core.String idToken;
/** The list of local ID's of the users to inquiry. */
core.List<core.String> localId;
+ /** Privileged caller can query users by specified phone number. */
+ core.List<core.String> phoneNumber;
IdentitytoolkitRelyingpartyGetAccountInfoRequest();
@@ -1298,6 +1300,9 @@ class IdentitytoolkitRelyingpartyGetAccountInfoRequest {
if (_json.containsKey("localId")) {
localId = _json["localId"];
}
+ if (_json.containsKey("phoneNumber")) {
+ phoneNumber = _json["phoneNumber"];
+ }
}
core.Map<core.String, core.Object> toJson() {
@@ -1314,6 +1319,9 @@ class IdentitytoolkitRelyingpartyGetAccountInfoRequest {
if (localId != null) {
_json["localId"] = localId;
}
+ if (phoneNumber != null) {
+ _json["phoneNumber"] = phoneNumber;
+ }
return _json;
}
}
@@ -1547,6 +1555,8 @@ class IdentitytoolkitRelyingpartySetAccountInfoRequest {
core.String oobCode;
/** The new password of the user. */
core.String password;
+ /** Privileged caller can update user with specified phone number. */
+ core.String phoneNumber;
/** The photo url of the user. */
core.String photoUrl;
/** The associated IDPs of the user. */
@@ -1609,6 +1619,9 @@ class IdentitytoolkitRelyingpartySetAccountInfoRequest {
if (_json.containsKey("password")) {
password = _json["password"];
}
+ if (_json.containsKey("phoneNumber")) {
+ phoneNumber = _json["phoneNumber"];
+ }
if (_json.containsKey("photoUrl")) {
photoUrl = _json["photoUrl"];
}
@@ -1676,6 +1689,9 @@ class IdentitytoolkitRelyingpartySetAccountInfoRequest {
if (password != null) {
_json["password"] = password;
}
+ if (phoneNumber != null) {
+ _json["phoneNumber"] = phoneNumber;
+ }
if (photoUrl != null) {
_json["photoUrl"] = photoUrl;
}
@@ -1900,6 +1916,8 @@ class IdentitytoolkitRelyingpartySignupNewUserRequest {
core.String localId;
/** The new password of the user. */
core.String password;
+ /** Privileged caller can create user with specified phone number. */
+ core.String phoneNumber;
/** The photo url of the user. */
core.String photoUrl;
@@ -1936,6 +1954,9 @@ class IdentitytoolkitRelyingpartySignupNewUserRequest {
if (_json.containsKey("password")) {
password = _json["password"];
}
+ if (_json.containsKey("phoneNumber")) {
+ phoneNumber = _json["phoneNumber"];
+ }
if (_json.containsKey("photoUrl")) {
photoUrl = _json["photoUrl"];
}
@@ -1973,6 +1994,9 @@ class IdentitytoolkitRelyingpartySignupNewUserRequest {
if (password != null) {
_json["password"] = password;
}
+ if (phoneNumber != null) {
+ _json["phoneNumber"] = phoneNumber;
+ }
if (photoUrl != null) {
_json["photoUrl"] = photoUrl;
}
« 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