protobuf-platform 1.1.36 → 1.1.37

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
@@ -103,7 +103,7 @@ message BonusItemRequest {
103
103
  optional int32 claim_period_in_hours = 17;
104
104
  optional int32 activation_period_in_hours = 18;
105
105
  optional int32 wagering_period_in_hours = 19;
106
- optional string status_data = 20;
106
+ optional string type_data = 20;
107
107
  }
108
108
  message GetBonusRequest {
109
109
  int32 id = 1;
package/bonus/bonus_pb.js CHANGED
@@ -3460,7 +3460,7 @@ proto.bonus.BonusItemRequest.toObject = function(includeInstance, msg) {
3460
3460
  claimPeriodInHours: jspb.Message.getFieldWithDefault(msg, 17, 0),
3461
3461
  activationPeriodInHours: jspb.Message.getFieldWithDefault(msg, 18, 0),
3462
3462
  wageringPeriodInHours: jspb.Message.getFieldWithDefault(msg, 19, 0),
3463
- statusData: jspb.Message.getFieldWithDefault(msg, 20, "")
3463
+ typeData: jspb.Message.getFieldWithDefault(msg, 20, "")
3464
3464
  };
3465
3465
 
3466
3466
  if (includeInstance) {
@@ -3575,7 +3575,7 @@ proto.bonus.BonusItemRequest.deserializeBinaryFromReader = function(msg, reader)
3575
3575
  break;
3576
3576
  case 20:
3577
3577
  var value = /** @type {string} */ (reader.readString());
3578
- msg.setStatusData(value);
3578
+ msg.setTypeData(value);
3579
3579
  break;
3580
3580
  default:
3581
3581
  reader.skipField();
@@ -4434,10 +4434,10 @@ proto.bonus.BonusItemRequest.prototype.hasWageringPeriodInHours = function() {
4434
4434
 
4435
4435
 
4436
4436
  /**
4437
- * optional string status_data = 20;
4437
+ * optional string type_data = 20;
4438
4438
  * @return {string}
4439
4439
  */
4440
- proto.bonus.BonusItemRequest.prototype.getStatusData = function() {
4440
+ proto.bonus.BonusItemRequest.prototype.getTypeData = function() {
4441
4441
  return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 20, ""));
4442
4442
  };
4443
4443
 
@@ -4446,7 +4446,7 @@ proto.bonus.BonusItemRequest.prototype.getStatusData = function() {
4446
4446
  * @param {string} value
4447
4447
  * @return {!proto.bonus.BonusItemRequest} returns this
4448
4448
  */
4449
- proto.bonus.BonusItemRequest.prototype.setStatusData = function(value) {
4449
+ proto.bonus.BonusItemRequest.prototype.setTypeData = function(value) {
4450
4450
  return jspb.Message.setField(this, 20, value);
4451
4451
  };
4452
4452
 
@@ -4455,7 +4455,7 @@ proto.bonus.BonusItemRequest.prototype.setStatusData = function(value) {
4455
4455
  * Clears the field making it undefined.
4456
4456
  * @return {!proto.bonus.BonusItemRequest} returns this
4457
4457
  */
4458
- proto.bonus.BonusItemRequest.prototype.clearStatusData = function() {
4458
+ proto.bonus.BonusItemRequest.prototype.clearTypeData = function() {
4459
4459
  return jspb.Message.setField(this, 20, undefined);
4460
4460
  };
4461
4461
 
@@ -4464,7 +4464,7 @@ proto.bonus.BonusItemRequest.prototype.clearStatusData = function() {
4464
4464
  * Returns whether this field is set.
4465
4465
  * @return {boolean}
4466
4466
  */
4467
- proto.bonus.BonusItemRequest.prototype.hasStatusData = function() {
4467
+ proto.bonus.BonusItemRequest.prototype.hasTypeData = function() {
4468
4468
  return jspb.Message.getField(this, 20) != null;
4469
4469
  };
4470
4470
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protobuf-platform",
3
- "version": "1.1.36",
3
+ "version": "1.1.37",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {