protobuf-platform 1.2.409 → 1.2.411
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/package.json +1 -1
- package/user/user.proto +2 -0
- package/user/user_pb.js +98 -2
package/package.json
CHANGED
package/user/user.proto
CHANGED
|
@@ -199,6 +199,7 @@ message RegistrationRequest {
|
|
|
199
199
|
optional string seon_session = 24;
|
|
200
200
|
optional string preset_code = 25;
|
|
201
201
|
optional string antifraud_session = 26;
|
|
202
|
+
optional string fraudnetic_token = 27;
|
|
202
203
|
}
|
|
203
204
|
message LoggedInResponse {
|
|
204
205
|
int32 id = 1;
|
|
@@ -1012,6 +1013,7 @@ message StartUserKycVerificationRequest {
|
|
|
1012
1013
|
optional string callback_url = 6;
|
|
1013
1014
|
optional string correlation_id = 7;
|
|
1014
1015
|
optional string flow = 8;
|
|
1016
|
+
optional string ip = 9;
|
|
1015
1017
|
}
|
|
1016
1018
|
message StartUserKycVerificationResponse {
|
|
1017
1019
|
int32 user_id = 1;
|
package/user/user_pb.js
CHANGED
|
@@ -5761,7 +5761,8 @@ proto.user.RegistrationRequest.toObject = function(includeInstance, msg) {
|
|
|
5761
5761
|
affiliateInfo: jspb.Message.getFieldWithDefault(msg, 23, ""),
|
|
5762
5762
|
seonSession: jspb.Message.getFieldWithDefault(msg, 24, ""),
|
|
5763
5763
|
presetCode: jspb.Message.getFieldWithDefault(msg, 25, ""),
|
|
5764
|
-
antifraudSession: jspb.Message.getFieldWithDefault(msg, 26, "")
|
|
5764
|
+
antifraudSession: jspb.Message.getFieldWithDefault(msg, 26, ""),
|
|
5765
|
+
fraudneticToken: jspb.Message.getFieldWithDefault(msg, 27, "")
|
|
5765
5766
|
};
|
|
5766
5767
|
|
|
5767
5768
|
if (includeInstance) {
|
|
@@ -5902,6 +5903,10 @@ proto.user.RegistrationRequest.deserializeBinaryFromReader = function(msg, reade
|
|
|
5902
5903
|
var value = /** @type {string} */ (reader.readString());
|
|
5903
5904
|
msg.setAntifraudSession(value);
|
|
5904
5905
|
break;
|
|
5906
|
+
case 27:
|
|
5907
|
+
var value = /** @type {string} */ (reader.readString());
|
|
5908
|
+
msg.setFraudneticToken(value);
|
|
5909
|
+
break;
|
|
5905
5910
|
default:
|
|
5906
5911
|
reader.skipField();
|
|
5907
5912
|
break;
|
|
@@ -6113,6 +6118,13 @@ proto.user.RegistrationRequest.serializeBinaryToWriter = function(message, write
|
|
|
6113
6118
|
f
|
|
6114
6119
|
);
|
|
6115
6120
|
}
|
|
6121
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 27));
|
|
6122
|
+
if (f != null) {
|
|
6123
|
+
writer.writeString(
|
|
6124
|
+
27,
|
|
6125
|
+
f
|
|
6126
|
+
);
|
|
6127
|
+
}
|
|
6116
6128
|
};
|
|
6117
6129
|
|
|
6118
6130
|
|
|
@@ -6998,6 +7010,42 @@ proto.user.RegistrationRequest.prototype.hasAntifraudSession = function() {
|
|
|
6998
7010
|
};
|
|
6999
7011
|
|
|
7000
7012
|
|
|
7013
|
+
/**
|
|
7014
|
+
* optional string fraudnetic_token = 27;
|
|
7015
|
+
* @return {string}
|
|
7016
|
+
*/
|
|
7017
|
+
proto.user.RegistrationRequest.prototype.getFraudneticToken = function() {
|
|
7018
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 27, ""));
|
|
7019
|
+
};
|
|
7020
|
+
|
|
7021
|
+
|
|
7022
|
+
/**
|
|
7023
|
+
* @param {string} value
|
|
7024
|
+
* @return {!proto.user.RegistrationRequest} returns this
|
|
7025
|
+
*/
|
|
7026
|
+
proto.user.RegistrationRequest.prototype.setFraudneticToken = function(value) {
|
|
7027
|
+
return jspb.Message.setField(this, 27, value);
|
|
7028
|
+
};
|
|
7029
|
+
|
|
7030
|
+
|
|
7031
|
+
/**
|
|
7032
|
+
* Clears the field making it undefined.
|
|
7033
|
+
* @return {!proto.user.RegistrationRequest} returns this
|
|
7034
|
+
*/
|
|
7035
|
+
proto.user.RegistrationRequest.prototype.clearFraudneticToken = function() {
|
|
7036
|
+
return jspb.Message.setField(this, 27, undefined);
|
|
7037
|
+
};
|
|
7038
|
+
|
|
7039
|
+
|
|
7040
|
+
/**
|
|
7041
|
+
* Returns whether this field is set.
|
|
7042
|
+
* @return {boolean}
|
|
7043
|
+
*/
|
|
7044
|
+
proto.user.RegistrationRequest.prototype.hasFraudneticToken = function() {
|
|
7045
|
+
return jspb.Message.getField(this, 27) != null;
|
|
7046
|
+
};
|
|
7047
|
+
|
|
7048
|
+
|
|
7001
7049
|
|
|
7002
7050
|
|
|
7003
7051
|
|
|
@@ -42983,7 +43031,8 @@ proto.user.StartUserKycVerificationRequest.toObject = function(includeInstance,
|
|
|
42983
43031
|
returnUrl: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
42984
43032
|
callbackUrl: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
42985
43033
|
correlationId: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
42986
|
-
flow: jspb.Message.getFieldWithDefault(msg, 8, "")
|
|
43034
|
+
flow: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
43035
|
+
ip: jspb.Message.getFieldWithDefault(msg, 9, "")
|
|
42987
43036
|
};
|
|
42988
43037
|
|
|
42989
43038
|
if (includeInstance) {
|
|
@@ -43052,6 +43101,10 @@ proto.user.StartUserKycVerificationRequest.deserializeBinaryFromReader = functio
|
|
|
43052
43101
|
var value = /** @type {string} */ (reader.readString());
|
|
43053
43102
|
msg.setFlow(value);
|
|
43054
43103
|
break;
|
|
43104
|
+
case 9:
|
|
43105
|
+
var value = /** @type {string} */ (reader.readString());
|
|
43106
|
+
msg.setIp(value);
|
|
43107
|
+
break;
|
|
43055
43108
|
default:
|
|
43056
43109
|
reader.skipField();
|
|
43057
43110
|
break;
|
|
@@ -43137,6 +43190,13 @@ proto.user.StartUserKycVerificationRequest.serializeBinaryToWriter = function(me
|
|
|
43137
43190
|
f
|
|
43138
43191
|
);
|
|
43139
43192
|
}
|
|
43193
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 9));
|
|
43194
|
+
if (f != null) {
|
|
43195
|
+
writer.writeString(
|
|
43196
|
+
9,
|
|
43197
|
+
f
|
|
43198
|
+
);
|
|
43199
|
+
}
|
|
43140
43200
|
};
|
|
43141
43201
|
|
|
43142
43202
|
|
|
@@ -43410,6 +43470,42 @@ proto.user.StartUserKycVerificationRequest.prototype.hasFlow = function() {
|
|
|
43410
43470
|
};
|
|
43411
43471
|
|
|
43412
43472
|
|
|
43473
|
+
/**
|
|
43474
|
+
* optional string ip = 9;
|
|
43475
|
+
* @return {string}
|
|
43476
|
+
*/
|
|
43477
|
+
proto.user.StartUserKycVerificationRequest.prototype.getIp = function() {
|
|
43478
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
43479
|
+
};
|
|
43480
|
+
|
|
43481
|
+
|
|
43482
|
+
/**
|
|
43483
|
+
* @param {string} value
|
|
43484
|
+
* @return {!proto.user.StartUserKycVerificationRequest} returns this
|
|
43485
|
+
*/
|
|
43486
|
+
proto.user.StartUserKycVerificationRequest.prototype.setIp = function(value) {
|
|
43487
|
+
return jspb.Message.setField(this, 9, value);
|
|
43488
|
+
};
|
|
43489
|
+
|
|
43490
|
+
|
|
43491
|
+
/**
|
|
43492
|
+
* Clears the field making it undefined.
|
|
43493
|
+
* @return {!proto.user.StartUserKycVerificationRequest} returns this
|
|
43494
|
+
*/
|
|
43495
|
+
proto.user.StartUserKycVerificationRequest.prototype.clearIp = function() {
|
|
43496
|
+
return jspb.Message.setField(this, 9, undefined);
|
|
43497
|
+
};
|
|
43498
|
+
|
|
43499
|
+
|
|
43500
|
+
/**
|
|
43501
|
+
* Returns whether this field is set.
|
|
43502
|
+
* @return {boolean}
|
|
43503
|
+
*/
|
|
43504
|
+
proto.user.StartUserKycVerificationRequest.prototype.hasIp = function() {
|
|
43505
|
+
return jspb.Message.getField(this, 9) != null;
|
|
43506
|
+
};
|
|
43507
|
+
|
|
43508
|
+
|
|
43413
43509
|
|
|
43414
43510
|
|
|
43415
43511
|
|