@ciganov/contracts 1.1.3 → 1.1.4
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
|
@@ -40,9 +40,9 @@ export interface Transaction {
|
|
|
40
40
|
}
|
|
41
41
|
export interface Balance {
|
|
42
42
|
id: string;
|
|
43
|
-
mainBalance:
|
|
44
|
-
bonusBalance:
|
|
45
|
-
freezeBalance:
|
|
43
|
+
mainBalance: number;
|
|
44
|
+
bonusBalance: number;
|
|
45
|
+
freezeBalance: number;
|
|
46
46
|
}
|
|
47
47
|
export declare const BALANCE_V1_PACKAGE_NAME = "balance.v1";
|
|
48
48
|
export interface BalanceServiceClient {
|
|
@@ -46,9 +46,9 @@ message Transaction {
|
|
|
46
46
|
|
|
47
47
|
message Balance {
|
|
48
48
|
string id = 1;
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
49
|
+
float main_balance = 2;
|
|
50
|
+
float bonus_balance = 3;
|
|
51
|
+
float freeze_balance = 4;
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
enum TransactionType {
|