protobuf-platform 1.2.239 → 1.2.241
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 +13 -0
- package/game/game_pb.js +622 -3
- package/package.json +1 -1
- package/payment/payment.proto +8 -7
- package/payment/payment_pb.js +96 -48
- package/tournament/tournament.proto +7 -0
- package/tournament/tournament_grpc_pb.js +22 -0
- package/tournament/tournament_pb.js +306 -0
package/game/game.proto
CHANGED
|
@@ -560,6 +560,7 @@ message InitGameSessionV2Request {
|
|
|
560
560
|
optional string user_device = 11;
|
|
561
561
|
optional string user_session_id = 12;
|
|
562
562
|
optional string user_ip = 13;
|
|
563
|
+
optional uint64 selected_tournament_id = 14;
|
|
563
564
|
}
|
|
564
565
|
message InitDemoGameSessionRequest {
|
|
565
566
|
string game_slug = 1;
|
|
@@ -574,6 +575,17 @@ message GetGameConfigCheckRequest {
|
|
|
574
575
|
string game_slug = 2;
|
|
575
576
|
int32 user_id = 3;
|
|
576
577
|
}
|
|
578
|
+
message ActiveUserTournament {
|
|
579
|
+
int32 tournament_id = 1;
|
|
580
|
+
string title = 2;
|
|
581
|
+
optional string image = 3;
|
|
582
|
+
optional string image_cdn = 4;
|
|
583
|
+
optional string slug = 5;
|
|
584
|
+
optional string status = 6;
|
|
585
|
+
optional bool can_activated = 7;
|
|
586
|
+
optional string user_status = 8;
|
|
587
|
+
optional uint32 finished_in_milliseconds = 9;
|
|
588
|
+
}
|
|
577
589
|
message ActiveWageringUserBonus {
|
|
578
590
|
int32 user_bonus_id = 1;
|
|
579
591
|
string title = 2;
|
|
@@ -595,6 +607,7 @@ message GameConfigCheckResponse {
|
|
|
595
607
|
bool is_mobile = 7;
|
|
596
608
|
bool has_lobby = 8;
|
|
597
609
|
repeated ActiveWageringUserBonus bonuses = 9;
|
|
610
|
+
repeated ActiveUserTournament tournaments = 10;
|
|
598
611
|
}
|
|
599
612
|
message InitGameSessionResponse {
|
|
600
613
|
string game_url = 1;
|