protobuf-platform 1.0.175 → 1.0.176
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 +1063 -209
- 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
|
-
|
82
|
-
|
83
|
-
|
99
|
+
optional string type = 2;
|
100
|
+
repeated SignUpPoint sign_up_points = 3;
|
101
|
+
repeated DepositPoint deposit_points = 4;
|
102
|
+
repeated BetPoint bet_points = 5;
|
84
103
|
}
|
85
104
|
//Point CRUD | Requests
|
86
105
|
message PointRequest {
|
87
106
|
optional int32 id = 1;
|
88
|
-
optional string
|
89
|
-
|
90
|
-
|
91
|
-
|
107
|
+
optional string type = 2;
|
108
|
+
repeated SignUpPoint sign_up_points = 3;
|
109
|
+
repeated DepositPoint deposit_points = 4;
|
110
|
+
repeated BetPoint bet_points = 5;
|
92
111
|
}
|
93
112
|
message GetPointRequest {
|
94
113
|
int32 id = 1;
|