@arbiwallet/contracts 1.0.223 → 1.0.224

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
@@ -22,6 +22,7 @@ export interface CrmLoginRequest {
22
22
  otp: string;
23
23
  userAgent: string;
24
24
  ipAddress: string;
25
+ password: string;
25
26
  }
26
27
 
27
28
  export interface CrmRefreshSessionRequest {
@@ -81,6 +81,7 @@ export interface CreateManagerRequest {
81
81
  roleNames: string[];
82
82
  sectionPermissions: SectionPermission[];
83
83
  officeIds: string[];
84
+ password: string;
84
85
  }
85
86
 
86
87
  export interface CreateManagerResponse {
@@ -104,6 +105,7 @@ export interface UpdateManagerRequest {
104
105
  replaceSectionPermissions: boolean;
105
106
  replaceOfficeIds: boolean;
106
107
  officeIds: string[];
108
+ password: string;
107
109
  }
108
110
 
109
111
  export interface UpdateManagerResponse {
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.223",
4
+ "version": "1.0.224",
5
5
  "scripts": {
6
6
  "generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
7
7
  },
@@ -20,6 +20,7 @@ message CrmLoginRequest {
20
20
  string otp = 2;
21
21
  string user_agent = 3;
22
22
  string ip_address = 4;
23
+ string password = 5;
23
24
  }
24
25
 
25
26
  message CrmRefreshSessionRequest {
@@ -84,6 +84,7 @@ message CreateManagerRequest {
84
84
  repeated string role_names = 8;
85
85
  repeated SectionPermission section_permissions = 9;
86
86
  repeated string office_ids = 10;
87
+ string password = 11;
87
88
  }
88
89
 
89
90
  message CreateManagerResponse {
@@ -107,6 +108,7 @@ message UpdateManagerRequest {
107
108
  bool replace_section_permissions = 12;
108
109
  bool replace_office_ids = 13;
109
110
  repeated string office_ids = 14;
111
+ string password = 15;
110
112
  }
111
113
 
112
114
  message UpdateManagerResponse {