@sniipwebmaster/user-service-client-grpcweb 21.8.4644 → 21.8.4663
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 +59 -1
- package/package.json +1 -1
|
@@ -12008,7 +12008,9 @@ proto.sniipuserservice.KycUser.toObject = function(includeInstance, msg) {
|
|
|
12008
12008
|
phone: msg.getPhone(),
|
|
12009
12009
|
bucketurl: msg.getBucketurl(),
|
|
12010
12010
|
kycstatus: msg.getKycstatus(),
|
|
12011
|
-
userfraudstatus: msg.getUserfraudstatus()
|
|
12011
|
+
userfraudstatus: msg.getUserfraudstatus(),
|
|
12012
|
+
hasphotoiduploaded: msg.getHasphotoiduploaded(),
|
|
12013
|
+
haspaymentmethoduploaded: msg.getHaspaymentmethoduploaded()
|
|
12012
12014
|
};
|
|
12013
12015
|
|
|
12014
12016
|
if (includeInstance) {
|
|
@@ -12081,6 +12083,14 @@ proto.sniipuserservice.KycUser.deserializeBinaryFromReader = function(msg, reade
|
|
|
12081
12083
|
var value = /** @type {number} */ (reader.readInt64());
|
|
12082
12084
|
msg.setUserfraudstatus(value);
|
|
12083
12085
|
break;
|
|
12086
|
+
case 10:
|
|
12087
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
12088
|
+
msg.setHasphotoiduploaded(value);
|
|
12089
|
+
break;
|
|
12090
|
+
case 11:
|
|
12091
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
12092
|
+
msg.setHaspaymentmethoduploaded(value);
|
|
12093
|
+
break;
|
|
12084
12094
|
default:
|
|
12085
12095
|
reader.skipField();
|
|
12086
12096
|
break;
|
|
@@ -12182,6 +12192,20 @@ proto.sniipuserservice.KycUser.prototype.serializeBinaryToWriter = function (wri
|
|
|
12182
12192
|
f
|
|
12183
12193
|
);
|
|
12184
12194
|
}
|
|
12195
|
+
f = this.getHasphotoiduploaded();
|
|
12196
|
+
if (f) {
|
|
12197
|
+
writer.writeBool(
|
|
12198
|
+
10,
|
|
12199
|
+
f
|
|
12200
|
+
);
|
|
12201
|
+
}
|
|
12202
|
+
f = this.getHaspaymentmethoduploaded();
|
|
12203
|
+
if (f) {
|
|
12204
|
+
writer.writeBool(
|
|
12205
|
+
11,
|
|
12206
|
+
f
|
|
12207
|
+
);
|
|
12208
|
+
}
|
|
12185
12209
|
};
|
|
12186
12210
|
|
|
12187
12211
|
|
|
@@ -12329,6 +12353,40 @@ proto.sniipuserservice.KycUser.prototype.setUserfraudstatus = function(value) {
|
|
|
12329
12353
|
};
|
|
12330
12354
|
|
|
12331
12355
|
|
|
12356
|
+
/**
|
|
12357
|
+
* optional bool hasPhotoIdUploaded = 10;
|
|
12358
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
12359
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
12360
|
+
* @return {boolean}
|
|
12361
|
+
*/
|
|
12362
|
+
proto.sniipuserservice.KycUser.prototype.getHasphotoiduploaded = function() {
|
|
12363
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 10, false));
|
|
12364
|
+
};
|
|
12365
|
+
|
|
12366
|
+
|
|
12367
|
+
/** @param {boolean} value */
|
|
12368
|
+
proto.sniipuserservice.KycUser.prototype.setHasphotoiduploaded = function(value) {
|
|
12369
|
+
jspb.Message.setField(this, 10, value);
|
|
12370
|
+
};
|
|
12371
|
+
|
|
12372
|
+
|
|
12373
|
+
/**
|
|
12374
|
+
* optional bool hasPaymentMethodUploaded = 11;
|
|
12375
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
12376
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
12377
|
+
* @return {boolean}
|
|
12378
|
+
*/
|
|
12379
|
+
proto.sniipuserservice.KycUser.prototype.getHaspaymentmethoduploaded = function() {
|
|
12380
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 11, false));
|
|
12381
|
+
};
|
|
12382
|
+
|
|
12383
|
+
|
|
12384
|
+
/** @param {boolean} value */
|
|
12385
|
+
proto.sniipuserservice.KycUser.prototype.setHaspaymentmethoduploaded = function(value) {
|
|
12386
|
+
jspb.Message.setField(this, 11, value);
|
|
12387
|
+
};
|
|
12388
|
+
|
|
12389
|
+
|
|
12332
12390
|
|
|
12333
12391
|
/**
|
|
12334
12392
|
* Generated by JsPbCodeGenerator.
|