@sniipwebmaster/user-service-client-grpcweb 24.12.11474 → 24.12.11484
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 +49 -1
- package/package.json +1 -1
|
@@ -45281,7 +45281,8 @@ proto.sniipuserservice.VerifyPhoneRequest.toObject = function(includeInstance, m
|
|
|
45281
45281
|
phonenumber: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
45282
45282
|
regioncode: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
45283
45283
|
sociallogin: jspb.Message.getBooleanFieldWithDefault(msg, 5, false),
|
|
45284
|
-
password: jspb.Message.getFieldWithDefault(msg, 6, "")
|
|
45284
|
+
password: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
45285
|
+
appaccounttype: jspb.Message.getFieldWithDefault(msg, 7, 0)
|
|
45285
45286
|
};
|
|
45286
45287
|
|
|
45287
45288
|
if (includeInstance) {
|
|
@@ -45342,6 +45343,10 @@ proto.sniipuserservice.VerifyPhoneRequest.deserializeBinaryFromReader = function
|
|
|
45342
45343
|
var value = /** @type {string} */ (reader.readString());
|
|
45343
45344
|
msg.setPassword(value);
|
|
45344
45345
|
break;
|
|
45346
|
+
case 7:
|
|
45347
|
+
var value = /** @type {!proto.sniipuserservice.AppAccountType} */ (reader.readEnum());
|
|
45348
|
+
msg.setAppaccounttype(value);
|
|
45349
|
+
break;
|
|
45345
45350
|
default:
|
|
45346
45351
|
reader.skipField();
|
|
45347
45352
|
break;
|
|
@@ -45413,6 +45418,13 @@ proto.sniipuserservice.VerifyPhoneRequest.serializeBinaryToWriter = function(mes
|
|
|
45413
45418
|
f
|
|
45414
45419
|
);
|
|
45415
45420
|
}
|
|
45421
|
+
f = /** @type {!proto.sniipuserservice.AppAccountType} */ (jspb.Message.getField(message, 7));
|
|
45422
|
+
if (f != null) {
|
|
45423
|
+
writer.writeEnum(
|
|
45424
|
+
7,
|
|
45425
|
+
f
|
|
45426
|
+
);
|
|
45427
|
+
}
|
|
45416
45428
|
};
|
|
45417
45429
|
|
|
45418
45430
|
|
|
@@ -45524,6 +45536,42 @@ proto.sniipuserservice.VerifyPhoneRequest.prototype.setPassword = function(value
|
|
|
45524
45536
|
};
|
|
45525
45537
|
|
|
45526
45538
|
|
|
45539
|
+
/**
|
|
45540
|
+
* optional AppAccountType appAccountType = 7;
|
|
45541
|
+
* @return {!proto.sniipuserservice.AppAccountType}
|
|
45542
|
+
*/
|
|
45543
|
+
proto.sniipuserservice.VerifyPhoneRequest.prototype.getAppaccounttype = function() {
|
|
45544
|
+
return /** @type {!proto.sniipuserservice.AppAccountType} */ (jspb.Message.getFieldWithDefault(this, 7, 0));
|
|
45545
|
+
};
|
|
45546
|
+
|
|
45547
|
+
|
|
45548
|
+
/**
|
|
45549
|
+
* @param {!proto.sniipuserservice.AppAccountType} value
|
|
45550
|
+
* @return {!proto.sniipuserservice.VerifyPhoneRequest} returns this
|
|
45551
|
+
*/
|
|
45552
|
+
proto.sniipuserservice.VerifyPhoneRequest.prototype.setAppaccounttype = function(value) {
|
|
45553
|
+
return jspb.Message.setField(this, 7, value);
|
|
45554
|
+
};
|
|
45555
|
+
|
|
45556
|
+
|
|
45557
|
+
/**
|
|
45558
|
+
* Clears the field making it undefined.
|
|
45559
|
+
* @return {!proto.sniipuserservice.VerifyPhoneRequest} returns this
|
|
45560
|
+
*/
|
|
45561
|
+
proto.sniipuserservice.VerifyPhoneRequest.prototype.clearAppaccounttype = function() {
|
|
45562
|
+
return jspb.Message.setField(this, 7, undefined);
|
|
45563
|
+
};
|
|
45564
|
+
|
|
45565
|
+
|
|
45566
|
+
/**
|
|
45567
|
+
* Returns whether this field is set.
|
|
45568
|
+
* @return {boolean}
|
|
45569
|
+
*/
|
|
45570
|
+
proto.sniipuserservice.VerifyPhoneRequest.prototype.hasAppaccounttype = function() {
|
|
45571
|
+
return jspb.Message.getField(this, 7) != null;
|
|
45572
|
+
};
|
|
45573
|
+
|
|
45574
|
+
|
|
45527
45575
|
|
|
45528
45576
|
|
|
45529
45577
|
|