rez_core 0.0.5 → 0.0.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -149,4 +149,8 @@ export class UserService extends EntityServiceImpl {
149
149
  async findByEmailId(email_id: string): Promise<UserData | null> {
150
150
  return await this.userRepository.findByEmailId(email_id);
151
151
  }
152
+
153
+ async findByMobile(mobile: string){
154
+ return await this.userRepository.findByMobile(mobile);
155
+ }
152
156
  }