@sniipwebmaster/user-service-client-grpcweb 22.14.8115 → 22.15.8146
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 +30 -1
- package/package.json +1 -1
|
@@ -35477,7 +35477,8 @@ proto.sniipuserservice.UserProfile.toObject = function(includeInstance, msg) {
|
|
|
35477
35477
|
hasgetstartedactivitiesundone: msg.getHasgetstartedactivitiesundone(),
|
|
35478
35478
|
dob: msg.getDob(),
|
|
35479
35479
|
requestedkyc: msg.getRequestedkyc(),
|
|
35480
|
-
legalfirstname: msg.getLegalfirstname()
|
|
35480
|
+
legalfirstname: msg.getLegalfirstname(),
|
|
35481
|
+
istestuser: msg.getIstestuser()
|
|
35481
35482
|
};
|
|
35482
35483
|
|
|
35483
35484
|
if (includeInstance) {
|
|
@@ -35604,6 +35605,10 @@ proto.sniipuserservice.UserProfile.deserializeBinaryFromReader = function(msg, r
|
|
|
35604
35605
|
var value = /** @type {string} */ (reader.readString());
|
|
35605
35606
|
msg.setLegalfirstname(value);
|
|
35606
35607
|
break;
|
|
35608
|
+
case 23:
|
|
35609
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
35610
|
+
msg.setIstestuser(value);
|
|
35611
|
+
break;
|
|
35607
35612
|
default:
|
|
35608
35613
|
reader.skipField();
|
|
35609
35614
|
break;
|
|
@@ -35797,6 +35802,13 @@ proto.sniipuserservice.UserProfile.prototype.serializeBinaryToWriter = function
|
|
|
35797
35802
|
f
|
|
35798
35803
|
);
|
|
35799
35804
|
}
|
|
35805
|
+
f = this.getIstestuser();
|
|
35806
|
+
if (f) {
|
|
35807
|
+
writer.writeBool(
|
|
35808
|
+
23,
|
|
35809
|
+
f
|
|
35810
|
+
);
|
|
35811
|
+
}
|
|
35800
35812
|
};
|
|
35801
35813
|
|
|
35802
35814
|
|
|
@@ -36161,6 +36173,23 @@ proto.sniipuserservice.UserProfile.prototype.setLegalfirstname = function(value)
|
|
|
36161
36173
|
};
|
|
36162
36174
|
|
|
36163
36175
|
|
|
36176
|
+
/**
|
|
36177
|
+
* optional bool isTestUser = 23;
|
|
36178
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
36179
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
36180
|
+
* @return {boolean}
|
|
36181
|
+
*/
|
|
36182
|
+
proto.sniipuserservice.UserProfile.prototype.getIstestuser = function() {
|
|
36183
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 23, false));
|
|
36184
|
+
};
|
|
36185
|
+
|
|
36186
|
+
|
|
36187
|
+
/** @param {boolean} value */
|
|
36188
|
+
proto.sniipuserservice.UserProfile.prototype.setIstestuser = function(value) {
|
|
36189
|
+
jspb.Message.setField(this, 23, value);
|
|
36190
|
+
};
|
|
36191
|
+
|
|
36192
|
+
|
|
36164
36193
|
|
|
36165
36194
|
/**
|
|
36166
36195
|
* Generated by JsPbCodeGenerator.
|