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; |
} |