@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 CHANGED
@@ -245,6 +245,7 @@ export interface GetUsersRequest {
245
245
  limit: string;
246
246
  search: string;
247
247
  roleName: string;
248
+ fullName: string;
248
249
  }
249
250
  export interface GetUsersResponse {
250
251
  items: User[];
package/gen/users.ts CHANGED
@@ -282,6 +282,7 @@ export interface GetUsersRequest {
282
282
  limit: string;
283
283
  search: string;
284
284
  roleName: string;
285
+ fullName: string;
285
286
  }
286
287
 
287
288
  export interface GetUsersResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aepstore-dev/contracts",
3
- "version": "1.89.0",
3
+ "version": "1.90.0",
4
4
  "description": "Protobuf definitions for aepstore microservices",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
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;