@sniipwebmaster/user-service-client-grpcweb 22.1.6603 → 22.1.6623
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 +60 -2
- package/package.json +1 -1
|
@@ -15346,7 +15346,8 @@ proto.sniipuserservice.KycUser.toObject = function(includeInstance, msg) {
|
|
|
15346
15346
|
userfraudstatus: msg.getUserfraudstatus(),
|
|
15347
15347
|
hasphotoiduploaded: msg.getHasphotoiduploaded(),
|
|
15348
15348
|
haspaymentmethoduploaded: msg.getHaspaymentmethoduploaded(),
|
|
15349
|
-
attachmentsList: jspb.Message.getField(msg, 12)
|
|
15349
|
+
attachmentsList: jspb.Message.getField(msg, 12),
|
|
15350
|
+
hasbeenrequested: msg.getHasbeenrequested()
|
|
15350
15351
|
};
|
|
15351
15352
|
|
|
15352
15353
|
if (includeInstance) {
|
|
@@ -15432,6 +15433,10 @@ proto.sniipuserservice.KycUser.deserializeBinaryFromReader = function(msg, reade
|
|
|
15432
15433
|
msg.getAttachmentsList().push(value);
|
|
15433
15434
|
msg.setAttachmentsList(msg.getAttachmentsList());
|
|
15434
15435
|
break;
|
|
15436
|
+
case 13:
|
|
15437
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
15438
|
+
msg.setHasbeenrequested(value);
|
|
15439
|
+
break;
|
|
15435
15440
|
default:
|
|
15436
15441
|
reader.skipField();
|
|
15437
15442
|
break;
|
|
@@ -15554,6 +15559,13 @@ proto.sniipuserservice.KycUser.prototype.serializeBinaryToWriter = function (wri
|
|
|
15554
15559
|
f
|
|
15555
15560
|
);
|
|
15556
15561
|
}
|
|
15562
|
+
f = this.getHasbeenrequested();
|
|
15563
|
+
if (f) {
|
|
15564
|
+
writer.writeBool(
|
|
15565
|
+
13,
|
|
15566
|
+
f
|
|
15567
|
+
);
|
|
15568
|
+
}
|
|
15557
15569
|
};
|
|
15558
15570
|
|
|
15559
15571
|
|
|
@@ -15757,6 +15769,23 @@ proto.sniipuserservice.KycUser.prototype.clearAttachmentsList = function() {
|
|
|
15757
15769
|
};
|
|
15758
15770
|
|
|
15759
15771
|
|
|
15772
|
+
/**
|
|
15773
|
+
* optional bool hasBeenRequested = 13;
|
|
15774
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
15775
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
15776
|
+
* @return {boolean}
|
|
15777
|
+
*/
|
|
15778
|
+
proto.sniipuserservice.KycUser.prototype.getHasbeenrequested = function() {
|
|
15779
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 13, false));
|
|
15780
|
+
};
|
|
15781
|
+
|
|
15782
|
+
|
|
15783
|
+
/** @param {boolean} value */
|
|
15784
|
+
proto.sniipuserservice.KycUser.prototype.setHasbeenrequested = function(value) {
|
|
15785
|
+
jspb.Message.setField(this, 13, value);
|
|
15786
|
+
};
|
|
15787
|
+
|
|
15788
|
+
|
|
15760
15789
|
|
|
15761
15790
|
/**
|
|
15762
15791
|
* Generated by JsPbCodeGenerator.
|
|
@@ -33165,7 +33194,8 @@ proto.sniipuserservice.UserProfile.toObject = function(includeInstance, msg) {
|
|
|
33165
33194
|
isdeleted: msg.getIsdeleted(),
|
|
33166
33195
|
kycuserstatus: msg.getKycuserstatus(),
|
|
33167
33196
|
hasgetstartedactivitiesundone: msg.getHasgetstartedactivitiesundone(),
|
|
33168
|
-
dob: msg.getDob()
|
|
33197
|
+
dob: msg.getDob(),
|
|
33198
|
+
requestedkyc: msg.getRequestedkyc()
|
|
33169
33199
|
};
|
|
33170
33200
|
|
|
33171
33201
|
if (includeInstance) {
|
|
@@ -33284,6 +33314,10 @@ proto.sniipuserservice.UserProfile.deserializeBinaryFromReader = function(msg, r
|
|
|
33284
33314
|
var value = /** @type {string} */ (reader.readString());
|
|
33285
33315
|
msg.setDob(value);
|
|
33286
33316
|
break;
|
|
33317
|
+
case 21:
|
|
33318
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
33319
|
+
msg.setRequestedkyc(value);
|
|
33320
|
+
break;
|
|
33287
33321
|
default:
|
|
33288
33322
|
reader.skipField();
|
|
33289
33323
|
break;
|
|
@@ -33463,6 +33497,13 @@ proto.sniipuserservice.UserProfile.prototype.serializeBinaryToWriter = function
|
|
|
33463
33497
|
f
|
|
33464
33498
|
);
|
|
33465
33499
|
}
|
|
33500
|
+
f = this.getRequestedkyc();
|
|
33501
|
+
if (f) {
|
|
33502
|
+
writer.writeBool(
|
|
33503
|
+
21,
|
|
33504
|
+
f
|
|
33505
|
+
);
|
|
33506
|
+
}
|
|
33466
33507
|
};
|
|
33467
33508
|
|
|
33468
33509
|
|
|
@@ -33795,6 +33836,23 @@ proto.sniipuserservice.UserProfile.prototype.setDob = function(value) {
|
|
|
33795
33836
|
};
|
|
33796
33837
|
|
|
33797
33838
|
|
|
33839
|
+
/**
|
|
33840
|
+
* optional bool requestedKyc = 21;
|
|
33841
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
33842
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
33843
|
+
* @return {boolean}
|
|
33844
|
+
*/
|
|
33845
|
+
proto.sniipuserservice.UserProfile.prototype.getRequestedkyc = function() {
|
|
33846
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 21, false));
|
|
33847
|
+
};
|
|
33848
|
+
|
|
33849
|
+
|
|
33850
|
+
/** @param {boolean} value */
|
|
33851
|
+
proto.sniipuserservice.UserProfile.prototype.setRequestedkyc = function(value) {
|
|
33852
|
+
jspb.Message.setField(this, 21, value);
|
|
33853
|
+
};
|
|
33854
|
+
|
|
33855
|
+
|
|
33798
33856
|
|
|
33799
33857
|
/**
|
|
33800
33858
|
* Generated by JsPbCodeGenerator.
|