protobuf-platform 1.2.426 → 1.2.428
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/game/game.proto +1 -1
- package/game/game_pb.js +3 -3
- package/package.json +1 -1
package/game/game.proto
CHANGED
|
@@ -740,7 +740,7 @@ message ActiveWageringUserBonus {
|
|
|
740
740
|
string image_cdn = 4;
|
|
741
741
|
float current_wager_amount = 5;
|
|
742
742
|
float total_wager_amount = 6;
|
|
743
|
-
|
|
743
|
+
int64 wagering_end_in_milliseconds = 7;
|
|
744
744
|
repeated string wager_balances = 8;
|
|
745
745
|
int32 wager_games_list_id = 9;
|
|
746
746
|
}
|
package/game/game_pb.js
CHANGED
|
@@ -31334,7 +31334,7 @@ proto.game.ActiveWageringUserBonus.deserializeBinaryFromReader = function(msg, r
|
|
|
31334
31334
|
msg.setTotalWagerAmount(value);
|
|
31335
31335
|
break;
|
|
31336
31336
|
case 7:
|
|
31337
|
-
var value = /** @type {number} */ (reader.
|
|
31337
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
31338
31338
|
msg.setWageringEndInMilliseconds(value);
|
|
31339
31339
|
break;
|
|
31340
31340
|
case 8:
|
|
@@ -31418,7 +31418,7 @@ proto.game.ActiveWageringUserBonus.serializeBinaryToWriter = function(message, w
|
|
|
31418
31418
|
}
|
|
31419
31419
|
f = message.getWageringEndInMilliseconds();
|
|
31420
31420
|
if (f !== 0) {
|
|
31421
|
-
writer.
|
|
31421
|
+
writer.writeInt64(
|
|
31422
31422
|
7,
|
|
31423
31423
|
f
|
|
31424
31424
|
);
|
|
@@ -31549,7 +31549,7 @@ proto.game.ActiveWageringUserBonus.prototype.setTotalWagerAmount = function(valu
|
|
|
31549
31549
|
|
|
31550
31550
|
|
|
31551
31551
|
/**
|
|
31552
|
-
* optional
|
|
31552
|
+
* optional int64 wagering_end_in_milliseconds = 7;
|
|
31553
31553
|
* @return {number}
|
|
31554
31554
|
*/
|
|
31555
31555
|
proto.game.ActiveWageringUserBonus.prototype.getWageringEndInMilliseconds = function() {
|