protobuf-platform 1.2.409 → 1.2.410
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 +1 -0
- package/user/user_pb.js +49 -1
package/package.json
CHANGED
package/user/user.proto
CHANGED
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
|
|