protobuf-platform 1.0.175 → 1.0.177
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/loyalty/loyalty.proto +27 -8
- package/loyalty/loyalty_pb.js +1017 -189
- package/package.json +1 -1
package/loyalty/loyalty.proto
CHANGED
@@ -75,20 +75,39 @@ message LevelStatusResponse {
|
|
75
75
|
|
76
76
|
|
77
77
|
//Point CRUD
|
78
|
+
message SignUpPoint {
|
79
|
+
string country = 1;
|
80
|
+
int32 points = 2;
|
81
|
+
}
|
82
|
+
message DepositPoint {
|
83
|
+
string currency = 1;
|
84
|
+
int32 points = 2;
|
85
|
+
float min = 3;
|
86
|
+
float max = 4;
|
87
|
+
optional int32 number_of_deposit = 5;
|
88
|
+
}
|
89
|
+
message BetPoint {
|
90
|
+
string currency = 1;
|
91
|
+
int32 points = 2;
|
92
|
+
float min = 3;
|
93
|
+
float max = 4;
|
94
|
+
optional int32 number_of_step = 5;
|
95
|
+
optional int32 wager_game_list_id = 6;
|
96
|
+
}
|
78
97
|
message PointItem {
|
79
98
|
optional int32 id = 1;
|
80
|
-
optional string
|
81
|
-
optional
|
82
|
-
optional
|
83
|
-
optional
|
99
|
+
optional string type = 2;
|
100
|
+
optional SignUpPoint sign_up_point = 3;
|
101
|
+
optional DepositPoint deposit_point = 4;
|
102
|
+
optional BetPoint bet_point = 5;
|
84
103
|
}
|
85
104
|
//Point CRUD | Requests
|
86
105
|
message PointRequest {
|
87
106
|
optional int32 id = 1;
|
88
|
-
optional string
|
89
|
-
optional
|
90
|
-
optional
|
91
|
-
optional
|
107
|
+
optional string type = 2;
|
108
|
+
optional SignUpPoint sign_up_point = 3;
|
109
|
+
optional DepositPoint deposit_point = 4;
|
110
|
+
optional BetPoint bet_point = 5;
|
92
111
|
}
|
93
112
|
message GetPointRequest {
|
94
113
|
int32 id = 1;
|