protobuf-platform 1.1.89 → 1.1.91
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 +14 -0
- package/game/game_grpc_pb.js +34 -0
- package/game/game_pb.js +609 -0
- package/package.json +1 -1
- package/user/user.proto +23 -0
- package/user/user_pb.js +2299 -1135
package/user/user.proto
CHANGED
@@ -276,6 +276,7 @@ message SegmentRuleRequest {
|
|
276
276
|
optional SegmentPaymentRuleRequest payment_rule = 1;
|
277
277
|
optional SegmentBetRuleRequest bet_rule = 2;
|
278
278
|
optional SegmentSessionRuleRequest session_rule = 3;
|
279
|
+
optional SegmentGameRuleRequest game_rule = 4;
|
279
280
|
}
|
280
281
|
message GetSegmentRuleRequest {
|
281
282
|
int32 segment_id = 1;
|
@@ -330,10 +331,21 @@ message SegmentSessionRuleRequest {
|
|
330
331
|
optional int32 hours_after_registration_max = 7;
|
331
332
|
optional int32 is_active = 8;
|
332
333
|
}
|
334
|
+
message SegmentGameRuleRequest {
|
335
|
+
int32 segment_id = 1;
|
336
|
+
repeated int32 provider_ids = 2;
|
337
|
+
repeated int32 collection_ids = 3;
|
338
|
+
repeated int32 tag_ids = 4;
|
339
|
+
repeated int32 game_ids = 5;
|
340
|
+
optional float rtp_min = 6;
|
341
|
+
optional float rtp_max = 7;
|
342
|
+
optional int32 is_active = 8;
|
343
|
+
}
|
333
344
|
message SegmentRuleItem {
|
334
345
|
optional SegmentPaymentRuleItem payment_rule = 1;
|
335
346
|
optional SegmentBetRuleItem bet_rule = 2;
|
336
347
|
optional SegmentSessionRuleItem session_rule = 3;
|
348
|
+
optional SegmentGameRuleItem game_rule = 4;
|
337
349
|
}
|
338
350
|
message SegmentPaymentRuleItem {
|
339
351
|
optional float deposit_amount_min = 1;
|
@@ -381,6 +393,17 @@ message SegmentSessionRuleItem {
|
|
381
393
|
optional int32 hours_after_registration_min = 5;
|
382
394
|
optional int32 hours_after_registration_max = 6;
|
383
395
|
optional int32 is_active = 7;
|
396
|
+
optional int32 segment_id = 8;
|
397
|
+
}
|
398
|
+
message SegmentGameRuleItem {
|
399
|
+
int32 segment_id = 1;
|
400
|
+
repeated int32 provider_ids = 2;
|
401
|
+
repeated int32 collection_ids = 3;
|
402
|
+
repeated int32 tag_ids = 4;
|
403
|
+
repeated int32 game_ids = 5;
|
404
|
+
optional float rtp_min = 6;
|
405
|
+
optional float rtp_max = 7;
|
406
|
+
optional int32 is_active = 8;
|
384
407
|
}
|
385
408
|
//Statuses
|
386
409
|
message RiskStatus {
|