protobuf-platform 1.1.23 → 1.1.24

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protobuf-platform",
3
- "version": "1.1.23",
3
+ "version": "1.1.24",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -176,7 +176,7 @@ message UserTournamentItem {
176
176
  optional string slug = 13;
177
177
  optional bool can_activated = 14;
178
178
  optional string user_status = 15;
179
- optional int32 finished_in_milliseconds = 16;
179
+ optional uint32 finished_in_milliseconds = 16;
180
180
  }
181
181
  message UserTournamentItemsResponse {
182
182
  repeated UserTournamentItem items = 1;
@@ -7663,7 +7663,7 @@ proto.tournament.UserTournamentItem.deserializeBinaryFromReader = function(msg,
7663
7663
  msg.setUserStatus(value);
7664
7664
  break;
7665
7665
  case 16:
7666
- var value = /** @type {number} */ (reader.readInt32());
7666
+ var value = /** @type {number} */ (reader.readUint32());
7667
7667
  msg.setFinishedInMilliseconds(value);
7668
7668
  break;
7669
7669
  default:
@@ -7804,7 +7804,7 @@ proto.tournament.UserTournamentItem.serializeBinaryToWriter = function(message,
7804
7804
  }
7805
7805
  f = /** @type {number} */ (jspb.Message.getField(message, 16));
7806
7806
  if (f != null) {
7807
- writer.writeInt32(
7807
+ writer.writeUint32(
7808
7808
  16,
7809
7809
  f
7810
7810
  );
@@ -8357,7 +8357,7 @@ proto.tournament.UserTournamentItem.prototype.hasUserStatus = function() {
8357
8357
 
8358
8358
 
8359
8359
  /**
8360
- * optional int32 finished_in_milliseconds = 16;
8360
+ * optional uint32 finished_in_milliseconds = 16;
8361
8361
  * @return {number}
8362
8362
  */
8363
8363
  proto.tournament.UserTournamentItem.prototype.getFinishedInMilliseconds = function() {