@ciganov/contracts 1.1.5 → 1.1.6
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/dist/gen/balance.d.ts
CHANGED
|
@@ -27,10 +27,11 @@ message GetUserTransactionsResponse {
|
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
message AddTransactionRequest {
|
|
30
|
-
TransactionType type
|
|
31
|
-
float amount
|
|
32
|
-
optional string eventId
|
|
33
|
-
string userId
|
|
30
|
+
TransactionType type = 1;
|
|
31
|
+
float amount = 2;
|
|
32
|
+
optional string eventId = 3;
|
|
33
|
+
string userId = 4;
|
|
34
|
+
optional float multiplier = 5;
|
|
34
35
|
}
|
|
35
36
|
|
|
36
37
|
message AddTransactionResponse {
|