@arbiwallet/contracts 1.0.104 → 1.0.106

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/content.ts CHANGED
@@ -116,6 +116,8 @@ export interface CreateFilialRequest {
116
116
  address: string;
117
117
  order: number;
118
118
  description?: string | undefined;
119
+ longitude?: number | undefined;
120
+ latitude?: number | undefined;
119
121
  }
120
122
 
121
123
  export interface CreateFilialResponse {
@@ -232,6 +234,8 @@ export interface Filial {
232
234
  address: string;
233
235
  order: number;
234
236
  description?: string | undefined;
237
+ longitude?: number | undefined;
238
+ latitude?: number | undefined;
235
239
  }
236
240
 
237
241
  export interface Partner {
package/gen/user.ts CHANGED
@@ -64,7 +64,6 @@ export interface UserResponse {
64
64
  balances: UserBalance[];
65
65
  kycStatus: UserKycStatus;
66
66
  kyc: UserKycInfo | undefined;
67
- cardFullName?: string | undefined;
68
67
  }
69
68
 
70
69
  export interface UpdateUserRequest {
@@ -72,7 +71,6 @@ export interface UpdateUserRequest {
72
71
  firstName?: string | undefined;
73
72
  lastName?: string | undefined;
74
73
  avatar?: string | undefined;
75
- cardFullName?: string | undefined;
76
74
  }
77
75
 
78
76
  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.104",
4
+ "version": "1.0.106",
5
5
  "scripts": {
6
6
  "generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
7
7
  },
@@ -149,6 +149,8 @@ message CreateFilialRequest {
149
149
  string address = 3;
150
150
  int32 order = 4;
151
151
  optional string description = 5;
152
+ optional double longitude = 6;
153
+ optional double latitude = 7;
152
154
  }
153
155
 
154
156
  message CreateFilialResponse {
@@ -261,6 +263,8 @@ message Filial {
261
263
  string address = 4;
262
264
  int32 order = 5;
263
265
  optional string description = 6;
266
+ optional double longitude = 7;
267
+ optional double latitude = 8;
264
268
  }
265
269
 
266
270
  message Partner {
package/proto/user.proto CHANGED
@@ -79,7 +79,6 @@ message UserResponse {
79
79
  repeated UserBalance balances = 15;
80
80
  UserKycStatus kyc_status = 16;
81
81
  UserKycInfo kyc = 17;
82
- optional string card_full_name = 20;
83
82
  }
84
83
 
85
84
  message UpdateUserRequest {
@@ -87,7 +86,6 @@ message UpdateUserRequest {
87
86
  optional string first_name = 2;
88
87
  optional string last_name = 3;
89
88
  optional string avatar = 4;
90
- optional string card_full_name = 5;
91
89
  }
92
90
 
93
91
  message UpdateUserStatusRequest {