protobuf-platform 1.2.536 → 1.2.537

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 CHANGED
@@ -902,6 +902,7 @@ message FreeSpinBonusCampaignRequest {
902
902
  optional float max_win_amount = 10;
903
903
  optional string campaign_name = 11;
904
904
  optional string provider_extras = 12;
905
+ int64 user_bonus_id = 13;
905
906
  }
906
907
  message FreeSpinStatusRequest {
907
908
  string free_spin_id = 1;
package/game/game_pb.js CHANGED
@@ -37910,7 +37910,8 @@ proto.game.FreeSpinBonusCampaignRequest.toObject = function(includeInstance, msg
37910
37910
  spinAmount: jspb.Message.getFloatingPointFieldWithDefault(msg, 9, 0.0),
37911
37911
  maxWinAmount: jspb.Message.getFloatingPointFieldWithDefault(msg, 10, 0.0),
37912
37912
  campaignName: jspb.Message.getFieldWithDefault(msg, 11, ""),
37913
- providerExtras: jspb.Message.getFieldWithDefault(msg, 12, "")
37913
+ providerExtras: jspb.Message.getFieldWithDefault(msg, 12, ""),
37914
+ userBonusId: jspb.Message.getFieldWithDefault(msg, 13, 0)
37914
37915
  };
37915
37916
 
37916
37917
  if (includeInstance) {
@@ -37995,6 +37996,10 @@ proto.game.FreeSpinBonusCampaignRequest.deserializeBinaryFromReader = function(m
37995
37996
  var value = /** @type {string} */ (reader.readString());
37996
37997
  msg.setProviderExtras(value);
37997
37998
  break;
37999
+ case 13:
38000
+ var value = /** @type {number} */ (reader.readInt64());
38001
+ msg.setUserBonusId(value);
38002
+ break;
37998
38003
  default:
37999
38004
  reader.skipField();
38000
38005
  break;
@@ -38108,6 +38113,13 @@ proto.game.FreeSpinBonusCampaignRequest.serializeBinaryToWriter = function(messa
38108
38113
  f
38109
38114
  );
38110
38115
  }
38116
+ f = message.getUserBonusId();
38117
+ if (f !== 0) {
38118
+ writer.writeInt64(
38119
+ 13,
38120
+ f
38121
+ );
38122
+ }
38111
38123
  };
38112
38124
 
38113
38125
 
@@ -38381,6 +38393,24 @@ proto.game.FreeSpinBonusCampaignRequest.prototype.hasProviderExtras = function()
38381
38393
  };
38382
38394
 
38383
38395
 
38396
+ /**
38397
+ * optional int64 user_bonus_id = 13;
38398
+ * @return {number}
38399
+ */
38400
+ proto.game.FreeSpinBonusCampaignRequest.prototype.getUserBonusId = function() {
38401
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 13, 0));
38402
+ };
38403
+
38404
+
38405
+ /**
38406
+ * @param {number} value
38407
+ * @return {!proto.game.FreeSpinBonusCampaignRequest} returns this
38408
+ */
38409
+ proto.game.FreeSpinBonusCampaignRequest.prototype.setUserBonusId = function(value) {
38410
+ return jspb.Message.setProto3IntField(this, 13, value);
38411
+ };
38412
+
38413
+
38384
38414
 
38385
38415
 
38386
38416
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protobuf-platform",
3
- "version": "1.2.536",
3
+ "version": "1.2.537",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {