@sniipwebmaster/user-service-client-grpcweb 23.11.10549 → 23.11.10574
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/dependancies/service_pb.js +31 -1
- package/package.json +1 -1
|
@@ -43295,7 +43295,8 @@ proto.sniipuserservice.VerifyPhoneRequest.toObject = function(includeInstance, m
|
|
|
43295
43295
|
call: jspb.Message.getBooleanFieldWithDefault(msg, 2, false),
|
|
43296
43296
|
phonenumber: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
43297
43297
|
regioncode: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
43298
|
-
sociallogin: jspb.Message.getBooleanFieldWithDefault(msg, 5, false)
|
|
43298
|
+
sociallogin: jspb.Message.getBooleanFieldWithDefault(msg, 5, false),
|
|
43299
|
+
password: jspb.Message.getFieldWithDefault(msg, 6, "")
|
|
43299
43300
|
};
|
|
43300
43301
|
|
|
43301
43302
|
if (includeInstance) {
|
|
@@ -43352,6 +43353,10 @@ proto.sniipuserservice.VerifyPhoneRequest.deserializeBinaryFromReader = function
|
|
|
43352
43353
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
43353
43354
|
msg.setSociallogin(value);
|
|
43354
43355
|
break;
|
|
43356
|
+
case 6:
|
|
43357
|
+
var value = /** @type {string} */ (reader.readString());
|
|
43358
|
+
msg.setPassword(value);
|
|
43359
|
+
break;
|
|
43355
43360
|
default:
|
|
43356
43361
|
reader.skipField();
|
|
43357
43362
|
break;
|
|
@@ -43416,6 +43421,13 @@ proto.sniipuserservice.VerifyPhoneRequest.serializeBinaryToWriter = function(mes
|
|
|
43416
43421
|
f
|
|
43417
43422
|
);
|
|
43418
43423
|
}
|
|
43424
|
+
f = message.getPassword();
|
|
43425
|
+
if (f.length > 0) {
|
|
43426
|
+
writer.writeString(
|
|
43427
|
+
6,
|
|
43428
|
+
f
|
|
43429
|
+
);
|
|
43430
|
+
}
|
|
43419
43431
|
};
|
|
43420
43432
|
|
|
43421
43433
|
|
|
@@ -43509,6 +43521,24 @@ proto.sniipuserservice.VerifyPhoneRequest.prototype.setSociallogin = function(va
|
|
|
43509
43521
|
};
|
|
43510
43522
|
|
|
43511
43523
|
|
|
43524
|
+
/**
|
|
43525
|
+
* optional string password = 6;
|
|
43526
|
+
* @return {string}
|
|
43527
|
+
*/
|
|
43528
|
+
proto.sniipuserservice.VerifyPhoneRequest.prototype.getPassword = function() {
|
|
43529
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
43530
|
+
};
|
|
43531
|
+
|
|
43532
|
+
|
|
43533
|
+
/**
|
|
43534
|
+
* @param {string} value
|
|
43535
|
+
* @return {!proto.sniipuserservice.VerifyPhoneRequest} returns this
|
|
43536
|
+
*/
|
|
43537
|
+
proto.sniipuserservice.VerifyPhoneRequest.prototype.setPassword = function(value) {
|
|
43538
|
+
return jspb.Message.setProto3StringField(this, 6, value);
|
|
43539
|
+
};
|
|
43540
|
+
|
|
43541
|
+
|
|
43512
43542
|
|
|
43513
43543
|
|
|
43514
43544
|
|