protobuf-platform 1.1.38 → 1.1.39

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/bonus/bonus.proto CHANGED
@@ -134,6 +134,7 @@ message BonusItem {
134
134
  repeated BonusReward rewards = 20;
135
135
  repeated BetsRange bets_range = 21;
136
136
  optional string type_data = 22;
137
+ optional int32 status_id = 23;
137
138
  }
138
139
  message BonusItemsResponse {
139
140
  repeated BonusItem items = 1;
package/bonus/bonus_pb.js CHANGED
@@ -4813,7 +4813,8 @@ proto.bonus.BonusItem.toObject = function(includeInstance, msg) {
4813
4813
  proto.bonus.BonusReward.toObject, includeInstance),
4814
4814
  betsRangeList: jspb.Message.toObjectList(msg.getBetsRangeList(),
4815
4815
  proto.bonus.BetsRange.toObject, includeInstance),
4816
- typeData: jspb.Message.getFieldWithDefault(msg, 22, "")
4816
+ typeData: jspb.Message.getFieldWithDefault(msg, 22, ""),
4817
+ statusId: jspb.Message.getFieldWithDefault(msg, 23, 0)
4817
4818
  };
4818
4819
 
4819
4820
  if (includeInstance) {
@@ -4941,6 +4942,10 @@ proto.bonus.BonusItem.deserializeBinaryFromReader = function(msg, reader) {
4941
4942
  var value = /** @type {string} */ (reader.readString());
4942
4943
  msg.setTypeData(value);
4943
4944
  break;
4945
+ case 23:
4946
+ var value = /** @type {number} */ (reader.readInt32());
4947
+ msg.setStatusId(value);
4948
+ break;
4944
4949
  default:
4945
4950
  reader.skipField();
4946
4951
  break;
@@ -5127,6 +5132,13 @@ proto.bonus.BonusItem.serializeBinaryToWriter = function(message, writer) {
5127
5132
  f
5128
5133
  );
5129
5134
  }
5135
+ f = /** @type {number} */ (jspb.Message.getField(message, 23));
5136
+ if (f != null) {
5137
+ writer.writeInt32(
5138
+ 23,
5139
+ f
5140
+ );
5141
+ }
5130
5142
  };
5131
5143
 
5132
5144
 
@@ -5928,6 +5940,42 @@ proto.bonus.BonusItem.prototype.hasTypeData = function() {
5928
5940
  };
5929
5941
 
5930
5942
 
5943
+ /**
5944
+ * optional int32 status_id = 23;
5945
+ * @return {number}
5946
+ */
5947
+ proto.bonus.BonusItem.prototype.getStatusId = function() {
5948
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 23, 0));
5949
+ };
5950
+
5951
+
5952
+ /**
5953
+ * @param {number} value
5954
+ * @return {!proto.bonus.BonusItem} returns this
5955
+ */
5956
+ proto.bonus.BonusItem.prototype.setStatusId = function(value) {
5957
+ return jspb.Message.setField(this, 23, value);
5958
+ };
5959
+
5960
+
5961
+ /**
5962
+ * Clears the field making it undefined.
5963
+ * @return {!proto.bonus.BonusItem} returns this
5964
+ */
5965
+ proto.bonus.BonusItem.prototype.clearStatusId = function() {
5966
+ return jspb.Message.setField(this, 23, undefined);
5967
+ };
5968
+
5969
+
5970
+ /**
5971
+ * Returns whether this field is set.
5972
+ * @return {boolean}
5973
+ */
5974
+ proto.bonus.BonusItem.prototype.hasStatusId = function() {
5975
+ return jspb.Message.getField(this, 23) != null;
5976
+ };
5977
+
5978
+
5931
5979
 
5932
5980
  /**
5933
5981
  * List of repeated fields within this message type.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protobuf-platform",
3
- "version": "1.1.38",
3
+ "version": "1.1.39",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {