@arbiwallet/contracts 1.0.27 → 1.0.29

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 CHANGED
@@ -16,6 +16,7 @@ export interface GetUserRequest {
16
16
 
17
17
  export interface UserResponse {
18
18
  id: number;
19
+ uid: number;
19
20
  email?: string | undefined;
20
21
  phone?: string | undefined;
21
22
  telegramId?: string | undefined;
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.27",
4
+ "version": "1.0.29",
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
@@ -14,6 +14,7 @@ message GetUserRequest {
14
14
 
15
15
  message UserResponse {
16
16
  int32 id = 1;
17
+ int32 uid = 13;
17
18
  optional string email = 2;
18
19
  optional string phone = 3;
19
20
  optional string telegram_id = 4;