protobuf-platform 1.0.180 → 1.0.181

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.
@@ -93,6 +93,7 @@ message BetPoint {
93
93
  float max = 4;
94
94
  optional int32 number_of_step = 5;
95
95
  optional int32 wager_game_list_id = 6;
96
+ optional string wager_game_list_title = 7;
96
97
  }
97
98
  message PointItem {
98
99
  optional int32 id = 1;
@@ -3863,7 +3863,8 @@ proto.loyalty.BetPoint.toObject = function(includeInstance, msg) {
3863
3863
  min: jspb.Message.getFloatingPointFieldWithDefault(msg, 3, 0.0),
3864
3864
  max: jspb.Message.getFloatingPointFieldWithDefault(msg, 4, 0.0),
3865
3865
  numberOfStep: jspb.Message.getFieldWithDefault(msg, 5, 0),
3866
- wagerGameListId: jspb.Message.getFieldWithDefault(msg, 6, 0)
3866
+ wagerGameListId: jspb.Message.getFieldWithDefault(msg, 6, 0),
3867
+ wagerGameListTitle: jspb.Message.getFieldWithDefault(msg, 7, "")
3867
3868
  };
3868
3869
 
3869
3870
  if (includeInstance) {
@@ -3924,6 +3925,10 @@ proto.loyalty.BetPoint.deserializeBinaryFromReader = function(msg, reader) {
3924
3925
  var value = /** @type {number} */ (reader.readInt32());
3925
3926
  msg.setWagerGameListId(value);
3926
3927
  break;
3928
+ case 7:
3929
+ var value = /** @type {string} */ (reader.readString());
3930
+ msg.setWagerGameListTitle(value);
3931
+ break;
3927
3932
  default:
3928
3933
  reader.skipField();
3929
3934
  break;
@@ -3995,6 +4000,13 @@ proto.loyalty.BetPoint.serializeBinaryToWriter = function(message, writer) {
3995
4000
  f
3996
4001
  );
3997
4002
  }
4003
+ f = /** @type {string} */ (jspb.Message.getField(message, 7));
4004
+ if (f != null) {
4005
+ writer.writeString(
4006
+ 7,
4007
+ f
4008
+ );
4009
+ }
3998
4010
  };
3999
4011
 
4000
4012
 
@@ -4142,6 +4154,42 @@ proto.loyalty.BetPoint.prototype.hasWagerGameListId = function() {
4142
4154
  };
4143
4155
 
4144
4156
 
4157
+ /**
4158
+ * optional string wager_game_list_title = 7;
4159
+ * @return {string}
4160
+ */
4161
+ proto.loyalty.BetPoint.prototype.getWagerGameListTitle = function() {
4162
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
4163
+ };
4164
+
4165
+
4166
+ /**
4167
+ * @param {string} value
4168
+ * @return {!proto.loyalty.BetPoint} returns this
4169
+ */
4170
+ proto.loyalty.BetPoint.prototype.setWagerGameListTitle = function(value) {
4171
+ return jspb.Message.setField(this, 7, value);
4172
+ };
4173
+
4174
+
4175
+ /**
4176
+ * Clears the field making it undefined.
4177
+ * @return {!proto.loyalty.BetPoint} returns this
4178
+ */
4179
+ proto.loyalty.BetPoint.prototype.clearWagerGameListTitle = function() {
4180
+ return jspb.Message.setField(this, 7, undefined);
4181
+ };
4182
+
4183
+
4184
+ /**
4185
+ * Returns whether this field is set.
4186
+ * @return {boolean}
4187
+ */
4188
+ proto.loyalty.BetPoint.prototype.hasWagerGameListTitle = function() {
4189
+ return jspb.Message.getField(this, 7) != null;
4190
+ };
4191
+
4192
+
4145
4193
 
4146
4194
 
4147
4195
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protobuf-platform",
3
- "version": "1.0.180",
3
+ "version": "1.0.181",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {