protobuf-platform 1.1.87 → 1.1.88
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/package.json +1 -1
- package/user/user.proto +21 -0
- package/user/user_pb.js +1316 -268
package/package.json
CHANGED
package/user/user.proto
CHANGED
@@ -274,6 +274,7 @@ message SegmentItemsResponse {
|
|
274
274
|
message SegmentRuleRequest {
|
275
275
|
optional SegmentPaymentRuleRequest payment_rule = 1;
|
276
276
|
optional SegmentBetRuleRequest bet_rule = 2;
|
277
|
+
optional SegmentSessionRuleRequest session_rule = 3;
|
277
278
|
}
|
278
279
|
message GetSegmentRuleRequest {
|
279
280
|
int32 segment_id = 1;
|
@@ -318,9 +319,20 @@ message SegmentBetRuleRequest {
|
|
318
319
|
optional float win_avg_max = 18;
|
319
320
|
optional int32 is_active = 19;
|
320
321
|
}
|
322
|
+
message SegmentSessionRuleRequest {
|
323
|
+
int32 segment_id = 1;
|
324
|
+
optional float session_minute_min = 2;
|
325
|
+
optional float session_minute_max = 3;
|
326
|
+
optional int32 session_count_min = 4;
|
327
|
+
optional int32 session_count_max = 5;
|
328
|
+
optional int32 hours_after_registration_min = 6;
|
329
|
+
optional int32 hours_after_registration_max = 7;
|
330
|
+
optional int32 is_active = 8;
|
331
|
+
}
|
321
332
|
message SegmentRuleItem {
|
322
333
|
optional SegmentPaymentRuleItem payment_rule = 1;
|
323
334
|
optional SegmentBetRuleItem bet_rule = 2;
|
335
|
+
optional SegmentSessionRuleItem session_rule = 3;
|
324
336
|
}
|
325
337
|
message SegmentPaymentRuleItem {
|
326
338
|
optional float deposit_amount_min = 1;
|
@@ -360,6 +372,15 @@ message SegmentBetRuleItem {
|
|
360
372
|
optional float win_avg_max = 18;
|
361
373
|
optional int32 is_active = 19;
|
362
374
|
}
|
375
|
+
message SegmentSessionRuleItem {
|
376
|
+
optional float session_minute_min = 1;
|
377
|
+
optional float session_minute_max = 2;
|
378
|
+
optional int32 session_count_min = 3;
|
379
|
+
optional int32 session_count_max = 4;
|
380
|
+
optional int32 hours_after_registration_min = 5;
|
381
|
+
optional int32 hours_after_registration_max = 6;
|
382
|
+
optional int32 is_active = 7;
|
383
|
+
}
|
363
384
|
//Statuses
|
364
385
|
message RiskStatus {
|
365
386
|
int32 id = 1;
|