protobuf-platform 1.0.217 → 1.0.219
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/bet/bet.proto +17 -15
- package/bet/bet_pb.js +197 -101
- package/package.json +1 -1
- package/payment/payment.proto +87 -1
- package/payment/payment_grpc_pb.js +222 -0
- package/payment/payment_pb.js +3660 -4
package/bet/bet.proto
CHANGED
@@ -31,21 +31,23 @@ message DashboardGameInfo {
|
|
31
31
|
message DashboardResponse {
|
32
32
|
optional float min_bet_real = 1;
|
33
33
|
optional float min_bet_bonus = 2;
|
34
|
-
optional float
|
35
|
-
optional float
|
36
|
-
optional float
|
37
|
-
optional float
|
38
|
-
optional float
|
39
|
-
optional float
|
40
|
-
optional float
|
41
|
-
optional float
|
42
|
-
optional float
|
43
|
-
optional float
|
44
|
-
optional float
|
45
|
-
|
46
|
-
|
47
|
-
repeated DashboardGameInfo
|
48
|
-
repeated DashboardGameInfo
|
34
|
+
optional float max_bet_real = 3;
|
35
|
+
optional float max_bet_bonus = 4;
|
36
|
+
optional float average_bet_real = 5;
|
37
|
+
optional float average_bet_bonus = 6;
|
38
|
+
optional float max_win_real = 7;
|
39
|
+
optional float max_win_bonus = 8;
|
40
|
+
optional float average_win_real = 9;
|
41
|
+
optional float average_win_bonus = 10;
|
42
|
+
optional float turnover_real = 11;
|
43
|
+
optional float turnover_bonus = 12;
|
44
|
+
optional float ggr_total = 13;
|
45
|
+
optional float ggr_real = 14;
|
46
|
+
optional float ggr_bonus = 15;
|
47
|
+
repeated DashboardGameInfo top_games_count_bet_real = 16;
|
48
|
+
repeated DashboardGameInfo top_games_count_bet_bonus = 17;
|
49
|
+
repeated DashboardGameInfo top_games_sum_bet_real = 18;
|
50
|
+
repeated DashboardGameInfo top_games_sum_bet_bonus = 19;
|
49
51
|
}
|
50
52
|
//User info
|
51
53
|
message UserBetItem {
|