protobuf-platform 1.0.132 → 1.0.134

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
@@ -4,6 +4,8 @@ package bonus;
4
4
 
5
5
  service Bonus {
6
6
  rpc checkConnection(PingRequest) returns (PongResponse);
7
+ rpc getMediaResource(GetFileRequest) returns (stream File);
8
+ //Bonus
7
9
  rpc createSingleBonus(stream BonusRequest) returns (BonusResponse);
8
10
  rpc readSingleBonus(GetBonusRequest) returns (BonusResponse);
9
11
  rpc updateSingleBonus(stream BonusRequest) returns (BonusResponse);
@@ -77,24 +79,23 @@ message BonusItem {
77
79
  optional int32 id = 1;
78
80
  optional string title = 2;
79
81
  optional string description = 3;
80
- optional string file_name = 4;
81
- optional string file_type = 5;
82
- optional string status = 6;
83
- optional string type = 7;
84
- optional int32 wager_x = 8;
85
- optional int32 payout_x = 9;
86
- optional bool is_real_wagering = 10;
87
- optional bool is_bonus_wagering = 11;
88
- optional int32 repeat_count = 12;
89
- optional int32 wager_games_list_id = 13;
90
- optional string started_at = 14;
91
- optional string finished_at = 15;
92
- optional string show_previous_at = 16;
93
- optional int32 claim_period_in_hours = 17;
94
- optional int32 activation_period_in_hours = 18;
95
- optional int32 wagering_period_in_hours = 19;
96
- repeated ActivationRule activation_rules = 20;
97
- repeated BonusReward rewards = 21;
82
+ optional string image = 4;
83
+ optional string status = 5;
84
+ optional string type = 6;
85
+ optional int32 wager_x = 7;
86
+ optional int32 payout_x = 8;
87
+ optional bool is_real_wagering = 9;
88
+ optional bool is_bonus_wagering = 10;
89
+ optional int32 repeat_count = 11;
90
+ optional int32 wager_games_list_id = 12;
91
+ optional string started_at = 13;
92
+ optional string finished_at = 14;
93
+ optional string show_previous_at = 15;
94
+ optional int32 claim_period_in_hours = 16;
95
+ optional int32 activation_period_in_hours = 17;
96
+ optional int32 wagering_period_in_hours = 18;
97
+ repeated ActivationRule activation_rules = 19;
98
+ repeated BonusReward rewards = 20;
98
99
  }
99
100
  message BonusItemsResponse {
100
101
  repeated BonusItem items = 1;
@@ -70,6 +70,17 @@ function deserialize_bonus_BonusTypesResponse(buffer_arg) {
70
70
  return bonus_pb.BonusTypesResponse.deserializeBinary(new Uint8Array(buffer_arg));
71
71
  }
72
72
 
73
+ function serialize_bonus_File(arg) {
74
+ if (!(arg instanceof bonus_pb.File)) {
75
+ throw new Error('Expected argument of type bonus.File');
76
+ }
77
+ return Buffer.from(arg.serializeBinary());
78
+ }
79
+
80
+ function deserialize_bonus_File(buffer_arg) {
81
+ return bonus_pb.File.deserializeBinary(new Uint8Array(buffer_arg));
82
+ }
83
+
73
84
  function serialize_bonus_GetBonusRequest(arg) {
74
85
  if (!(arg instanceof bonus_pb.GetBonusRequest)) {
75
86
  throw new Error('Expected argument of type bonus.GetBonusRequest');
@@ -81,6 +92,17 @@ function deserialize_bonus_GetBonusRequest(buffer_arg) {
81
92
  return bonus_pb.GetBonusRequest.deserializeBinary(new Uint8Array(buffer_arg));
82
93
  }
83
94
 
95
+ function serialize_bonus_GetFileRequest(arg) {
96
+ if (!(arg instanceof bonus_pb.GetFileRequest)) {
97
+ throw new Error('Expected argument of type bonus.GetFileRequest');
98
+ }
99
+ return Buffer.from(arg.serializeBinary());
100
+ }
101
+
102
+ function deserialize_bonus_GetFileRequest(buffer_arg) {
103
+ return bonus_pb.GetFileRequest.deserializeBinary(new Uint8Array(buffer_arg));
104
+ }
105
+
84
106
  function serialize_bonus_PaginationRequest(arg) {
85
107
  if (!(arg instanceof bonus_pb.PaginationRequest)) {
86
108
  throw new Error('Expected argument of type bonus.PaginationRequest');
@@ -127,7 +149,19 @@ var BonusService = exports.BonusService = {
127
149
  responseSerialize: serialize_bonus_PongResponse,
128
150
  responseDeserialize: deserialize_bonus_PongResponse,
129
151
  },
130
- createSingleBonus: {
152
+ getMediaResource: {
153
+ path: '/bonus.Bonus/getMediaResource',
154
+ requestStream: false,
155
+ responseStream: true,
156
+ requestType: bonus_pb.GetFileRequest,
157
+ responseType: bonus_pb.File,
158
+ requestSerialize: serialize_bonus_GetFileRequest,
159
+ requestDeserialize: deserialize_bonus_GetFileRequest,
160
+ responseSerialize: serialize_bonus_File,
161
+ responseDeserialize: deserialize_bonus_File,
162
+ },
163
+ // Bonus
164
+ createSingleBonus: {
131
165
  path: '/bonus.Bonus/createSingleBonus',
132
166
  requestStream: true,
133
167
  responseStream: false,
package/bonus/bonus_pb.js CHANGED
@@ -3473,7 +3473,7 @@ proto.bonus.BonusResponse.prototype.hasData = function() {
3473
3473
  * @private {!Array<number>}
3474
3474
  * @const
3475
3475
  */
3476
- proto.bonus.BonusItem.repeatedFields_ = [20,21];
3476
+ proto.bonus.BonusItem.repeatedFields_ = [19,20];
3477
3477
 
3478
3478
 
3479
3479
 
@@ -3509,22 +3509,21 @@ proto.bonus.BonusItem.toObject = function(includeInstance, msg) {
3509
3509
  id: jspb.Message.getFieldWithDefault(msg, 1, 0),
3510
3510
  title: jspb.Message.getFieldWithDefault(msg, 2, ""),
3511
3511
  description: jspb.Message.getFieldWithDefault(msg, 3, ""),
3512
- fileName: jspb.Message.getFieldWithDefault(msg, 4, ""),
3513
- fileType: jspb.Message.getFieldWithDefault(msg, 5, ""),
3514
- status: jspb.Message.getFieldWithDefault(msg, 6, ""),
3515
- type: jspb.Message.getFieldWithDefault(msg, 7, ""),
3516
- wagerX: jspb.Message.getFieldWithDefault(msg, 8, 0),
3517
- payoutX: jspb.Message.getFieldWithDefault(msg, 9, 0),
3518
- isRealWagering: jspb.Message.getBooleanFieldWithDefault(msg, 10, false),
3519
- isBonusWagering: jspb.Message.getBooleanFieldWithDefault(msg, 11, false),
3520
- repeatCount: jspb.Message.getFieldWithDefault(msg, 12, 0),
3521
- wagerGamesListId: jspb.Message.getFieldWithDefault(msg, 13, 0),
3522
- startedAt: jspb.Message.getFieldWithDefault(msg, 14, ""),
3523
- finishedAt: jspb.Message.getFieldWithDefault(msg, 15, ""),
3524
- showPreviousAt: jspb.Message.getFieldWithDefault(msg, 16, ""),
3525
- claimPeriodInHours: jspb.Message.getFieldWithDefault(msg, 17, 0),
3526
- activationPeriodInHours: jspb.Message.getFieldWithDefault(msg, 18, 0),
3527
- wageringPeriodInHours: jspb.Message.getFieldWithDefault(msg, 19, 0),
3512
+ image: jspb.Message.getFieldWithDefault(msg, 4, ""),
3513
+ status: jspb.Message.getFieldWithDefault(msg, 5, ""),
3514
+ type: jspb.Message.getFieldWithDefault(msg, 6, ""),
3515
+ wagerX: jspb.Message.getFieldWithDefault(msg, 7, 0),
3516
+ payoutX: jspb.Message.getFieldWithDefault(msg, 8, 0),
3517
+ isRealWagering: jspb.Message.getBooleanFieldWithDefault(msg, 9, false),
3518
+ isBonusWagering: jspb.Message.getBooleanFieldWithDefault(msg, 10, false),
3519
+ repeatCount: jspb.Message.getFieldWithDefault(msg, 11, 0),
3520
+ wagerGamesListId: jspb.Message.getFieldWithDefault(msg, 12, 0),
3521
+ startedAt: jspb.Message.getFieldWithDefault(msg, 13, ""),
3522
+ finishedAt: jspb.Message.getFieldWithDefault(msg, 14, ""),
3523
+ showPreviousAt: jspb.Message.getFieldWithDefault(msg, 15, ""),
3524
+ claimPeriodInHours: jspb.Message.getFieldWithDefault(msg, 16, 0),
3525
+ activationPeriodInHours: jspb.Message.getFieldWithDefault(msg, 17, 0),
3526
+ wageringPeriodInHours: jspb.Message.getFieldWithDefault(msg, 18, 0),
3528
3527
  activationRulesList: jspb.Message.toObjectList(msg.getActivationRulesList(),
3529
3528
  proto.bonus.ActivationRule.toObject, includeInstance),
3530
3529
  rewardsList: jspb.Message.toObjectList(msg.getRewardsList(),
@@ -3579,74 +3578,70 @@ proto.bonus.BonusItem.deserializeBinaryFromReader = function(msg, reader) {
3579
3578
  break;
3580
3579
  case 4:
3581
3580
  var value = /** @type {string} */ (reader.readString());
3582
- msg.setFileName(value);
3581
+ msg.setImage(value);
3583
3582
  break;
3584
3583
  case 5:
3585
- var value = /** @type {string} */ (reader.readString());
3586
- msg.setFileType(value);
3587
- break;
3588
- case 6:
3589
3584
  var value = /** @type {string} */ (reader.readString());
3590
3585
  msg.setStatus(value);
3591
3586
  break;
3592
- case 7:
3587
+ case 6:
3593
3588
  var value = /** @type {string} */ (reader.readString());
3594
3589
  msg.setType(value);
3595
3590
  break;
3596
- case 8:
3591
+ case 7:
3597
3592
  var value = /** @type {number} */ (reader.readInt32());
3598
3593
  msg.setWagerX(value);
3599
3594
  break;
3600
- case 9:
3595
+ case 8:
3601
3596
  var value = /** @type {number} */ (reader.readInt32());
3602
3597
  msg.setPayoutX(value);
3603
3598
  break;
3604
- case 10:
3599
+ case 9:
3605
3600
  var value = /** @type {boolean} */ (reader.readBool());
3606
3601
  msg.setIsRealWagering(value);
3607
3602
  break;
3608
- case 11:
3603
+ case 10:
3609
3604
  var value = /** @type {boolean} */ (reader.readBool());
3610
3605
  msg.setIsBonusWagering(value);
3611
3606
  break;
3612
- case 12:
3607
+ case 11:
3613
3608
  var value = /** @type {number} */ (reader.readInt32());
3614
3609
  msg.setRepeatCount(value);
3615
3610
  break;
3616
- case 13:
3611
+ case 12:
3617
3612
  var value = /** @type {number} */ (reader.readInt32());
3618
3613
  msg.setWagerGamesListId(value);
3619
3614
  break;
3620
- case 14:
3615
+ case 13:
3621
3616
  var value = /** @type {string} */ (reader.readString());
3622
3617
  msg.setStartedAt(value);
3623
3618
  break;
3624
- case 15:
3619
+ case 14:
3625
3620
  var value = /** @type {string} */ (reader.readString());
3626
3621
  msg.setFinishedAt(value);
3627
3622
  break;
3628
- case 16:
3623
+ case 15:
3629
3624
  var value = /** @type {string} */ (reader.readString());
3630
3625
  msg.setShowPreviousAt(value);
3631
3626
  break;
3632
- case 17:
3627
+ case 16:
3633
3628
  var value = /** @type {number} */ (reader.readInt32());
3634
3629
  msg.setClaimPeriodInHours(value);
3635
3630
  break;
3636
- case 18:
3631
+ case 17:
3637
3632
  var value = /** @type {number} */ (reader.readInt32());
3638
3633
  msg.setActivationPeriodInHours(value);
3639
3634
  break;
3640
- case 19:
3635
+ case 18:
3641
3636
  var value = /** @type {number} */ (reader.readInt32());
3642
3637
  msg.setWageringPeriodInHours(value);
3643
3638
  break;
3644
- case 20:
3639
+ case 19:
3645
3640
  var value = new proto.bonus.ActivationRule;
3646
3641
  reader.readMessage(value,proto.bonus.ActivationRule.deserializeBinaryFromReader);
3647
3642
  msg.addActivationRules(value);
3648
3643
  break;
3649
- case 21:
3644
+ case 20:
3650
3645
  var value = new proto.bonus.BonusReward;
3651
3646
  reader.readMessage(value,proto.bonus.BonusReward.deserializeBinaryFromReader);
3652
3647
  msg.addRewards(value);
@@ -3722,9 +3717,9 @@ proto.bonus.BonusItem.serializeBinaryToWriter = function(message, writer) {
3722
3717
  f
3723
3718
  );
3724
3719
  }
3725
- f = /** @type {string} */ (jspb.Message.getField(message, 7));
3720
+ f = /** @type {number} */ (jspb.Message.getField(message, 7));
3726
3721
  if (f != null) {
3727
- writer.writeString(
3722
+ writer.writeInt32(
3728
3723
  7,
3729
3724
  f
3730
3725
  );
@@ -3736,9 +3731,9 @@ proto.bonus.BonusItem.serializeBinaryToWriter = function(message, writer) {
3736
3731
  f
3737
3732
  );
3738
3733
  }
3739
- f = /** @type {number} */ (jspb.Message.getField(message, 9));
3734
+ f = /** @type {boolean} */ (jspb.Message.getField(message, 9));
3740
3735
  if (f != null) {
3741
- writer.writeInt32(
3736
+ writer.writeBool(
3742
3737
  9,
3743
3738
  f
3744
3739
  );
@@ -3750,9 +3745,9 @@ proto.bonus.BonusItem.serializeBinaryToWriter = function(message, writer) {
3750
3745
  f
3751
3746
  );
3752
3747
  }
3753
- f = /** @type {boolean} */ (jspb.Message.getField(message, 11));
3748
+ f = /** @type {number} */ (jspb.Message.getField(message, 11));
3754
3749
  if (f != null) {
3755
- writer.writeBool(
3750
+ writer.writeInt32(
3756
3751
  11,
3757
3752
  f
3758
3753
  );
@@ -3764,9 +3759,9 @@ proto.bonus.BonusItem.serializeBinaryToWriter = function(message, writer) {
3764
3759
  f
3765
3760
  );
3766
3761
  }
3767
- f = /** @type {number} */ (jspb.Message.getField(message, 13));
3762
+ f = /** @type {string} */ (jspb.Message.getField(message, 13));
3768
3763
  if (f != null) {
3769
- writer.writeInt32(
3764
+ writer.writeString(
3770
3765
  13,
3771
3766
  f
3772
3767
  );
@@ -3785,9 +3780,9 @@ proto.bonus.BonusItem.serializeBinaryToWriter = function(message, writer) {
3785
3780
  f
3786
3781
  );
3787
3782
  }
3788
- f = /** @type {string} */ (jspb.Message.getField(message, 16));
3783
+ f = /** @type {number} */ (jspb.Message.getField(message, 16));
3789
3784
  if (f != null) {
3790
- writer.writeString(
3785
+ writer.writeInt32(
3791
3786
  16,
3792
3787
  f
3793
3788
  );
@@ -3806,17 +3801,10 @@ proto.bonus.BonusItem.serializeBinaryToWriter = function(message, writer) {
3806
3801
  f
3807
3802
  );
3808
3803
  }
3809
- f = /** @type {number} */ (jspb.Message.getField(message, 19));
3810
- if (f != null) {
3811
- writer.writeInt32(
3812
- 19,
3813
- f
3814
- );
3815
- }
3816
3804
  f = message.getActivationRulesList();
3817
3805
  if (f.length > 0) {
3818
3806
  writer.writeRepeatedMessage(
3819
- 20,
3807
+ 19,
3820
3808
  f,
3821
3809
  proto.bonus.ActivationRule.serializeBinaryToWriter
3822
3810
  );
@@ -3824,7 +3812,7 @@ proto.bonus.BonusItem.serializeBinaryToWriter = function(message, writer) {
3824
3812
  f = message.getRewardsList();
3825
3813
  if (f.length > 0) {
3826
3814
  writer.writeRepeatedMessage(
3827
- 21,
3815
+ 20,
3828
3816
  f,
3829
3817
  proto.bonus.BonusReward.serializeBinaryToWriter
3830
3818
  );
@@ -3941,10 +3929,10 @@ proto.bonus.BonusItem.prototype.hasDescription = function() {
3941
3929
 
3942
3930
 
3943
3931
  /**
3944
- * optional string file_name = 4;
3932
+ * optional string image = 4;
3945
3933
  * @return {string}
3946
3934
  */
3947
- proto.bonus.BonusItem.prototype.getFileName = function() {
3935
+ proto.bonus.BonusItem.prototype.getImage = function() {
3948
3936
  return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
3949
3937
  };
3950
3938
 
@@ -3953,7 +3941,7 @@ proto.bonus.BonusItem.prototype.getFileName = function() {
3953
3941
  * @param {string} value
3954
3942
  * @return {!proto.bonus.BonusItem} returns this
3955
3943
  */
3956
- proto.bonus.BonusItem.prototype.setFileName = function(value) {
3944
+ proto.bonus.BonusItem.prototype.setImage = function(value) {
3957
3945
  return jspb.Message.setField(this, 4, value);
3958
3946
  };
3959
3947
 
@@ -3962,7 +3950,7 @@ proto.bonus.BonusItem.prototype.setFileName = function(value) {
3962
3950
  * Clears the field making it undefined.
3963
3951
  * @return {!proto.bonus.BonusItem} returns this
3964
3952
  */
3965
- proto.bonus.BonusItem.prototype.clearFileName = function() {
3953
+ proto.bonus.BonusItem.prototype.clearImage = function() {
3966
3954
  return jspb.Message.setField(this, 4, undefined);
3967
3955
  };
3968
3956
 
@@ -3971,53 +3959,17 @@ proto.bonus.BonusItem.prototype.clearFileName = function() {
3971
3959
  * Returns whether this field is set.
3972
3960
  * @return {boolean}
3973
3961
  */
3974
- proto.bonus.BonusItem.prototype.hasFileName = function() {
3962
+ proto.bonus.BonusItem.prototype.hasImage = function() {
3975
3963
  return jspb.Message.getField(this, 4) != null;
3976
3964
  };
3977
3965
 
3978
3966
 
3979
3967
  /**
3980
- * optional string file_type = 5;
3981
- * @return {string}
3982
- */
3983
- proto.bonus.BonusItem.prototype.getFileType = function() {
3984
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
3985
- };
3986
-
3987
-
3988
- /**
3989
- * @param {string} value
3990
- * @return {!proto.bonus.BonusItem} returns this
3991
- */
3992
- proto.bonus.BonusItem.prototype.setFileType = function(value) {
3993
- return jspb.Message.setField(this, 5, value);
3994
- };
3995
-
3996
-
3997
- /**
3998
- * Clears the field making it undefined.
3999
- * @return {!proto.bonus.BonusItem} returns this
4000
- */
4001
- proto.bonus.BonusItem.prototype.clearFileType = function() {
4002
- return jspb.Message.setField(this, 5, undefined);
4003
- };
4004
-
4005
-
4006
- /**
4007
- * Returns whether this field is set.
4008
- * @return {boolean}
4009
- */
4010
- proto.bonus.BonusItem.prototype.hasFileType = function() {
4011
- return jspb.Message.getField(this, 5) != null;
4012
- };
4013
-
4014
-
4015
- /**
4016
- * optional string status = 6;
3968
+ * optional string status = 5;
4017
3969
  * @return {string}
4018
3970
  */
4019
3971
  proto.bonus.BonusItem.prototype.getStatus = function() {
4020
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
3972
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
4021
3973
  };
4022
3974
 
4023
3975
 
@@ -4026,7 +3978,7 @@ proto.bonus.BonusItem.prototype.getStatus = function() {
4026
3978
  * @return {!proto.bonus.BonusItem} returns this
4027
3979
  */
4028
3980
  proto.bonus.BonusItem.prototype.setStatus = function(value) {
4029
- return jspb.Message.setField(this, 6, value);
3981
+ return jspb.Message.setField(this, 5, value);
4030
3982
  };
4031
3983
 
4032
3984
 
@@ -4035,7 +3987,7 @@ proto.bonus.BonusItem.prototype.setStatus = function(value) {
4035
3987
  * @return {!proto.bonus.BonusItem} returns this
4036
3988
  */
4037
3989
  proto.bonus.BonusItem.prototype.clearStatus = function() {
4038
- return jspb.Message.setField(this, 6, undefined);
3990
+ return jspb.Message.setField(this, 5, undefined);
4039
3991
  };
4040
3992
 
4041
3993
 
@@ -4044,16 +3996,16 @@ proto.bonus.BonusItem.prototype.clearStatus = function() {
4044
3996
  * @return {boolean}
4045
3997
  */
4046
3998
  proto.bonus.BonusItem.prototype.hasStatus = function() {
4047
- return jspb.Message.getField(this, 6) != null;
3999
+ return jspb.Message.getField(this, 5) != null;
4048
4000
  };
4049
4001
 
4050
4002
 
4051
4003
  /**
4052
- * optional string type = 7;
4004
+ * optional string type = 6;
4053
4005
  * @return {string}
4054
4006
  */
4055
4007
  proto.bonus.BonusItem.prototype.getType = function() {
4056
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
4008
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
4057
4009
  };
4058
4010
 
4059
4011
 
@@ -4062,7 +4014,7 @@ proto.bonus.BonusItem.prototype.getType = function() {
4062
4014
  * @return {!proto.bonus.BonusItem} returns this
4063
4015
  */
4064
4016
  proto.bonus.BonusItem.prototype.setType = function(value) {
4065
- return jspb.Message.setField(this, 7, value);
4017
+ return jspb.Message.setField(this, 6, value);
4066
4018
  };
4067
4019
 
4068
4020
 
@@ -4071,7 +4023,7 @@ proto.bonus.BonusItem.prototype.setType = function(value) {
4071
4023
  * @return {!proto.bonus.BonusItem} returns this
4072
4024
  */
4073
4025
  proto.bonus.BonusItem.prototype.clearType = function() {
4074
- return jspb.Message.setField(this, 7, undefined);
4026
+ return jspb.Message.setField(this, 6, undefined);
4075
4027
  };
4076
4028
 
4077
4029
 
@@ -4080,16 +4032,16 @@ proto.bonus.BonusItem.prototype.clearType = function() {
4080
4032
  * @return {boolean}
4081
4033
  */
4082
4034
  proto.bonus.BonusItem.prototype.hasType = function() {
4083
- return jspb.Message.getField(this, 7) != null;
4035
+ return jspb.Message.getField(this, 6) != null;
4084
4036
  };
4085
4037
 
4086
4038
 
4087
4039
  /**
4088
- * optional int32 wager_x = 8;
4040
+ * optional int32 wager_x = 7;
4089
4041
  * @return {number}
4090
4042
  */
4091
4043
  proto.bonus.BonusItem.prototype.getWagerX = function() {
4092
- return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 8, 0));
4044
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 7, 0));
4093
4045
  };
4094
4046
 
4095
4047
 
@@ -4098,7 +4050,7 @@ proto.bonus.BonusItem.prototype.getWagerX = function() {
4098
4050
  * @return {!proto.bonus.BonusItem} returns this
4099
4051
  */
4100
4052
  proto.bonus.BonusItem.prototype.setWagerX = function(value) {
4101
- return jspb.Message.setField(this, 8, value);
4053
+ return jspb.Message.setField(this, 7, value);
4102
4054
  };
4103
4055
 
4104
4056
 
@@ -4107,7 +4059,7 @@ proto.bonus.BonusItem.prototype.setWagerX = function(value) {
4107
4059
  * @return {!proto.bonus.BonusItem} returns this
4108
4060
  */
4109
4061
  proto.bonus.BonusItem.prototype.clearWagerX = function() {
4110
- return jspb.Message.setField(this, 8, undefined);
4062
+ return jspb.Message.setField(this, 7, undefined);
4111
4063
  };
4112
4064
 
4113
4065
 
@@ -4116,16 +4068,16 @@ proto.bonus.BonusItem.prototype.clearWagerX = function() {
4116
4068
  * @return {boolean}
4117
4069
  */
4118
4070
  proto.bonus.BonusItem.prototype.hasWagerX = function() {
4119
- return jspb.Message.getField(this, 8) != null;
4071
+ return jspb.Message.getField(this, 7) != null;
4120
4072
  };
4121
4073
 
4122
4074
 
4123
4075
  /**
4124
- * optional int32 payout_x = 9;
4076
+ * optional int32 payout_x = 8;
4125
4077
  * @return {number}
4126
4078
  */
4127
4079
  proto.bonus.BonusItem.prototype.getPayoutX = function() {
4128
- return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 9, 0));
4080
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 8, 0));
4129
4081
  };
4130
4082
 
4131
4083
 
@@ -4134,7 +4086,7 @@ proto.bonus.BonusItem.prototype.getPayoutX = function() {
4134
4086
  * @return {!proto.bonus.BonusItem} returns this
4135
4087
  */
4136
4088
  proto.bonus.BonusItem.prototype.setPayoutX = function(value) {
4137
- return jspb.Message.setField(this, 9, value);
4089
+ return jspb.Message.setField(this, 8, value);
4138
4090
  };
4139
4091
 
4140
4092
 
@@ -4143,7 +4095,7 @@ proto.bonus.BonusItem.prototype.setPayoutX = function(value) {
4143
4095
  * @return {!proto.bonus.BonusItem} returns this
4144
4096
  */
4145
4097
  proto.bonus.BonusItem.prototype.clearPayoutX = function() {
4146
- return jspb.Message.setField(this, 9, undefined);
4098
+ return jspb.Message.setField(this, 8, undefined);
4147
4099
  };
4148
4100
 
4149
4101
 
@@ -4152,16 +4104,16 @@ proto.bonus.BonusItem.prototype.clearPayoutX = function() {
4152
4104
  * @return {boolean}
4153
4105
  */
4154
4106
  proto.bonus.BonusItem.prototype.hasPayoutX = function() {
4155
- return jspb.Message.getField(this, 9) != null;
4107
+ return jspb.Message.getField(this, 8) != null;
4156
4108
  };
4157
4109
 
4158
4110
 
4159
4111
  /**
4160
- * optional bool is_real_wagering = 10;
4112
+ * optional bool is_real_wagering = 9;
4161
4113
  * @return {boolean}
4162
4114
  */
4163
4115
  proto.bonus.BonusItem.prototype.getIsRealWagering = function() {
4164
- return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 10, false));
4116
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 9, false));
4165
4117
  };
4166
4118
 
4167
4119
 
@@ -4170,7 +4122,7 @@ proto.bonus.BonusItem.prototype.getIsRealWagering = function() {
4170
4122
  * @return {!proto.bonus.BonusItem} returns this
4171
4123
  */
4172
4124
  proto.bonus.BonusItem.prototype.setIsRealWagering = function(value) {
4173
- return jspb.Message.setField(this, 10, value);
4125
+ return jspb.Message.setField(this, 9, value);
4174
4126
  };
4175
4127
 
4176
4128
 
@@ -4179,7 +4131,7 @@ proto.bonus.BonusItem.prototype.setIsRealWagering = function(value) {
4179
4131
  * @return {!proto.bonus.BonusItem} returns this
4180
4132
  */
4181
4133
  proto.bonus.BonusItem.prototype.clearIsRealWagering = function() {
4182
- return jspb.Message.setField(this, 10, undefined);
4134
+ return jspb.Message.setField(this, 9, undefined);
4183
4135
  };
4184
4136
 
4185
4137
 
@@ -4188,16 +4140,16 @@ proto.bonus.BonusItem.prototype.clearIsRealWagering = function() {
4188
4140
  * @return {boolean}
4189
4141
  */
4190
4142
  proto.bonus.BonusItem.prototype.hasIsRealWagering = function() {
4191
- return jspb.Message.getField(this, 10) != null;
4143
+ return jspb.Message.getField(this, 9) != null;
4192
4144
  };
4193
4145
 
4194
4146
 
4195
4147
  /**
4196
- * optional bool is_bonus_wagering = 11;
4148
+ * optional bool is_bonus_wagering = 10;
4197
4149
  * @return {boolean}
4198
4150
  */
4199
4151
  proto.bonus.BonusItem.prototype.getIsBonusWagering = function() {
4200
- return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 11, false));
4152
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 10, false));
4201
4153
  };
4202
4154
 
4203
4155
 
@@ -4206,7 +4158,7 @@ proto.bonus.BonusItem.prototype.getIsBonusWagering = function() {
4206
4158
  * @return {!proto.bonus.BonusItem} returns this
4207
4159
  */
4208
4160
  proto.bonus.BonusItem.prototype.setIsBonusWagering = function(value) {
4209
- return jspb.Message.setField(this, 11, value);
4161
+ return jspb.Message.setField(this, 10, value);
4210
4162
  };
4211
4163
 
4212
4164
 
@@ -4215,7 +4167,7 @@ proto.bonus.BonusItem.prototype.setIsBonusWagering = function(value) {
4215
4167
  * @return {!proto.bonus.BonusItem} returns this
4216
4168
  */
4217
4169
  proto.bonus.BonusItem.prototype.clearIsBonusWagering = function() {
4218
- return jspb.Message.setField(this, 11, undefined);
4170
+ return jspb.Message.setField(this, 10, undefined);
4219
4171
  };
4220
4172
 
4221
4173
 
@@ -4224,16 +4176,16 @@ proto.bonus.BonusItem.prototype.clearIsBonusWagering = function() {
4224
4176
  * @return {boolean}
4225
4177
  */
4226
4178
  proto.bonus.BonusItem.prototype.hasIsBonusWagering = function() {
4227
- return jspb.Message.getField(this, 11) != null;
4179
+ return jspb.Message.getField(this, 10) != null;
4228
4180
  };
4229
4181
 
4230
4182
 
4231
4183
  /**
4232
- * optional int32 repeat_count = 12;
4184
+ * optional int32 repeat_count = 11;
4233
4185
  * @return {number}
4234
4186
  */
4235
4187
  proto.bonus.BonusItem.prototype.getRepeatCount = function() {
4236
- return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 12, 0));
4188
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 11, 0));
4237
4189
  };
4238
4190
 
4239
4191
 
@@ -4242,7 +4194,7 @@ proto.bonus.BonusItem.prototype.getRepeatCount = function() {
4242
4194
  * @return {!proto.bonus.BonusItem} returns this
4243
4195
  */
4244
4196
  proto.bonus.BonusItem.prototype.setRepeatCount = function(value) {
4245
- return jspb.Message.setField(this, 12, value);
4197
+ return jspb.Message.setField(this, 11, value);
4246
4198
  };
4247
4199
 
4248
4200
 
@@ -4251,7 +4203,7 @@ proto.bonus.BonusItem.prototype.setRepeatCount = function(value) {
4251
4203
  * @return {!proto.bonus.BonusItem} returns this
4252
4204
  */
4253
4205
  proto.bonus.BonusItem.prototype.clearRepeatCount = function() {
4254
- return jspb.Message.setField(this, 12, undefined);
4206
+ return jspb.Message.setField(this, 11, undefined);
4255
4207
  };
4256
4208
 
4257
4209
 
@@ -4260,16 +4212,16 @@ proto.bonus.BonusItem.prototype.clearRepeatCount = function() {
4260
4212
  * @return {boolean}
4261
4213
  */
4262
4214
  proto.bonus.BonusItem.prototype.hasRepeatCount = function() {
4263
- return jspb.Message.getField(this, 12) != null;
4215
+ return jspb.Message.getField(this, 11) != null;
4264
4216
  };
4265
4217
 
4266
4218
 
4267
4219
  /**
4268
- * optional int32 wager_games_list_id = 13;
4220
+ * optional int32 wager_games_list_id = 12;
4269
4221
  * @return {number}
4270
4222
  */
4271
4223
  proto.bonus.BonusItem.prototype.getWagerGamesListId = function() {
4272
- return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 13, 0));
4224
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 12, 0));
4273
4225
  };
4274
4226
 
4275
4227
 
@@ -4278,7 +4230,7 @@ proto.bonus.BonusItem.prototype.getWagerGamesListId = function() {
4278
4230
  * @return {!proto.bonus.BonusItem} returns this
4279
4231
  */
4280
4232
  proto.bonus.BonusItem.prototype.setWagerGamesListId = function(value) {
4281
- return jspb.Message.setField(this, 13, value);
4233
+ return jspb.Message.setField(this, 12, value);
4282
4234
  };
4283
4235
 
4284
4236
 
@@ -4287,7 +4239,7 @@ proto.bonus.BonusItem.prototype.setWagerGamesListId = function(value) {
4287
4239
  * @return {!proto.bonus.BonusItem} returns this
4288
4240
  */
4289
4241
  proto.bonus.BonusItem.prototype.clearWagerGamesListId = function() {
4290
- return jspb.Message.setField(this, 13, undefined);
4242
+ return jspb.Message.setField(this, 12, undefined);
4291
4243
  };
4292
4244
 
4293
4245
 
@@ -4296,16 +4248,16 @@ proto.bonus.BonusItem.prototype.clearWagerGamesListId = function() {
4296
4248
  * @return {boolean}
4297
4249
  */
4298
4250
  proto.bonus.BonusItem.prototype.hasWagerGamesListId = function() {
4299
- return jspb.Message.getField(this, 13) != null;
4251
+ return jspb.Message.getField(this, 12) != null;
4300
4252
  };
4301
4253
 
4302
4254
 
4303
4255
  /**
4304
- * optional string started_at = 14;
4256
+ * optional string started_at = 13;
4305
4257
  * @return {string}
4306
4258
  */
4307
4259
  proto.bonus.BonusItem.prototype.getStartedAt = function() {
4308
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 14, ""));
4260
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
4309
4261
  };
4310
4262
 
4311
4263
 
@@ -4314,7 +4266,7 @@ proto.bonus.BonusItem.prototype.getStartedAt = function() {
4314
4266
  * @return {!proto.bonus.BonusItem} returns this
4315
4267
  */
4316
4268
  proto.bonus.BonusItem.prototype.setStartedAt = function(value) {
4317
- return jspb.Message.setField(this, 14, value);
4269
+ return jspb.Message.setField(this, 13, value);
4318
4270
  };
4319
4271
 
4320
4272
 
@@ -4323,7 +4275,7 @@ proto.bonus.BonusItem.prototype.setStartedAt = function(value) {
4323
4275
  * @return {!proto.bonus.BonusItem} returns this
4324
4276
  */
4325
4277
  proto.bonus.BonusItem.prototype.clearStartedAt = function() {
4326
- return jspb.Message.setField(this, 14, undefined);
4278
+ return jspb.Message.setField(this, 13, undefined);
4327
4279
  };
4328
4280
 
4329
4281
 
@@ -4332,16 +4284,16 @@ proto.bonus.BonusItem.prototype.clearStartedAt = function() {
4332
4284
  * @return {boolean}
4333
4285
  */
4334
4286
  proto.bonus.BonusItem.prototype.hasStartedAt = function() {
4335
- return jspb.Message.getField(this, 14) != null;
4287
+ return jspb.Message.getField(this, 13) != null;
4336
4288
  };
4337
4289
 
4338
4290
 
4339
4291
  /**
4340
- * optional string finished_at = 15;
4292
+ * optional string finished_at = 14;
4341
4293
  * @return {string}
4342
4294
  */
4343
4295
  proto.bonus.BonusItem.prototype.getFinishedAt = function() {
4344
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 15, ""));
4296
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 14, ""));
4345
4297
  };
4346
4298
 
4347
4299
 
@@ -4350,7 +4302,7 @@ proto.bonus.BonusItem.prototype.getFinishedAt = function() {
4350
4302
  * @return {!proto.bonus.BonusItem} returns this
4351
4303
  */
4352
4304
  proto.bonus.BonusItem.prototype.setFinishedAt = function(value) {
4353
- return jspb.Message.setField(this, 15, value);
4305
+ return jspb.Message.setField(this, 14, value);
4354
4306
  };
4355
4307
 
4356
4308
 
@@ -4359,7 +4311,7 @@ proto.bonus.BonusItem.prototype.setFinishedAt = function(value) {
4359
4311
  * @return {!proto.bonus.BonusItem} returns this
4360
4312
  */
4361
4313
  proto.bonus.BonusItem.prototype.clearFinishedAt = function() {
4362
- return jspb.Message.setField(this, 15, undefined);
4314
+ return jspb.Message.setField(this, 14, undefined);
4363
4315
  };
4364
4316
 
4365
4317
 
@@ -4368,16 +4320,16 @@ proto.bonus.BonusItem.prototype.clearFinishedAt = function() {
4368
4320
  * @return {boolean}
4369
4321
  */
4370
4322
  proto.bonus.BonusItem.prototype.hasFinishedAt = function() {
4371
- return jspb.Message.getField(this, 15) != null;
4323
+ return jspb.Message.getField(this, 14) != null;
4372
4324
  };
4373
4325
 
4374
4326
 
4375
4327
  /**
4376
- * optional string show_previous_at = 16;
4328
+ * optional string show_previous_at = 15;
4377
4329
  * @return {string}
4378
4330
  */
4379
4331
  proto.bonus.BonusItem.prototype.getShowPreviousAt = function() {
4380
- return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 16, ""));
4332
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 15, ""));
4381
4333
  };
4382
4334
 
4383
4335
 
@@ -4386,7 +4338,7 @@ proto.bonus.BonusItem.prototype.getShowPreviousAt = function() {
4386
4338
  * @return {!proto.bonus.BonusItem} returns this
4387
4339
  */
4388
4340
  proto.bonus.BonusItem.prototype.setShowPreviousAt = function(value) {
4389
- return jspb.Message.setField(this, 16, value);
4341
+ return jspb.Message.setField(this, 15, value);
4390
4342
  };
4391
4343
 
4392
4344
 
@@ -4395,7 +4347,7 @@ proto.bonus.BonusItem.prototype.setShowPreviousAt = function(value) {
4395
4347
  * @return {!proto.bonus.BonusItem} returns this
4396
4348
  */
4397
4349
  proto.bonus.BonusItem.prototype.clearShowPreviousAt = function() {
4398
- return jspb.Message.setField(this, 16, undefined);
4350
+ return jspb.Message.setField(this, 15, undefined);
4399
4351
  };
4400
4352
 
4401
4353
 
@@ -4404,16 +4356,16 @@ proto.bonus.BonusItem.prototype.clearShowPreviousAt = function() {
4404
4356
  * @return {boolean}
4405
4357
  */
4406
4358
  proto.bonus.BonusItem.prototype.hasShowPreviousAt = function() {
4407
- return jspb.Message.getField(this, 16) != null;
4359
+ return jspb.Message.getField(this, 15) != null;
4408
4360
  };
4409
4361
 
4410
4362
 
4411
4363
  /**
4412
- * optional int32 claim_period_in_hours = 17;
4364
+ * optional int32 claim_period_in_hours = 16;
4413
4365
  * @return {number}
4414
4366
  */
4415
4367
  proto.bonus.BonusItem.prototype.getClaimPeriodInHours = function() {
4416
- return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 17, 0));
4368
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 16, 0));
4417
4369
  };
4418
4370
 
4419
4371
 
@@ -4422,7 +4374,7 @@ proto.bonus.BonusItem.prototype.getClaimPeriodInHours = function() {
4422
4374
  * @return {!proto.bonus.BonusItem} returns this
4423
4375
  */
4424
4376
  proto.bonus.BonusItem.prototype.setClaimPeriodInHours = function(value) {
4425
- return jspb.Message.setField(this, 17, value);
4377
+ return jspb.Message.setField(this, 16, value);
4426
4378
  };
4427
4379
 
4428
4380
 
@@ -4431,7 +4383,7 @@ proto.bonus.BonusItem.prototype.setClaimPeriodInHours = function(value) {
4431
4383
  * @return {!proto.bonus.BonusItem} returns this
4432
4384
  */
4433
4385
  proto.bonus.BonusItem.prototype.clearClaimPeriodInHours = function() {
4434
- return jspb.Message.setField(this, 17, undefined);
4386
+ return jspb.Message.setField(this, 16, undefined);
4435
4387
  };
4436
4388
 
4437
4389
 
@@ -4440,16 +4392,16 @@ proto.bonus.BonusItem.prototype.clearClaimPeriodInHours = function() {
4440
4392
  * @return {boolean}
4441
4393
  */
4442
4394
  proto.bonus.BonusItem.prototype.hasClaimPeriodInHours = function() {
4443
- return jspb.Message.getField(this, 17) != null;
4395
+ return jspb.Message.getField(this, 16) != null;
4444
4396
  };
4445
4397
 
4446
4398
 
4447
4399
  /**
4448
- * optional int32 activation_period_in_hours = 18;
4400
+ * optional int32 activation_period_in_hours = 17;
4449
4401
  * @return {number}
4450
4402
  */
4451
4403
  proto.bonus.BonusItem.prototype.getActivationPeriodInHours = function() {
4452
- return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 18, 0));
4404
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 17, 0));
4453
4405
  };
4454
4406
 
4455
4407
 
@@ -4458,7 +4410,7 @@ proto.bonus.BonusItem.prototype.getActivationPeriodInHours = function() {
4458
4410
  * @return {!proto.bonus.BonusItem} returns this
4459
4411
  */
4460
4412
  proto.bonus.BonusItem.prototype.setActivationPeriodInHours = function(value) {
4461
- return jspb.Message.setField(this, 18, value);
4413
+ return jspb.Message.setField(this, 17, value);
4462
4414
  };
4463
4415
 
4464
4416
 
@@ -4467,7 +4419,7 @@ proto.bonus.BonusItem.prototype.setActivationPeriodInHours = function(value) {
4467
4419
  * @return {!proto.bonus.BonusItem} returns this
4468
4420
  */
4469
4421
  proto.bonus.BonusItem.prototype.clearActivationPeriodInHours = function() {
4470
- return jspb.Message.setField(this, 18, undefined);
4422
+ return jspb.Message.setField(this, 17, undefined);
4471
4423
  };
4472
4424
 
4473
4425
 
@@ -4476,16 +4428,16 @@ proto.bonus.BonusItem.prototype.clearActivationPeriodInHours = function() {
4476
4428
  * @return {boolean}
4477
4429
  */
4478
4430
  proto.bonus.BonusItem.prototype.hasActivationPeriodInHours = function() {
4479
- return jspb.Message.getField(this, 18) != null;
4431
+ return jspb.Message.getField(this, 17) != null;
4480
4432
  };
4481
4433
 
4482
4434
 
4483
4435
  /**
4484
- * optional int32 wagering_period_in_hours = 19;
4436
+ * optional int32 wagering_period_in_hours = 18;
4485
4437
  * @return {number}
4486
4438
  */
4487
4439
  proto.bonus.BonusItem.prototype.getWageringPeriodInHours = function() {
4488
- return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 19, 0));
4440
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 18, 0));
4489
4441
  };
4490
4442
 
4491
4443
 
@@ -4494,7 +4446,7 @@ proto.bonus.BonusItem.prototype.getWageringPeriodInHours = function() {
4494
4446
  * @return {!proto.bonus.BonusItem} returns this
4495
4447
  */
4496
4448
  proto.bonus.BonusItem.prototype.setWageringPeriodInHours = function(value) {
4497
- return jspb.Message.setField(this, 19, value);
4449
+ return jspb.Message.setField(this, 18, value);
4498
4450
  };
4499
4451
 
4500
4452
 
@@ -4503,7 +4455,7 @@ proto.bonus.BonusItem.prototype.setWageringPeriodInHours = function(value) {
4503
4455
  * @return {!proto.bonus.BonusItem} returns this
4504
4456
  */
4505
4457
  proto.bonus.BonusItem.prototype.clearWageringPeriodInHours = function() {
4506
- return jspb.Message.setField(this, 19, undefined);
4458
+ return jspb.Message.setField(this, 18, undefined);
4507
4459
  };
4508
4460
 
4509
4461
 
@@ -4512,17 +4464,17 @@ proto.bonus.BonusItem.prototype.clearWageringPeriodInHours = function() {
4512
4464
  * @return {boolean}
4513
4465
  */
4514
4466
  proto.bonus.BonusItem.prototype.hasWageringPeriodInHours = function() {
4515
- return jspb.Message.getField(this, 19) != null;
4467
+ return jspb.Message.getField(this, 18) != null;
4516
4468
  };
4517
4469
 
4518
4470
 
4519
4471
  /**
4520
- * repeated ActivationRule activation_rules = 20;
4472
+ * repeated ActivationRule activation_rules = 19;
4521
4473
  * @return {!Array<!proto.bonus.ActivationRule>}
4522
4474
  */
4523
4475
  proto.bonus.BonusItem.prototype.getActivationRulesList = function() {
4524
4476
  return /** @type{!Array<!proto.bonus.ActivationRule>} */ (
4525
- jspb.Message.getRepeatedWrapperField(this, proto.bonus.ActivationRule, 20));
4477
+ jspb.Message.getRepeatedWrapperField(this, proto.bonus.ActivationRule, 19));
4526
4478
  };
4527
4479
 
4528
4480
 
@@ -4531,7 +4483,7 @@ proto.bonus.BonusItem.prototype.getActivationRulesList = function() {
4531
4483
  * @return {!proto.bonus.BonusItem} returns this
4532
4484
  */
4533
4485
  proto.bonus.BonusItem.prototype.setActivationRulesList = function(value) {
4534
- return jspb.Message.setRepeatedWrapperField(this, 20, value);
4486
+ return jspb.Message.setRepeatedWrapperField(this, 19, value);
4535
4487
  };
4536
4488
 
4537
4489
 
@@ -4541,7 +4493,7 @@ proto.bonus.BonusItem.prototype.setActivationRulesList = function(value) {
4541
4493
  * @return {!proto.bonus.ActivationRule}
4542
4494
  */
4543
4495
  proto.bonus.BonusItem.prototype.addActivationRules = function(opt_value, opt_index) {
4544
- return jspb.Message.addToRepeatedWrapperField(this, 20, opt_value, proto.bonus.ActivationRule, opt_index);
4496
+ return jspb.Message.addToRepeatedWrapperField(this, 19, opt_value, proto.bonus.ActivationRule, opt_index);
4545
4497
  };
4546
4498
 
4547
4499
 
@@ -4555,12 +4507,12 @@ proto.bonus.BonusItem.prototype.clearActivationRulesList = function() {
4555
4507
 
4556
4508
 
4557
4509
  /**
4558
- * repeated BonusReward rewards = 21;
4510
+ * repeated BonusReward rewards = 20;
4559
4511
  * @return {!Array<!proto.bonus.BonusReward>}
4560
4512
  */
4561
4513
  proto.bonus.BonusItem.prototype.getRewardsList = function() {
4562
4514
  return /** @type{!Array<!proto.bonus.BonusReward>} */ (
4563
- jspb.Message.getRepeatedWrapperField(this, proto.bonus.BonusReward, 21));
4515
+ jspb.Message.getRepeatedWrapperField(this, proto.bonus.BonusReward, 20));
4564
4516
  };
4565
4517
 
4566
4518
 
@@ -4569,7 +4521,7 @@ proto.bonus.BonusItem.prototype.getRewardsList = function() {
4569
4521
  * @return {!proto.bonus.BonusItem} returns this
4570
4522
  */
4571
4523
  proto.bonus.BonusItem.prototype.setRewardsList = function(value) {
4572
- return jspb.Message.setRepeatedWrapperField(this, 21, value);
4524
+ return jspb.Message.setRepeatedWrapperField(this, 20, value);
4573
4525
  };
4574
4526
 
4575
4527
 
@@ -4579,7 +4531,7 @@ proto.bonus.BonusItem.prototype.setRewardsList = function(value) {
4579
4531
  * @return {!proto.bonus.BonusReward}
4580
4532
  */
4581
4533
  proto.bonus.BonusItem.prototype.addRewards = function(opt_value, opt_index) {
4582
- return jspb.Message.addToRepeatedWrapperField(this, 21, opt_value, proto.bonus.BonusReward, opt_index);
4534
+ return jspb.Message.addToRepeatedWrapperField(this, 20, opt_value, proto.bonus.BonusReward, opt_index);
4583
4535
  };
4584
4536
 
4585
4537
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protobuf-platform",
3
- "version": "1.0.132",
3
+ "version": "1.0.134",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {