@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 +1 -0
- package/gen/crm_manager.ts +2 -0
- package/package.json +1 -1
- package/proto/crm_auth.proto +1 -0
- package/proto/crm_manager.proto +2 -0
package/gen/crm_auth.ts
CHANGED
package/gen/crm_manager.ts
CHANGED
|
@@ -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.
|
|
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
|
},
|
package/proto/crm_auth.proto
CHANGED
package/proto/crm_manager.proto
CHANGED
|
@@ -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 {
|