diff --git a/package.json b/package.json index 4369980..a116d41 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lendry-erp/contracts", - "version": "1.1.0", + "version": "1.1.1", "description": "Protobuf definitions and generated TypeScript types", "type": "commonjs", "main": "./dist/index.js", diff --git a/src/events/users/search-users.interface.ts b/src/events/users/search-users.interface.ts new file mode 100644 index 0000000..eb120b9 --- /dev/null +++ b/src/events/users/search-users.interface.ts @@ -0,0 +1,8 @@ +export interface SearchUsersEvent { + profileId: string; + username: string; + email?: string; + phone?: string; + fullName?: string; + customStatusText?: string; +}