@sniipwebmaster/user-service-client-grpcweb 22.2.6713 → 22.2.6733
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 +28 -1
- package/package.json +1 -1
|
@@ -15347,7 +15347,8 @@ proto.sniipuserservice.KycUser.toObject = function(includeInstance, msg) {
|
|
|
15347
15347
|
hasphotoiduploaded: msg.getHasphotoiduploaded(),
|
|
15348
15348
|
haspaymentmethoduploaded: msg.getHaspaymentmethoduploaded(),
|
|
15349
15349
|
attachmentsList: jspb.Message.getField(msg, 12),
|
|
15350
|
-
hasbeenrequested: msg.getHasbeenrequested()
|
|
15350
|
+
hasbeenrequested: msg.getHasbeenrequested(),
|
|
15351
|
+
dob: msg.getDob()
|
|
15351
15352
|
};
|
|
15352
15353
|
|
|
15353
15354
|
if (includeInstance) {
|
|
@@ -15437,6 +15438,10 @@ proto.sniipuserservice.KycUser.deserializeBinaryFromReader = function(msg, reade
|
|
|
15437
15438
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
15438
15439
|
msg.setHasbeenrequested(value);
|
|
15439
15440
|
break;
|
|
15441
|
+
case 14:
|
|
15442
|
+
var value = /** @type {string} */ (reader.readString());
|
|
15443
|
+
msg.setDob(value);
|
|
15444
|
+
break;
|
|
15440
15445
|
default:
|
|
15441
15446
|
reader.skipField();
|
|
15442
15447
|
break;
|
|
@@ -15566,6 +15571,13 @@ proto.sniipuserservice.KycUser.prototype.serializeBinaryToWriter = function (wri
|
|
|
15566
15571
|
f
|
|
15567
15572
|
);
|
|
15568
15573
|
}
|
|
15574
|
+
f = this.getDob();
|
|
15575
|
+
if (f.length > 0) {
|
|
15576
|
+
writer.writeString(
|
|
15577
|
+
14,
|
|
15578
|
+
f
|
|
15579
|
+
);
|
|
15580
|
+
}
|
|
15569
15581
|
};
|
|
15570
15582
|
|
|
15571
15583
|
|
|
@@ -15786,6 +15798,21 @@ proto.sniipuserservice.KycUser.prototype.setHasbeenrequested = function(value) {
|
|
|
15786
15798
|
};
|
|
15787
15799
|
|
|
15788
15800
|
|
|
15801
|
+
/**
|
|
15802
|
+
* optional string dob = 14;
|
|
15803
|
+
* @return {string}
|
|
15804
|
+
*/
|
|
15805
|
+
proto.sniipuserservice.KycUser.prototype.getDob = function() {
|
|
15806
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 14, ""));
|
|
15807
|
+
};
|
|
15808
|
+
|
|
15809
|
+
|
|
15810
|
+
/** @param {string} value */
|
|
15811
|
+
proto.sniipuserservice.KycUser.prototype.setDob = function(value) {
|
|
15812
|
+
jspb.Message.setField(this, 14, value);
|
|
15813
|
+
};
|
|
15814
|
+
|
|
15815
|
+
|
|
15789
15816
|
|
|
15790
15817
|
/**
|
|
15791
15818
|
* Generated by JsPbCodeGenerator.
|