@aepstore-dev/contracts 1.89.0 → 1.90.0
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/users.d.ts +1 -0
- package/gen/users.ts +1 -0
- package/package.json +1 -1
- package/proto/users.proto +7 -6
package/gen/users.d.ts
CHANGED
package/gen/users.ts
CHANGED
package/package.json
CHANGED
package/proto/users.proto
CHANGED
|
@@ -302,12 +302,13 @@ message UpdateUserRoleRequest {
|
|
|
302
302
|
// GetUsers (paginated)
|
|
303
303
|
// =================================================================
|
|
304
304
|
|
|
305
|
-
message GetUsersRequest {
|
|
306
|
-
string page = 1;
|
|
307
|
-
string limit = 2;
|
|
308
|
-
string search = 3;
|
|
309
|
-
string role_name = 4;
|
|
310
|
-
|
|
305
|
+
message GetUsersRequest {
|
|
306
|
+
string page = 1;
|
|
307
|
+
string limit = 2;
|
|
308
|
+
string search = 3;
|
|
309
|
+
string role_name = 4;
|
|
310
|
+
string full_name = 5;
|
|
311
|
+
}
|
|
311
312
|
|
|
312
313
|
message GetUsersResponse {
|
|
313
314
|
repeated User items = 1;
|