@experts_hub/shared 1.0.108 → 1.0.110

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.
@@ -0,0 +1,10 @@
1
+ declare enum ScopeEnum {
2
+ ADMIN = "ADMIN",
3
+ CLIENT = "CLIENT",
4
+ FREELANCER = "FREELANCER"
5
+ }
6
+ export declare class ForgotPasswordDto {
7
+ email: string;
8
+ scope: ScopeEnum;
9
+ }
10
+ export {};
@@ -1,3 +1,5 @@
1
1
  export * from './login.dto';
2
2
  export * from './refresh.dto';
3
3
  export * from './logout.dto';
4
+ export * from './forgot-password.dto';
5
+ export * from './reset-password.dto';
@@ -0,0 +1,11 @@
1
+ declare enum ScopeEnum {
2
+ ADMIN = "ADMIN",
3
+ CLIENT = "CLIENT",
4
+ FREELANCER = "FREELANCER"
5
+ }
6
+ export declare class ResetPasswordDto {
7
+ token: string;
8
+ password: string;
9
+ scope: ScopeEnum;
10
+ }
11
+ export {};
@@ -6,4 +6,6 @@ export declare const AUTHENTICATION_PATTERN: {
6
6
  handleLogoutAll: string;
7
7
  fetchSessions: string;
8
8
  revokeSession: string;
9
+ handleForgotPassword: string;
10
+ handleResetPassword: string;
9
11
  };
@@ -0,0 +1 @@
1
+ export * from './pattern/pattern';
@@ -0,0 +1,4 @@
1
+ export declare const NOTIFICATION_PATTERN: {
2
+ handleAccountVerificationNotification: string;
3
+ handleResetLinkNotification: string;
4
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.108",
3
+ "version": "1.0.110",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",