@arbiwallet/contracts 1.0.275 → 1.0.276
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/gen/user.ts +2 -0
- package/package.json +1 -1
- package/proto/user.proto +2 -0
package/gen/user.ts
CHANGED
|
@@ -89,6 +89,8 @@ export interface UserResponse {
|
|
|
89
89
|
userSearchUpdatedAt?: string | undefined;
|
|
90
90
|
bonusType?: UserSearchBonusType | undefined;
|
|
91
91
|
referrerName?: string | undefined;
|
|
92
|
+
exchangeCountLastMonth?: number | undefined;
|
|
93
|
+
totalProfit?: number | undefined;
|
|
92
94
|
}
|
|
93
95
|
|
|
94
96
|
export interface UpdateUserRequest {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arbiwallet/contracts",
|
|
3
3
|
"descriptions": "Generate and manage smart contracts for ArbiWallet",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.276",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
|
|
7
7
|
},
|
package/proto/user.proto
CHANGED
|
@@ -129,6 +129,8 @@ message UserResponse {
|
|
|
129
129
|
optional string user_search_updated_at = 36;
|
|
130
130
|
optional UserSearchBonusType bonus_type = 37;
|
|
131
131
|
optional string referrer_name = 38;
|
|
132
|
+
optional int32 exchange_count_last_month = 39;
|
|
133
|
+
optional double total_profit = 40;
|
|
132
134
|
}
|
|
133
135
|
|
|
134
136
|
message UpdateUserRequest {
|