protobuf-platform 1.1.98 → 1.1.99
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/user/user.proto +1 -1
- package/user/user_pb.js +13 -13
package/package.json
CHANGED
package/user/user.proto
CHANGED
package/user/user_pb.js
CHANGED
@@ -25385,7 +25385,7 @@ proto.user.ResetPasswordConfirmationRequest.prototype.toObject = function(opt_in
|
|
25385
25385
|
*/
|
25386
25386
|
proto.user.ResetPasswordConfirmationRequest.toObject = function(includeInstance, msg) {
|
25387
25387
|
var f, obj = {
|
25388
|
-
|
25388
|
+
userEmail: jspb.Message.getFieldWithDefault(msg, 1, "")
|
25389
25389
|
};
|
25390
25390
|
|
25391
25391
|
if (includeInstance) {
|
@@ -25423,8 +25423,8 @@ proto.user.ResetPasswordConfirmationRequest.deserializeBinaryFromReader = functi
|
|
25423
25423
|
var field = reader.getFieldNumber();
|
25424
25424
|
switch (field) {
|
25425
25425
|
case 1:
|
25426
|
-
var value = /** @type {
|
25427
|
-
msg.
|
25426
|
+
var value = /** @type {string} */ (reader.readString());
|
25427
|
+
msg.setUserEmail(value);
|
25428
25428
|
break;
|
25429
25429
|
default:
|
25430
25430
|
reader.skipField();
|
@@ -25455,9 +25455,9 @@ proto.user.ResetPasswordConfirmationRequest.prototype.serializeBinary = function
|
|
25455
25455
|
*/
|
25456
25456
|
proto.user.ResetPasswordConfirmationRequest.serializeBinaryToWriter = function(message, writer) {
|
25457
25457
|
var f = undefined;
|
25458
|
-
f = message.
|
25459
|
-
if (f
|
25460
|
-
writer.
|
25458
|
+
f = message.getUserEmail();
|
25459
|
+
if (f.length > 0) {
|
25460
|
+
writer.writeString(
|
25461
25461
|
1,
|
25462
25462
|
f
|
25463
25463
|
);
|
@@ -25466,20 +25466,20 @@ proto.user.ResetPasswordConfirmationRequest.serializeBinaryToWriter = function(m
|
|
25466
25466
|
|
25467
25467
|
|
25468
25468
|
/**
|
25469
|
-
* optional
|
25470
|
-
* @return {
|
25469
|
+
* optional string user_email = 1;
|
25470
|
+
* @return {string}
|
25471
25471
|
*/
|
25472
|
-
proto.user.ResetPasswordConfirmationRequest.prototype.
|
25473
|
-
return /** @type {
|
25472
|
+
proto.user.ResetPasswordConfirmationRequest.prototype.getUserEmail = function() {
|
25473
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
25474
25474
|
};
|
25475
25475
|
|
25476
25476
|
|
25477
25477
|
/**
|
25478
|
-
* @param {
|
25478
|
+
* @param {string} value
|
25479
25479
|
* @return {!proto.user.ResetPasswordConfirmationRequest} returns this
|
25480
25480
|
*/
|
25481
|
-
proto.user.ResetPasswordConfirmationRequest.prototype.
|
25482
|
-
return jspb.Message.
|
25481
|
+
proto.user.ResetPasswordConfirmationRequest.prototype.setUserEmail = function(value) {
|
25482
|
+
return jspb.Message.setProto3StringField(this, 1, value);
|
25483
25483
|
};
|
25484
25484
|
|
25485
25485
|
|