protobuf-platform 1.2.183 → 1.2.185
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 +24 -23
- package/bonus/bonus_pb.js +220 -172
- package/package.json +1 -1
- package/payment/payment.proto +9 -7
- package/payment/payment_pb.js +146 -50
package/bonus/bonus.proto
CHANGED
|
@@ -145,29 +145,30 @@ message BonusItem {
|
|
|
145
145
|
optional string title = 2;
|
|
146
146
|
optional string description = 3;
|
|
147
147
|
optional string image = 4;
|
|
148
|
-
optional string
|
|
149
|
-
optional string
|
|
150
|
-
optional
|
|
151
|
-
optional int32
|
|
152
|
-
optional
|
|
153
|
-
optional bool
|
|
154
|
-
optional
|
|
155
|
-
optional int32
|
|
156
|
-
optional
|
|
157
|
-
optional string
|
|
158
|
-
optional string
|
|
159
|
-
optional
|
|
160
|
-
optional int32
|
|
161
|
-
optional int32
|
|
162
|
-
|
|
163
|
-
repeated
|
|
164
|
-
repeated
|
|
165
|
-
|
|
166
|
-
optional
|
|
167
|
-
|
|
168
|
-
repeated
|
|
169
|
-
repeated
|
|
170
|
-
|
|
148
|
+
optional string image_cdn = 5;
|
|
149
|
+
optional string status = 6;
|
|
150
|
+
optional string type = 7;
|
|
151
|
+
optional int32 wager_x = 8;
|
|
152
|
+
optional int32 payout_x = 9;
|
|
153
|
+
optional bool is_real_wagering = 10;
|
|
154
|
+
optional bool is_bonus_wagering = 11;
|
|
155
|
+
optional int32 repeat_count = 12;
|
|
156
|
+
optional int32 wager_games_list_id = 13;
|
|
157
|
+
optional string started_at = 14;
|
|
158
|
+
optional string finished_at = 15;
|
|
159
|
+
optional string show_previous_at = 16;
|
|
160
|
+
optional int32 claim_period_in_hours = 17;
|
|
161
|
+
optional int32 activation_period_in_hours = 18;
|
|
162
|
+
optional int32 wagering_period_in_hours = 19;
|
|
163
|
+
repeated ActivationRule activation_rules = 20;
|
|
164
|
+
repeated BonusReward rewards = 21;
|
|
165
|
+
repeated BetsRange bets_range = 22;
|
|
166
|
+
optional string type_data = 23;
|
|
167
|
+
optional int32 status_id = 24;
|
|
168
|
+
repeated BonusTranslationItem translations = 25;
|
|
169
|
+
repeated int32 segment_ids = 26;
|
|
170
|
+
repeated GameItem wager_games = 27;
|
|
171
|
+
optional string slug = 28;
|
|
171
172
|
}
|
|
172
173
|
message BonusItemsResponse {
|
|
173
174
|
repeated BonusItem items = 1;
|