protobuf-platform 1.0.162 → 1.0.163
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 +1 -1
- package/bonus/bonus_pb.js +7 -7
- package/package.json +1 -1
package/bonus/bonus.proto
CHANGED
@@ -135,7 +135,7 @@ message UserBonusItem {
|
|
135
135
|
optional int32 claiming_end_in_milliseconds = 19;
|
136
136
|
optional int32 activation_end_in_milliseconds = 20;
|
137
137
|
optional int32 wagering_end_in_milliseconds = 21;
|
138
|
-
optional bool
|
138
|
+
optional bool has_free_spins = 22;
|
139
139
|
optional string status_free_spins = 23;
|
140
140
|
optional float reward_free_spins = 24;
|
141
141
|
}
|
package/bonus/bonus_pb.js
CHANGED
@@ -5183,7 +5183,7 @@ proto.bonus.UserBonusItem.toObject = function(includeInstance, msg) {
|
|
5183
5183
|
claimingEndInMilliseconds: jspb.Message.getFieldWithDefault(msg, 19, 0),
|
5184
5184
|
activationEndInMilliseconds: jspb.Message.getFieldWithDefault(msg, 20, 0),
|
5185
5185
|
wageringEndInMilliseconds: jspb.Message.getFieldWithDefault(msg, 21, 0),
|
5186
|
-
|
5186
|
+
hasFreeSpins: jspb.Message.getBooleanFieldWithDefault(msg, 22, false),
|
5187
5187
|
statusFreeSpins: jspb.Message.getFieldWithDefault(msg, 23, ""),
|
5188
5188
|
rewardFreeSpins: jspb.Message.getFloatingPointFieldWithDefault(msg, 24, 0.0)
|
5189
5189
|
};
|
@@ -5310,7 +5310,7 @@ proto.bonus.UserBonusItem.deserializeBinaryFromReader = function(msg, reader) {
|
|
5310
5310
|
break;
|
5311
5311
|
case 22:
|
5312
5312
|
var value = /** @type {boolean} */ (reader.readBool());
|
5313
|
-
msg.
|
5313
|
+
msg.setHasFreeSpins(value);
|
5314
5314
|
break;
|
5315
5315
|
case 23:
|
5316
5316
|
var value = /** @type {string} */ (reader.readString());
|
@@ -6282,10 +6282,10 @@ proto.bonus.UserBonusItem.prototype.hasWageringEndInMilliseconds = function() {
|
|
6282
6282
|
|
6283
6283
|
|
6284
6284
|
/**
|
6285
|
-
* optional bool
|
6285
|
+
* optional bool has_free_spins = 22;
|
6286
6286
|
* @return {boolean}
|
6287
6287
|
*/
|
6288
|
-
proto.bonus.UserBonusItem.prototype.
|
6288
|
+
proto.bonus.UserBonusItem.prototype.getHasFreeSpins = function() {
|
6289
6289
|
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 22, false));
|
6290
6290
|
};
|
6291
6291
|
|
@@ -6294,7 +6294,7 @@ proto.bonus.UserBonusItem.prototype.getHasFreesSpins = function() {
|
|
6294
6294
|
* @param {boolean} value
|
6295
6295
|
* @return {!proto.bonus.UserBonusItem} returns this
|
6296
6296
|
*/
|
6297
|
-
proto.bonus.UserBonusItem.prototype.
|
6297
|
+
proto.bonus.UserBonusItem.prototype.setHasFreeSpins = function(value) {
|
6298
6298
|
return jspb.Message.setField(this, 22, value);
|
6299
6299
|
};
|
6300
6300
|
|
@@ -6303,7 +6303,7 @@ proto.bonus.UserBonusItem.prototype.setHasFreesSpins = function(value) {
|
|
6303
6303
|
* Clears the field making it undefined.
|
6304
6304
|
* @return {!proto.bonus.UserBonusItem} returns this
|
6305
6305
|
*/
|
6306
|
-
proto.bonus.UserBonusItem.prototype.
|
6306
|
+
proto.bonus.UserBonusItem.prototype.clearHasFreeSpins = function() {
|
6307
6307
|
return jspb.Message.setField(this, 22, undefined);
|
6308
6308
|
};
|
6309
6309
|
|
@@ -6312,7 +6312,7 @@ proto.bonus.UserBonusItem.prototype.clearHasFreesSpins = function() {
|
|
6312
6312
|
* Returns whether this field is set.
|
6313
6313
|
* @return {boolean}
|
6314
6314
|
*/
|
6315
|
-
proto.bonus.UserBonusItem.prototype.
|
6315
|
+
proto.bonus.UserBonusItem.prototype.hasHasFreeSpins = function() {
|
6316
6316
|
return jspb.Message.getField(this, 22) != null;
|
6317
6317
|
};
|
6318
6318
|
|