@arbiwallet/contracts 1.0.234 → 1.0.235

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.
@@ -278,7 +278,7 @@ export interface WalletItem {
278
278
  sort: number;
279
279
  balance: number;
280
280
  status: boolean;
281
- managerId?: string | undefined;
281
+ currentManagerId?: string | undefined;
282
282
  managerChanged?: string | undefined;
283
283
  isGeneral: boolean;
284
284
  showOnBalances: boolean;
@@ -328,7 +328,7 @@ export interface CreateWalletRequest {
328
328
  cryptoNetwork?: number | undefined;
329
329
  isActive?: boolean | undefined;
330
330
  status?: boolean | undefined;
331
- managerId?: string | undefined;
331
+ currentManagerId?: string | undefined;
332
332
  currencyIds: string[];
333
333
  }
334
334
 
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.234",
4
+ "version": "1.0.235",
5
5
  "scripts": {
6
6
  "generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
7
7
  },
@@ -301,7 +301,7 @@ message WalletItem {
301
301
  int32 sort = 3;
302
302
  double balance = 4;
303
303
  bool status = 5;
304
- optional string manager_id = 6;
304
+ optional string current_manager_id = 6;
305
305
  optional string manager_changed = 7;
306
306
  bool is_general = 8;
307
307
  bool show_on_balances = 9;
@@ -351,7 +351,7 @@ message CreateWalletRequest {
351
351
  optional int32 crypto_network = 7;
352
352
  optional bool is_active = 8;
353
353
  optional bool status = 9;
354
- optional string manager_id = 10;
354
+ optional string current_manager_id = 10;
355
355
  repeated string currency_ids = 11;
356
356
  }
357
357