@sniipwebmaster/kyc-client-grpcweb 26.2.1796 → 26.2.1817
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 +61 -1
- package/package.json +1 -1
|
@@ -4843,7 +4843,9 @@ proto.kycserviceapi.User.toObject = function(includeInstance, msg) {
|
|
|
4843
4843
|
var f, obj = {
|
|
4844
4844
|
userid: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
4845
4845
|
status: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
4846
|
-
hasbeenrequested: jspb.Message.getBooleanFieldWithDefault(msg, 3, false)
|
|
4846
|
+
hasbeenrequested: jspb.Message.getBooleanFieldWithDefault(msg, 3, false),
|
|
4847
|
+
livenesspercentage: jspb.Message.getFloatingPointFieldWithDefault(msg, 4, 0.0),
|
|
4848
|
+
matchpercentage: jspb.Message.getFloatingPointFieldWithDefault(msg, 5, 0.0)
|
|
4847
4849
|
};
|
|
4848
4850
|
|
|
4849
4851
|
if (includeInstance) {
|
|
@@ -4892,6 +4894,14 @@ proto.kycserviceapi.User.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
4892
4894
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
4893
4895
|
msg.setHasbeenrequested(value);
|
|
4894
4896
|
break;
|
|
4897
|
+
case 4:
|
|
4898
|
+
var value = /** @type {number} */ (reader.readFloat());
|
|
4899
|
+
msg.setLivenesspercentage(value);
|
|
4900
|
+
break;
|
|
4901
|
+
case 5:
|
|
4902
|
+
var value = /** @type {number} */ (reader.readFloat());
|
|
4903
|
+
msg.setMatchpercentage(value);
|
|
4904
|
+
break;
|
|
4895
4905
|
default:
|
|
4896
4906
|
reader.skipField();
|
|
4897
4907
|
break;
|
|
@@ -4942,6 +4952,20 @@ proto.kycserviceapi.User.serializeBinaryToWriter = function(message, writer) {
|
|
|
4942
4952
|
f
|
|
4943
4953
|
);
|
|
4944
4954
|
}
|
|
4955
|
+
f = message.getLivenesspercentage();
|
|
4956
|
+
if (f !== 0.0) {
|
|
4957
|
+
writer.writeFloat(
|
|
4958
|
+
4,
|
|
4959
|
+
f
|
|
4960
|
+
);
|
|
4961
|
+
}
|
|
4962
|
+
f = message.getMatchpercentage();
|
|
4963
|
+
if (f !== 0.0) {
|
|
4964
|
+
writer.writeFloat(
|
|
4965
|
+
5,
|
|
4966
|
+
f
|
|
4967
|
+
);
|
|
4968
|
+
}
|
|
4945
4969
|
};
|
|
4946
4970
|
|
|
4947
4971
|
|
|
@@ -4999,6 +5023,42 @@ proto.kycserviceapi.User.prototype.setHasbeenrequested = function(value) {
|
|
|
4999
5023
|
};
|
|
5000
5024
|
|
|
5001
5025
|
|
|
5026
|
+
/**
|
|
5027
|
+
* optional float livenessPercentage = 4;
|
|
5028
|
+
* @return {number}
|
|
5029
|
+
*/
|
|
5030
|
+
proto.kycserviceapi.User.prototype.getLivenesspercentage = function() {
|
|
5031
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 4, 0.0));
|
|
5032
|
+
};
|
|
5033
|
+
|
|
5034
|
+
|
|
5035
|
+
/**
|
|
5036
|
+
* @param {number} value
|
|
5037
|
+
* @return {!proto.kycserviceapi.User} returns this
|
|
5038
|
+
*/
|
|
5039
|
+
proto.kycserviceapi.User.prototype.setLivenesspercentage = function(value) {
|
|
5040
|
+
return jspb.Message.setProto3FloatField(this, 4, value);
|
|
5041
|
+
};
|
|
5042
|
+
|
|
5043
|
+
|
|
5044
|
+
/**
|
|
5045
|
+
* optional float matchPercentage = 5;
|
|
5046
|
+
* @return {number}
|
|
5047
|
+
*/
|
|
5048
|
+
proto.kycserviceapi.User.prototype.getMatchpercentage = function() {
|
|
5049
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 5, 0.0));
|
|
5050
|
+
};
|
|
5051
|
+
|
|
5052
|
+
|
|
5053
|
+
/**
|
|
5054
|
+
* @param {number} value
|
|
5055
|
+
* @return {!proto.kycserviceapi.User} returns this
|
|
5056
|
+
*/
|
|
5057
|
+
proto.kycserviceapi.User.prototype.setMatchpercentage = function(value) {
|
|
5058
|
+
return jspb.Message.setProto3FloatField(this, 5, value);
|
|
5059
|
+
};
|
|
5060
|
+
|
|
5061
|
+
|
|
5002
5062
|
|
|
5003
5063
|
/**
|
|
5004
5064
|
* List of repeated fields within this message type.
|