protobuf-platform 1.2.253 → 1.2.255
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/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() {
|