@arbiwallet/contracts 1.0.218 → 1.0.219

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.
@@ -31,6 +31,7 @@ export enum ExchangeDealAction {
31
31
  export interface AuthManagerContext {
32
32
  managerId: string;
33
33
  officeIds: string[];
34
+ canCrossOffice: boolean;
34
35
  requestId?: string | undefined;
35
36
  clientType?: string | undefined;
36
37
  }
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.218",
4
+ "version": "1.0.219",
5
5
  "scripts": {
6
6
  "generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
7
7
  },
@@ -98,8 +98,9 @@ service ExchangeCoreService {
98
98
  message AuthManagerContext {
99
99
  string manager_id = 1;
100
100
  repeated string office_ids = 2;
101
- optional string request_id = 3;
102
- optional string client_type = 4;
101
+ bool can_cross_office = 3;
102
+ optional string request_id = 4;
103
+ optional string client_type = 5;
103
104
  }
104
105
 
105
106
  message CreateExchangeDealRequest {