protobuf-platform 1.0.131 → 1.0.133
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 +17 -18
- package/bonus/bonus_pb.js +127 -175
- package/game/game.proto +5 -4
- package/game/game_pb.js +68 -20
- package/package.json +1 -1
package/bonus/bonus.proto
CHANGED
@@ -77,24 +77,23 @@ message BonusItem {
|
|
77
77
|
optional int32 id = 1;
|
78
78
|
optional string title = 2;
|
79
79
|
optional string description = 3;
|
80
|
-
optional string
|
81
|
-
optional string
|
82
|
-
optional string
|
83
|
-
optional
|
84
|
-
optional int32
|
85
|
-
optional
|
86
|
-
optional bool
|
87
|
-
optional
|
88
|
-
optional int32
|
89
|
-
optional
|
90
|
-
optional string
|
91
|
-
optional string
|
92
|
-
optional
|
93
|
-
optional int32
|
94
|
-
optional int32
|
95
|
-
|
96
|
-
repeated
|
97
|
-
repeated BonusReward rewards = 21;
|
80
|
+
optional string image = 4;
|
81
|
+
optional string status = 5;
|
82
|
+
optional string type = 6;
|
83
|
+
optional int32 wager_x = 7;
|
84
|
+
optional int32 payout_x = 8;
|
85
|
+
optional bool is_real_wagering = 9;
|
86
|
+
optional bool is_bonus_wagering = 10;
|
87
|
+
optional int32 repeat_count = 11;
|
88
|
+
optional int32 wager_games_list_id = 12;
|
89
|
+
optional string started_at = 13;
|
90
|
+
optional string finished_at = 14;
|
91
|
+
optional string show_previous_at = 15;
|
92
|
+
optional int32 claim_period_in_hours = 16;
|
93
|
+
optional int32 activation_period_in_hours = 17;
|
94
|
+
optional int32 wagering_period_in_hours = 18;
|
95
|
+
repeated ActivationRule activation_rules = 19;
|
96
|
+
repeated BonusReward rewards = 20;
|
98
97
|
}
|
99
98
|
message BonusItemsResponse {
|
100
99
|
repeated BonusItem items = 1;
|
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
|
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
|
-
|
3513
|
-
|
3514
|
-
|
3515
|
-
|
3516
|
-
|
3517
|
-
|
3518
|
-
|
3519
|
-
|
3520
|
-
|
3521
|
-
|
3522
|
-
|
3523
|
-
|
3524
|
-
|
3525
|
-
|
3526
|
-
|
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.
|
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
|
3587
|
+
case 6:
|
3593
3588
|
var value = /** @type {string} */ (reader.readString());
|
3594
3589
|
msg.setType(value);
|
3595
3590
|
break;
|
3596
|
-
case
|
3591
|
+
case 7:
|
3597
3592
|
var value = /** @type {number} */ (reader.readInt32());
|
3598
3593
|
msg.setWagerX(value);
|
3599
3594
|
break;
|
3600
|
-
case
|
3595
|
+
case 8:
|
3601
3596
|
var value = /** @type {number} */ (reader.readInt32());
|
3602
3597
|
msg.setPayoutX(value);
|
3603
3598
|
break;
|
3604
|
-
case
|
3599
|
+
case 9:
|
3605
3600
|
var value = /** @type {boolean} */ (reader.readBool());
|
3606
3601
|
msg.setIsRealWagering(value);
|
3607
3602
|
break;
|
3608
|
-
case
|
3603
|
+
case 10:
|
3609
3604
|
var value = /** @type {boolean} */ (reader.readBool());
|
3610
3605
|
msg.setIsBonusWagering(value);
|
3611
3606
|
break;
|
3612
|
-
case
|
3607
|
+
case 11:
|
3613
3608
|
var value = /** @type {number} */ (reader.readInt32());
|
3614
3609
|
msg.setRepeatCount(value);
|
3615
3610
|
break;
|
3616
|
-
case
|
3611
|
+
case 12:
|
3617
3612
|
var value = /** @type {number} */ (reader.readInt32());
|
3618
3613
|
msg.setWagerGamesListId(value);
|
3619
3614
|
break;
|
3620
|
-
case
|
3615
|
+
case 13:
|
3621
3616
|
var value = /** @type {string} */ (reader.readString());
|
3622
3617
|
msg.setStartedAt(value);
|
3623
3618
|
break;
|
3624
|
-
case
|
3619
|
+
case 14:
|
3625
3620
|
var value = /** @type {string} */ (reader.readString());
|
3626
3621
|
msg.setFinishedAt(value);
|
3627
3622
|
break;
|
3628
|
-
case
|
3623
|
+
case 15:
|
3629
3624
|
var value = /** @type {string} */ (reader.readString());
|
3630
3625
|
msg.setShowPreviousAt(value);
|
3631
3626
|
break;
|
3632
|
-
case
|
3627
|
+
case 16:
|
3633
3628
|
var value = /** @type {number} */ (reader.readInt32());
|
3634
3629
|
msg.setClaimPeriodInHours(value);
|
3635
3630
|
break;
|
3636
|
-
case
|
3631
|
+
case 17:
|
3637
3632
|
var value = /** @type {number} */ (reader.readInt32());
|
3638
3633
|
msg.setActivationPeriodInHours(value);
|
3639
3634
|
break;
|
3640
|
-
case
|
3635
|
+
case 18:
|
3641
3636
|
var value = /** @type {number} */ (reader.readInt32());
|
3642
3637
|
msg.setWageringPeriodInHours(value);
|
3643
3638
|
break;
|
3644
|
-
case
|
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
|
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 {
|
3720
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 7));
|
3726
3721
|
if (f != null) {
|
3727
|
-
writer.
|
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 {
|
3734
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 9));
|
3740
3735
|
if (f != null) {
|
3741
|
-
writer.
|
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 {
|
3748
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 11));
|
3754
3749
|
if (f != null) {
|
3755
|
-
writer.
|
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 {
|
3762
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 13));
|
3768
3763
|
if (f != null) {
|
3769
|
-
writer.
|
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 {
|
3783
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 16));
|
3789
3784
|
if (f != null) {
|
3790
|
-
writer.
|
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
|
-
|
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
|
-
|
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
|
3932
|
+
* optional string image = 4;
|
3945
3933
|
* @return {string}
|
3946
3934
|
*/
|
3947
|
-
proto.bonus.BonusItem.prototype.
|
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.
|
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.
|
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.
|
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
|
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,
|
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,
|
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,
|
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,
|
3999
|
+
return jspb.Message.getField(this, 5) != null;
|
4048
4000
|
};
|
4049
4001
|
|
4050
4002
|
|
4051
4003
|
/**
|
4052
|
-
* optional string type =
|
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,
|
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,
|
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,
|
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,
|
4035
|
+
return jspb.Message.getField(this, 6) != null;
|
4084
4036
|
};
|
4085
4037
|
|
4086
4038
|
|
4087
4039
|
/**
|
4088
|
-
* optional int32 wager_x =
|
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,
|
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,
|
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,
|
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,
|
4071
|
+
return jspb.Message.getField(this, 7) != null;
|
4120
4072
|
};
|
4121
4073
|
|
4122
4074
|
|
4123
4075
|
/**
|
4124
|
-
* optional int32 payout_x =
|
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,
|
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,
|
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,
|
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,
|
4107
|
+
return jspb.Message.getField(this, 8) != null;
|
4156
4108
|
};
|
4157
4109
|
|
4158
4110
|
|
4159
4111
|
/**
|
4160
|
-
* optional bool is_real_wagering =
|
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,
|
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,
|
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,
|
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,
|
4143
|
+
return jspb.Message.getField(this, 9) != null;
|
4192
4144
|
};
|
4193
4145
|
|
4194
4146
|
|
4195
4147
|
/**
|
4196
|
-
* optional bool is_bonus_wagering =
|
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,
|
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,
|
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,
|
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,
|
4179
|
+
return jspb.Message.getField(this, 10) != null;
|
4228
4180
|
};
|
4229
4181
|
|
4230
4182
|
|
4231
4183
|
/**
|
4232
|
-
* optional int32 repeat_count =
|
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,
|
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,
|
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,
|
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,
|
4215
|
+
return jspb.Message.getField(this, 11) != null;
|
4264
4216
|
};
|
4265
4217
|
|
4266
4218
|
|
4267
4219
|
/**
|
4268
|
-
* optional int32 wager_games_list_id =
|
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,
|
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,
|
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,
|
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,
|
4251
|
+
return jspb.Message.getField(this, 12) != null;
|
4300
4252
|
};
|
4301
4253
|
|
4302
4254
|
|
4303
4255
|
/**
|
4304
|
-
* optional string started_at =
|
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,
|
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,
|
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,
|
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,
|
4287
|
+
return jspb.Message.getField(this, 13) != null;
|
4336
4288
|
};
|
4337
4289
|
|
4338
4290
|
|
4339
4291
|
/**
|
4340
|
-
* optional string finished_at =
|
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,
|
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,
|
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,
|
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,
|
4323
|
+
return jspb.Message.getField(this, 14) != null;
|
4372
4324
|
};
|
4373
4325
|
|
4374
4326
|
|
4375
4327
|
/**
|
4376
|
-
* optional string show_previous_at =
|
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,
|
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,
|
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,
|
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,
|
4359
|
+
return jspb.Message.getField(this, 15) != null;
|
4408
4360
|
};
|
4409
4361
|
|
4410
4362
|
|
4411
4363
|
/**
|
4412
|
-
* optional int32 claim_period_in_hours =
|
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,
|
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,
|
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,
|
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,
|
4395
|
+
return jspb.Message.getField(this, 16) != null;
|
4444
4396
|
};
|
4445
4397
|
|
4446
4398
|
|
4447
4399
|
/**
|
4448
|
-
* optional int32 activation_period_in_hours =
|
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,
|
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,
|
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,
|
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,
|
4431
|
+
return jspb.Message.getField(this, 17) != null;
|
4480
4432
|
};
|
4481
4433
|
|
4482
4434
|
|
4483
4435
|
/**
|
4484
|
-
* optional int32 wagering_period_in_hours =
|
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,
|
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,
|
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,
|
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,
|
4467
|
+
return jspb.Message.getField(this, 18) != null;
|
4516
4468
|
};
|
4517
4469
|
|
4518
4470
|
|
4519
4471
|
/**
|
4520
|
-
* repeated ActivationRule activation_rules =
|
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,
|
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,
|
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,
|
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 =
|
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,
|
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,
|
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,
|
4534
|
+
return jspb.Message.addToRepeatedWrapperField(this, 20, opt_value, proto.bonus.BonusReward, opt_index);
|
4583
4535
|
};
|
4584
4536
|
|
4585
4537
|
|
package/game/game.proto
CHANGED
@@ -377,13 +377,14 @@ message InitDemoGameSessionRequest {
|
|
377
377
|
}
|
378
378
|
message InitGameSessionResponse {
|
379
379
|
string game_url = 1;
|
380
|
-
string game_uuid = 2;
|
380
|
+
optional string game_uuid = 2;
|
381
381
|
string game_title = 3;
|
382
382
|
string game_image = 4;
|
383
383
|
string game_slug = 5;
|
384
|
-
string
|
385
|
-
string
|
386
|
-
string
|
384
|
+
string game_description = 6;
|
385
|
+
string provider_title = 7;
|
386
|
+
string provider_slug = 8;
|
387
|
+
string user_id = 9;
|
387
388
|
}
|
388
389
|
message VendorActionRequest {
|
389
390
|
string data = 1;
|
package/game/game_pb.js
CHANGED
@@ -15874,9 +15874,10 @@ proto.game.InitGameSessionResponse.toObject = function(includeInstance, msg) {
|
|
15874
15874
|
gameTitle: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
15875
15875
|
gameImage: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
15876
15876
|
gameSlug: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
15877
|
-
|
15878
|
-
|
15879
|
-
|
15877
|
+
gameDescription: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
15878
|
+
providerTitle: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
15879
|
+
providerSlug: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
15880
|
+
userId: jspb.Message.getFieldWithDefault(msg, 9, "")
|
15880
15881
|
};
|
15881
15882
|
|
15882
15883
|
if (includeInstance) {
|
@@ -15935,13 +15936,17 @@ proto.game.InitGameSessionResponse.deserializeBinaryFromReader = function(msg, r
|
|
15935
15936
|
break;
|
15936
15937
|
case 6:
|
15937
15938
|
var value = /** @type {string} */ (reader.readString());
|
15938
|
-
msg.
|
15939
|
+
msg.setGameDescription(value);
|
15939
15940
|
break;
|
15940
15941
|
case 7:
|
15941
15942
|
var value = /** @type {string} */ (reader.readString());
|
15942
|
-
msg.
|
15943
|
+
msg.setProviderTitle(value);
|
15943
15944
|
break;
|
15944
15945
|
case 8:
|
15946
|
+
var value = /** @type {string} */ (reader.readString());
|
15947
|
+
msg.setProviderSlug(value);
|
15948
|
+
break;
|
15949
|
+
case 9:
|
15945
15950
|
var value = /** @type {string} */ (reader.readString());
|
15946
15951
|
msg.setUserId(value);
|
15947
15952
|
break;
|
@@ -15981,8 +15986,8 @@ proto.game.InitGameSessionResponse.serializeBinaryToWriter = function(message, w
|
|
15981
15986
|
f
|
15982
15987
|
);
|
15983
15988
|
}
|
15984
|
-
f =
|
15985
|
-
if (f
|
15989
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
15990
|
+
if (f != null) {
|
15986
15991
|
writer.writeString(
|
15987
15992
|
2,
|
15988
15993
|
f
|
@@ -16009,27 +16014,34 @@ proto.game.InitGameSessionResponse.serializeBinaryToWriter = function(message, w
|
|
16009
16014
|
f
|
16010
16015
|
);
|
16011
16016
|
}
|
16012
|
-
f = message.
|
16017
|
+
f = message.getGameDescription();
|
16013
16018
|
if (f.length > 0) {
|
16014
16019
|
writer.writeString(
|
16015
16020
|
6,
|
16016
16021
|
f
|
16017
16022
|
);
|
16018
16023
|
}
|
16019
|
-
f = message.
|
16024
|
+
f = message.getProviderTitle();
|
16020
16025
|
if (f.length > 0) {
|
16021
16026
|
writer.writeString(
|
16022
16027
|
7,
|
16023
16028
|
f
|
16024
16029
|
);
|
16025
16030
|
}
|
16026
|
-
f = message.
|
16031
|
+
f = message.getProviderSlug();
|
16027
16032
|
if (f.length > 0) {
|
16028
16033
|
writer.writeString(
|
16029
16034
|
8,
|
16030
16035
|
f
|
16031
16036
|
);
|
16032
16037
|
}
|
16038
|
+
f = message.getUserId();
|
16039
|
+
if (f.length > 0) {
|
16040
|
+
writer.writeString(
|
16041
|
+
9,
|
16042
|
+
f
|
16043
|
+
);
|
16044
|
+
}
|
16033
16045
|
};
|
16034
16046
|
|
16035
16047
|
|
@@ -16065,7 +16077,25 @@ proto.game.InitGameSessionResponse.prototype.getGameUuid = function() {
|
|
16065
16077
|
* @return {!proto.game.InitGameSessionResponse} returns this
|
16066
16078
|
*/
|
16067
16079
|
proto.game.InitGameSessionResponse.prototype.setGameUuid = function(value) {
|
16068
|
-
return jspb.Message.
|
16080
|
+
return jspb.Message.setField(this, 2, value);
|
16081
|
+
};
|
16082
|
+
|
16083
|
+
|
16084
|
+
/**
|
16085
|
+
* Clears the field making it undefined.
|
16086
|
+
* @return {!proto.game.InitGameSessionResponse} returns this
|
16087
|
+
*/
|
16088
|
+
proto.game.InitGameSessionResponse.prototype.clearGameUuid = function() {
|
16089
|
+
return jspb.Message.setField(this, 2, undefined);
|
16090
|
+
};
|
16091
|
+
|
16092
|
+
|
16093
|
+
/**
|
16094
|
+
* Returns whether this field is set.
|
16095
|
+
* @return {boolean}
|
16096
|
+
*/
|
16097
|
+
proto.game.InitGameSessionResponse.prototype.hasGameUuid = function() {
|
16098
|
+
return jspb.Message.getField(this, 2) != null;
|
16069
16099
|
};
|
16070
16100
|
|
16071
16101
|
|
@@ -16124,10 +16154,10 @@ proto.game.InitGameSessionResponse.prototype.setGameSlug = function(value) {
|
|
16124
16154
|
|
16125
16155
|
|
16126
16156
|
/**
|
16127
|
-
* optional string
|
16157
|
+
* optional string game_description = 6;
|
16128
16158
|
* @return {string}
|
16129
16159
|
*/
|
16130
|
-
proto.game.InitGameSessionResponse.prototype.
|
16160
|
+
proto.game.InitGameSessionResponse.prototype.getGameDescription = function() {
|
16131
16161
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
16132
16162
|
};
|
16133
16163
|
|
@@ -16136,16 +16166,16 @@ proto.game.InitGameSessionResponse.prototype.getProviderTitle = function() {
|
|
16136
16166
|
* @param {string} value
|
16137
16167
|
* @return {!proto.game.InitGameSessionResponse} returns this
|
16138
16168
|
*/
|
16139
|
-
proto.game.InitGameSessionResponse.prototype.
|
16169
|
+
proto.game.InitGameSessionResponse.prototype.setGameDescription = function(value) {
|
16140
16170
|
return jspb.Message.setProto3StringField(this, 6, value);
|
16141
16171
|
};
|
16142
16172
|
|
16143
16173
|
|
16144
16174
|
/**
|
16145
|
-
* optional string
|
16175
|
+
* optional string provider_title = 7;
|
16146
16176
|
* @return {string}
|
16147
16177
|
*/
|
16148
|
-
proto.game.InitGameSessionResponse.prototype.
|
16178
|
+
proto.game.InitGameSessionResponse.prototype.getProviderTitle = function() {
|
16149
16179
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
16150
16180
|
};
|
16151
16181
|
|
@@ -16154,16 +16184,16 @@ proto.game.InitGameSessionResponse.prototype.getProviderSlug = function() {
|
|
16154
16184
|
* @param {string} value
|
16155
16185
|
* @return {!proto.game.InitGameSessionResponse} returns this
|
16156
16186
|
*/
|
16157
|
-
proto.game.InitGameSessionResponse.prototype.
|
16187
|
+
proto.game.InitGameSessionResponse.prototype.setProviderTitle = function(value) {
|
16158
16188
|
return jspb.Message.setProto3StringField(this, 7, value);
|
16159
16189
|
};
|
16160
16190
|
|
16161
16191
|
|
16162
16192
|
/**
|
16163
|
-
* optional string
|
16193
|
+
* optional string provider_slug = 8;
|
16164
16194
|
* @return {string}
|
16165
16195
|
*/
|
16166
|
-
proto.game.InitGameSessionResponse.prototype.
|
16196
|
+
proto.game.InitGameSessionResponse.prototype.getProviderSlug = function() {
|
16167
16197
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
16168
16198
|
};
|
16169
16199
|
|
@@ -16172,11 +16202,29 @@ proto.game.InitGameSessionResponse.prototype.getUserId = function() {
|
|
16172
16202
|
* @param {string} value
|
16173
16203
|
* @return {!proto.game.InitGameSessionResponse} returns this
|
16174
16204
|
*/
|
16175
|
-
proto.game.InitGameSessionResponse.prototype.
|
16205
|
+
proto.game.InitGameSessionResponse.prototype.setProviderSlug = function(value) {
|
16176
16206
|
return jspb.Message.setProto3StringField(this, 8, value);
|
16177
16207
|
};
|
16178
16208
|
|
16179
16209
|
|
16210
|
+
/**
|
16211
|
+
* optional string user_id = 9;
|
16212
|
+
* @return {string}
|
16213
|
+
*/
|
16214
|
+
proto.game.InitGameSessionResponse.prototype.getUserId = function() {
|
16215
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
16216
|
+
};
|
16217
|
+
|
16218
|
+
|
16219
|
+
/**
|
16220
|
+
* @param {string} value
|
16221
|
+
* @return {!proto.game.InitGameSessionResponse} returns this
|
16222
|
+
*/
|
16223
|
+
proto.game.InitGameSessionResponse.prototype.setUserId = function(value) {
|
16224
|
+
return jspb.Message.setProto3StringField(this, 9, value);
|
16225
|
+
};
|
16226
|
+
|
16227
|
+
|
16180
16228
|
|
16181
16229
|
|
16182
16230
|
|