@sniipwebmaster/kyc-client-grpcweb 26.4.2101 → 26.4.2118
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 +211 -1
- package/package.json +1 -1
|
@@ -4911,7 +4911,14 @@ proto.kycserviceapi.User.toObject = function(includeInstance, msg) {
|
|
|
4911
4911
|
status: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
4912
4912
|
hasbeenrequested: jspb.Message.getBooleanFieldWithDefault(msg, 3, false),
|
|
4913
4913
|
livenesspercentage: jspb.Message.getFloatingPointFieldWithDefault(msg, 4, 0.0),
|
|
4914
|
-
matchpercentage: jspb.Message.getFloatingPointFieldWithDefault(msg, 5, 0.0)
|
|
4914
|
+
matchpercentage: jspb.Message.getFloatingPointFieldWithDefault(msg, 5, 0.0),
|
|
4915
|
+
docauthenticityfront: jspb.Message.getFloatingPointFieldWithDefault(msg, 6, 0.0),
|
|
4916
|
+
docauthenticityback: jspb.Message.getFloatingPointFieldWithDefault(msg, 7, 0.0),
|
|
4917
|
+
screenreplayflaggedfront: jspb.Message.getBooleanFieldWithDefault(msg, 8, false),
|
|
4918
|
+
screenreplayconfidencefront: jspb.Message.getFloatingPointFieldWithDefault(msg, 9, 0.0),
|
|
4919
|
+
screenreplayflaggedback: jspb.Message.getBooleanFieldWithDefault(msg, 10, false),
|
|
4920
|
+
screenreplayconfidenceback: jspb.Message.getFloatingPointFieldWithDefault(msg, 11, 0.0),
|
|
4921
|
+
screenreplayreason: jspb.Message.getFieldWithDefault(msg, 12, "")
|
|
4915
4922
|
};
|
|
4916
4923
|
|
|
4917
4924
|
if (includeInstance) {
|
|
@@ -4968,6 +4975,34 @@ proto.kycserviceapi.User.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
4968
4975
|
var value = /** @type {number} */ (reader.readFloat());
|
|
4969
4976
|
msg.setMatchpercentage(value);
|
|
4970
4977
|
break;
|
|
4978
|
+
case 6:
|
|
4979
|
+
var value = /** @type {number} */ (reader.readFloat());
|
|
4980
|
+
msg.setDocauthenticityfront(value);
|
|
4981
|
+
break;
|
|
4982
|
+
case 7:
|
|
4983
|
+
var value = /** @type {number} */ (reader.readFloat());
|
|
4984
|
+
msg.setDocauthenticityback(value);
|
|
4985
|
+
break;
|
|
4986
|
+
case 8:
|
|
4987
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
4988
|
+
msg.setScreenreplayflaggedfront(value);
|
|
4989
|
+
break;
|
|
4990
|
+
case 9:
|
|
4991
|
+
var value = /** @type {number} */ (reader.readFloat());
|
|
4992
|
+
msg.setScreenreplayconfidencefront(value);
|
|
4993
|
+
break;
|
|
4994
|
+
case 10:
|
|
4995
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
4996
|
+
msg.setScreenreplayflaggedback(value);
|
|
4997
|
+
break;
|
|
4998
|
+
case 11:
|
|
4999
|
+
var value = /** @type {number} */ (reader.readFloat());
|
|
5000
|
+
msg.setScreenreplayconfidenceback(value);
|
|
5001
|
+
break;
|
|
5002
|
+
case 12:
|
|
5003
|
+
var value = /** @type {string} */ (reader.readString());
|
|
5004
|
+
msg.setScreenreplayreason(value);
|
|
5005
|
+
break;
|
|
4971
5006
|
default:
|
|
4972
5007
|
reader.skipField();
|
|
4973
5008
|
break;
|
|
@@ -5032,6 +5067,55 @@ proto.kycserviceapi.User.serializeBinaryToWriter = function(message, writer) {
|
|
|
5032
5067
|
f
|
|
5033
5068
|
);
|
|
5034
5069
|
}
|
|
5070
|
+
f = message.getDocauthenticityfront();
|
|
5071
|
+
if (f !== 0.0) {
|
|
5072
|
+
writer.writeFloat(
|
|
5073
|
+
6,
|
|
5074
|
+
f
|
|
5075
|
+
);
|
|
5076
|
+
}
|
|
5077
|
+
f = message.getDocauthenticityback();
|
|
5078
|
+
if (f !== 0.0) {
|
|
5079
|
+
writer.writeFloat(
|
|
5080
|
+
7,
|
|
5081
|
+
f
|
|
5082
|
+
);
|
|
5083
|
+
}
|
|
5084
|
+
f = message.getScreenreplayflaggedfront();
|
|
5085
|
+
if (f) {
|
|
5086
|
+
writer.writeBool(
|
|
5087
|
+
8,
|
|
5088
|
+
f
|
|
5089
|
+
);
|
|
5090
|
+
}
|
|
5091
|
+
f = message.getScreenreplayconfidencefront();
|
|
5092
|
+
if (f !== 0.0) {
|
|
5093
|
+
writer.writeFloat(
|
|
5094
|
+
9,
|
|
5095
|
+
f
|
|
5096
|
+
);
|
|
5097
|
+
}
|
|
5098
|
+
f = message.getScreenreplayflaggedback();
|
|
5099
|
+
if (f) {
|
|
5100
|
+
writer.writeBool(
|
|
5101
|
+
10,
|
|
5102
|
+
f
|
|
5103
|
+
);
|
|
5104
|
+
}
|
|
5105
|
+
f = message.getScreenreplayconfidenceback();
|
|
5106
|
+
if (f !== 0.0) {
|
|
5107
|
+
writer.writeFloat(
|
|
5108
|
+
11,
|
|
5109
|
+
f
|
|
5110
|
+
);
|
|
5111
|
+
}
|
|
5112
|
+
f = message.getScreenreplayreason();
|
|
5113
|
+
if (f.length > 0) {
|
|
5114
|
+
writer.writeString(
|
|
5115
|
+
12,
|
|
5116
|
+
f
|
|
5117
|
+
);
|
|
5118
|
+
}
|
|
5035
5119
|
};
|
|
5036
5120
|
|
|
5037
5121
|
|
|
@@ -5125,6 +5209,132 @@ proto.kycserviceapi.User.prototype.setMatchpercentage = function(value) {
|
|
|
5125
5209
|
};
|
|
5126
5210
|
|
|
5127
5211
|
|
|
5212
|
+
/**
|
|
5213
|
+
* optional float docAuthenticityFront = 6;
|
|
5214
|
+
* @return {number}
|
|
5215
|
+
*/
|
|
5216
|
+
proto.kycserviceapi.User.prototype.getDocauthenticityfront = function() {
|
|
5217
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 6, 0.0));
|
|
5218
|
+
};
|
|
5219
|
+
|
|
5220
|
+
|
|
5221
|
+
/**
|
|
5222
|
+
* @param {number} value
|
|
5223
|
+
* @return {!proto.kycserviceapi.User} returns this
|
|
5224
|
+
*/
|
|
5225
|
+
proto.kycserviceapi.User.prototype.setDocauthenticityfront = function(value) {
|
|
5226
|
+
return jspb.Message.setProto3FloatField(this, 6, value);
|
|
5227
|
+
};
|
|
5228
|
+
|
|
5229
|
+
|
|
5230
|
+
/**
|
|
5231
|
+
* optional float docAuthenticityBack = 7;
|
|
5232
|
+
* @return {number}
|
|
5233
|
+
*/
|
|
5234
|
+
proto.kycserviceapi.User.prototype.getDocauthenticityback = function() {
|
|
5235
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 7, 0.0));
|
|
5236
|
+
};
|
|
5237
|
+
|
|
5238
|
+
|
|
5239
|
+
/**
|
|
5240
|
+
* @param {number} value
|
|
5241
|
+
* @return {!proto.kycserviceapi.User} returns this
|
|
5242
|
+
*/
|
|
5243
|
+
proto.kycserviceapi.User.prototype.setDocauthenticityback = function(value) {
|
|
5244
|
+
return jspb.Message.setProto3FloatField(this, 7, value);
|
|
5245
|
+
};
|
|
5246
|
+
|
|
5247
|
+
|
|
5248
|
+
/**
|
|
5249
|
+
* optional bool screenReplayFlaggedFront = 8;
|
|
5250
|
+
* @return {boolean}
|
|
5251
|
+
*/
|
|
5252
|
+
proto.kycserviceapi.User.prototype.getScreenreplayflaggedfront = function() {
|
|
5253
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 8, false));
|
|
5254
|
+
};
|
|
5255
|
+
|
|
5256
|
+
|
|
5257
|
+
/**
|
|
5258
|
+
* @param {boolean} value
|
|
5259
|
+
* @return {!proto.kycserviceapi.User} returns this
|
|
5260
|
+
*/
|
|
5261
|
+
proto.kycserviceapi.User.prototype.setScreenreplayflaggedfront = function(value) {
|
|
5262
|
+
return jspb.Message.setProto3BooleanField(this, 8, value);
|
|
5263
|
+
};
|
|
5264
|
+
|
|
5265
|
+
|
|
5266
|
+
/**
|
|
5267
|
+
* optional float screenReplayConfidenceFront = 9;
|
|
5268
|
+
* @return {number}
|
|
5269
|
+
*/
|
|
5270
|
+
proto.kycserviceapi.User.prototype.getScreenreplayconfidencefront = function() {
|
|
5271
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 9, 0.0));
|
|
5272
|
+
};
|
|
5273
|
+
|
|
5274
|
+
|
|
5275
|
+
/**
|
|
5276
|
+
* @param {number} value
|
|
5277
|
+
* @return {!proto.kycserviceapi.User} returns this
|
|
5278
|
+
*/
|
|
5279
|
+
proto.kycserviceapi.User.prototype.setScreenreplayconfidencefront = function(value) {
|
|
5280
|
+
return jspb.Message.setProto3FloatField(this, 9, value);
|
|
5281
|
+
};
|
|
5282
|
+
|
|
5283
|
+
|
|
5284
|
+
/**
|
|
5285
|
+
* optional bool screenReplayFlaggedBack = 10;
|
|
5286
|
+
* @return {boolean}
|
|
5287
|
+
*/
|
|
5288
|
+
proto.kycserviceapi.User.prototype.getScreenreplayflaggedback = function() {
|
|
5289
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 10, false));
|
|
5290
|
+
};
|
|
5291
|
+
|
|
5292
|
+
|
|
5293
|
+
/**
|
|
5294
|
+
* @param {boolean} value
|
|
5295
|
+
* @return {!proto.kycserviceapi.User} returns this
|
|
5296
|
+
*/
|
|
5297
|
+
proto.kycserviceapi.User.prototype.setScreenreplayflaggedback = function(value) {
|
|
5298
|
+
return jspb.Message.setProto3BooleanField(this, 10, value);
|
|
5299
|
+
};
|
|
5300
|
+
|
|
5301
|
+
|
|
5302
|
+
/**
|
|
5303
|
+
* optional float screenReplayConfidenceBack = 11;
|
|
5304
|
+
* @return {number}
|
|
5305
|
+
*/
|
|
5306
|
+
proto.kycserviceapi.User.prototype.getScreenreplayconfidenceback = function() {
|
|
5307
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 11, 0.0));
|
|
5308
|
+
};
|
|
5309
|
+
|
|
5310
|
+
|
|
5311
|
+
/**
|
|
5312
|
+
* @param {number} value
|
|
5313
|
+
* @return {!proto.kycserviceapi.User} returns this
|
|
5314
|
+
*/
|
|
5315
|
+
proto.kycserviceapi.User.prototype.setScreenreplayconfidenceback = function(value) {
|
|
5316
|
+
return jspb.Message.setProto3FloatField(this, 11, value);
|
|
5317
|
+
};
|
|
5318
|
+
|
|
5319
|
+
|
|
5320
|
+
/**
|
|
5321
|
+
* optional string screenReplayReason = 12;
|
|
5322
|
+
* @return {string}
|
|
5323
|
+
*/
|
|
5324
|
+
proto.kycserviceapi.User.prototype.getScreenreplayreason = function() {
|
|
5325
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
|
|
5326
|
+
};
|
|
5327
|
+
|
|
5328
|
+
|
|
5329
|
+
/**
|
|
5330
|
+
* @param {string} value
|
|
5331
|
+
* @return {!proto.kycserviceapi.User} returns this
|
|
5332
|
+
*/
|
|
5333
|
+
proto.kycserviceapi.User.prototype.setScreenreplayreason = function(value) {
|
|
5334
|
+
return jspb.Message.setProto3StringField(this, 12, value);
|
|
5335
|
+
};
|
|
5336
|
+
|
|
5337
|
+
|
|
5128
5338
|
|
|
5129
5339
|
/**
|
|
5130
5340
|
* List of repeated fields within this message type.
|