protobuf-platform 1.2.253 → 1.2.256
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/game/game.proto +1 -1
- package/game/game_pb.js +3 -3
- package/package.json +1 -1
- package/user/user.proto +1 -0
- package/user/user_pb.js +49 -1
package/game/game.proto
CHANGED
|
@@ -610,7 +610,7 @@ message ActiveUserTournament {
|
|
|
610
610
|
optional string status = 6;
|
|
611
611
|
optional bool can_activated = 7;
|
|
612
612
|
optional string user_status = 8;
|
|
613
|
-
optional
|
|
613
|
+
optional uint64 finished_in_milliseconds = 9;
|
|
614
614
|
optional uint32 max_members_count = 10;
|
|
615
615
|
optional uint32 current_members_count = 11;
|
|
616
616
|
}
|
package/game/game_pb.js
CHANGED
|
@@ -25504,7 +25504,7 @@ proto.game.ActiveUserTournament.deserializeBinaryFromReader = function(msg, read
|
|
|
25504
25504
|
msg.setUserStatus(value);
|
|
25505
25505
|
break;
|
|
25506
25506
|
case 9:
|
|
25507
|
-
var value = /** @type {number} */ (reader.
|
|
25507
|
+
var value = /** @type {number} */ (reader.readUint64());
|
|
25508
25508
|
msg.setFinishedInMilliseconds(value);
|
|
25509
25509
|
break;
|
|
25510
25510
|
case 10:
|
|
@@ -25602,7 +25602,7 @@ proto.game.ActiveUserTournament.serializeBinaryToWriter = function(message, writ
|
|
|
25602
25602
|
}
|
|
25603
25603
|
f = /** @type {number} */ (jspb.Message.getField(message, 9));
|
|
25604
25604
|
if (f != null) {
|
|
25605
|
-
writer.
|
|
25605
|
+
writer.writeUint64(
|
|
25606
25606
|
9,
|
|
25607
25607
|
f
|
|
25608
25608
|
);
|
|
@@ -25877,7 +25877,7 @@ proto.game.ActiveUserTournament.prototype.hasUserStatus = function() {
|
|
|
25877
25877
|
|
|
25878
25878
|
|
|
25879
25879
|
/**
|
|
25880
|
-
* optional
|
|
25880
|
+
* optional uint64 finished_in_milliseconds = 9;
|
|
25881
25881
|
* @return {number}
|
|
25882
25882
|
*/
|
|
25883
25883
|
proto.game.ActiveUserTournament.prototype.getFinishedInMilliseconds = function() {
|
package/package.json
CHANGED
package/user/user.proto
CHANGED
package/user/user_pb.js
CHANGED
|
@@ -10408,7 +10408,8 @@ proto.user.UserDataResponse.toObject = function(includeInstance, msg) {
|
|
|
10408
10408
|
postalCode: jspb.Message.getFieldWithDefault(msg, 36, ""),
|
|
10409
10409
|
gender: jspb.Message.getFieldWithDefault(msg, 37, ""),
|
|
10410
10410
|
riskScore: jspb.Message.getFieldWithDefault(msg, 38, 0),
|
|
10411
|
-
address: jspb.Message.getFieldWithDefault(msg, 39, "")
|
|
10411
|
+
address: jspb.Message.getFieldWithDefault(msg, 39, ""),
|
|
10412
|
+
seonFraudScore: jspb.Message.getFieldWithDefault(msg, 40, 0)
|
|
10412
10413
|
};
|
|
10413
10414
|
|
|
10414
10415
|
if (includeInstance) {
|
|
@@ -10602,6 +10603,10 @@ proto.user.UserDataResponse.deserializeBinaryFromReader = function(msg, reader)
|
|
|
10602
10603
|
var value = /** @type {string} */ (reader.readString());
|
|
10603
10604
|
msg.setAddress(value);
|
|
10604
10605
|
break;
|
|
10606
|
+
case 40:
|
|
10607
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
10608
|
+
msg.setSeonFraudScore(value);
|
|
10609
|
+
break;
|
|
10605
10610
|
default:
|
|
10606
10611
|
reader.skipField();
|
|
10607
10612
|
break;
|
|
@@ -10905,6 +10910,13 @@ proto.user.UserDataResponse.serializeBinaryToWriter = function(message, writer)
|
|
|
10905
10910
|
f
|
|
10906
10911
|
);
|
|
10907
10912
|
}
|
|
10913
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 40));
|
|
10914
|
+
if (f != null) {
|
|
10915
|
+
writer.writeInt32(
|
|
10916
|
+
40,
|
|
10917
|
+
f
|
|
10918
|
+
);
|
|
10919
|
+
}
|
|
10908
10920
|
};
|
|
10909
10921
|
|
|
10910
10922
|
|
|
@@ -12277,6 +12289,42 @@ proto.user.UserDataResponse.prototype.hasAddress = function() {
|
|
|
12277
12289
|
};
|
|
12278
12290
|
|
|
12279
12291
|
|
|
12292
|
+
/**
|
|
12293
|
+
* optional int32 seon_fraud_score = 40;
|
|
12294
|
+
* @return {number}
|
|
12295
|
+
*/
|
|
12296
|
+
proto.user.UserDataResponse.prototype.getSeonFraudScore = function() {
|
|
12297
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 40, 0));
|
|
12298
|
+
};
|
|
12299
|
+
|
|
12300
|
+
|
|
12301
|
+
/**
|
|
12302
|
+
* @param {number} value
|
|
12303
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
12304
|
+
*/
|
|
12305
|
+
proto.user.UserDataResponse.prototype.setSeonFraudScore = function(value) {
|
|
12306
|
+
return jspb.Message.setField(this, 40, value);
|
|
12307
|
+
};
|
|
12308
|
+
|
|
12309
|
+
|
|
12310
|
+
/**
|
|
12311
|
+
* Clears the field making it undefined.
|
|
12312
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
12313
|
+
*/
|
|
12314
|
+
proto.user.UserDataResponse.prototype.clearSeonFraudScore = function() {
|
|
12315
|
+
return jspb.Message.setField(this, 40, undefined);
|
|
12316
|
+
};
|
|
12317
|
+
|
|
12318
|
+
|
|
12319
|
+
/**
|
|
12320
|
+
* Returns whether this field is set.
|
|
12321
|
+
* @return {boolean}
|
|
12322
|
+
*/
|
|
12323
|
+
proto.user.UserDataResponse.prototype.hasSeonFraudScore = function() {
|
|
12324
|
+
return jspb.Message.getField(this, 40) != null;
|
|
12325
|
+
};
|
|
12326
|
+
|
|
12327
|
+
|
|
12280
12328
|
|
|
12281
12329
|
/**
|
|
12282
12330
|
* List of repeated fields within this message type.
|