@experts_hub/shared 1.0.658 → 1.0.661

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.
@@ -24,6 +24,7 @@ declare class JobLocationDto {
24
24
  cityName?: string | null;
25
25
  }
26
26
  export declare class CreateJobViaAIDto {
27
+ userId: number;
27
28
  isDraft?: boolean;
28
29
  jobRole: string;
29
30
  jobRoleCanonicalName?: string;
@@ -22,6 +22,7 @@ export declare const NOTIFICATION_PATTERN: {
22
22
  handleAiAssessmentInterviewRecordingErrorNotification: string;
23
23
  handleSubAdminAccountCreatedNotification: string;
24
24
  handleUserResetPasswordByAdminNotification: string;
25
+ handlePasswordChangeNotification: string;
25
26
  };
26
27
  export declare const SMS_PATTERN: {
27
28
  sendTest: string;
@@ -3,3 +3,5 @@ export * from './client-change-password.dto';
3
3
  export * from './client-service-agreement-upload.dto';
4
4
  export * from './client-e-signature.dto';
5
5
  export * from './fetch-freelancer-info-for-chat.dto';
6
+ export * from './client-change-password.dto';
7
+ export * from './verify-password-change-otp.dto';
@@ -0,0 +1,4 @@
1
+ export declare class RequestPasswordChangeOtpDto {
2
+ currentPassword: string;
3
+ newPassword: string;
4
+ }
@@ -0,0 +1,4 @@
1
+ export declare class VerifyPasswordChangeOtpDto {
2
+ newPassword: string;
3
+ otp: string;
4
+ }
@@ -18,4 +18,7 @@ export declare const CLIENT_PROFILE_PATTERN: {
18
18
  deleteClientProfilePic: string;
19
19
  fetchFreelancerInfoForChat: string;
20
20
  fetchClientAndFreelancerDetailsForChatChannelCreation: string;
21
+ fetchCustomeResume: string;
22
+ requestPasswordChangeOtp: string;
23
+ verifyPasswordChangeOtp: string;
21
24
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.658",
3
+ "version": "1.0.661",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",