@arbiwallet/contracts 1.0.138 → 1.0.139

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/crm_auth.ts CHANGED
@@ -65,6 +65,9 @@ export interface CrmManagerResponse {
65
65
  avatarUrl: string;
66
66
  status: CrmManagerStatus;
67
67
  createdAtUnixMs: number;
68
+ roles: string[];
69
+ permissions: string[];
70
+ isSuperAdmin: boolean;
68
71
  }
69
72
 
70
73
  export interface CrmAuthSessionResponse {
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.138",
4
+ "version": "1.0.139",
5
5
  "scripts": {
6
6
  "generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
7
7
  },
@@ -63,6 +63,9 @@ message CrmManagerResponse {
63
63
  string avatar_url = 7;
64
64
  CrmManagerStatus status = 8;
65
65
  int64 created_at_unix_ms = 9;
66
+ repeated string roles = 10;
67
+ repeated string permissions = 11;
68
+ bool is_super_admin = 12;
66
69
  }
67
70
 
68
71
  message CrmAuthSessionResponse {