@arbiwallet/contracts 1.0.115 → 1.0.116

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
@@ -64,6 +64,8 @@ export interface UserResponse {
64
64
  balances: UserBalance[];
65
65
  kycStatus: UserKycStatus;
66
66
  kyc: UserKycInfo | undefined;
67
+ cardFirstName?: string | undefined;
68
+ cardLastName?: string | undefined;
67
69
  }
68
70
 
69
71
  export interface UpdateUserRequest {
@@ -71,6 +73,8 @@ export interface UpdateUserRequest {
71
73
  firstName?: string | undefined;
72
74
  lastName?: string | undefined;
73
75
  avatar?: string | undefined;
76
+ cardFirstName?: string | undefined;
77
+ cardLastName?: string | undefined;
74
78
  }
75
79
 
76
80
  export interface UpdateUserStatusRequest {
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.115",
4
+ "version": "1.0.116",
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
@@ -79,6 +79,8 @@ message UserResponse {
79
79
  repeated UserBalance balances = 15;
80
80
  UserKycStatus kyc_status = 16;
81
81
  UserKycInfo kyc = 17;
82
+ optional string card_first_name = 20;
83
+ optional string card_last_name = 21;
82
84
  }
83
85
 
84
86
  message UpdateUserRequest {
@@ -86,6 +88,8 @@ message UpdateUserRequest {
86
88
  optional string first_name = 2;
87
89
  optional string last_name = 3;
88
90
  optional string avatar = 4;
91
+ optional string card_first_name = 5;
92
+ optional string card_last_name = 6;
89
93
  }
90
94
 
91
95
  message UpdateUserStatusRequest {