@experts_hub/shared 1.0.668 → 1.0.672

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.
@@ -63,5 +63,6 @@ export declare class CreateJobViaAIDto {
63
63
  stepCompleted?: StepCompletedEnumV2;
64
64
  additionalComment?: string;
65
65
  description: string;
66
+ dealbreakers: object;
66
67
  }
67
68
  export {};
@@ -3,5 +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 './request-password-change-otp.dto';
7
- export * from './verify-password-change-otp.dto';
6
+ export * from './request-password-change-otp-client.dto';
7
+ export * from './verify-password-change-otp-client.dto';
@@ -0,0 +1,4 @@
1
+ export declare class RequestPasswordChangeOtpForClientDto {
2
+ currentPassword: string;
3
+ newPassword: string;
4
+ }
@@ -0,0 +1,4 @@
1
+ export declare class VerifyPasswordChangeOtpForClientDto {
2
+ newPassword: string;
3
+ otp: string;
4
+ }
@@ -19,6 +19,7 @@ export declare const CLIENT_PROFILE_PATTERN: {
19
19
  fetchFreelancerInfoForChat: string;
20
20
  fetchClientAndFreelancerDetailsForChatChannelCreation: string;
21
21
  fetchCustomeResume: string;
22
- requestPasswordChangeOtp: string;
23
- verifyPasswordChangeOtp: string;
22
+ requestPasswordChangeOtpForClient: string;
23
+ verifyPasswordChangeOtpForClient: string;
24
+ isPasswordSetForClient: string;
24
25
  };
@@ -3,3 +3,5 @@ export * from './update-freelancer-profile.dto';
3
3
  export * from './freelancer-e-signature.dto';
4
4
  export * from './fetch-client-info-for-chat.dto';
5
5
  export * from './capture-ai-assessment-result.dto';
6
+ export * from './request-password-change-otp-freelancer.dto';
7
+ export * from './verify-password-change-otp-freelancer.dto';
@@ -0,0 +1,4 @@
1
+ export declare class RequestPasswordChangeOtpForFreelancerDto {
2
+ currentPassword: string;
3
+ newPassword: string;
4
+ }
@@ -0,0 +1,4 @@
1
+ export declare class VerifyPasswordChangeOtpForFreelancerDto {
2
+ newPassword: string;
3
+ otp: string;
4
+ }
@@ -32,6 +32,9 @@ export declare const PROFILE_PATTERN: {
32
32
  fetchClientInfoForChat: string;
33
33
  fetchAiAssessmentDetails: string;
34
34
  captureAiAssessmentResult: string;
35
+ requestPasswordChangeOtpForFreelancer: string;
36
+ verifyPasswordChangeOtpForFreelancer: string;
37
+ isPasswordSetForFreelancer: string;
35
38
  };
36
39
  export declare const FREELANCER_ASSESSMENT_REQUEST_PATTERN: {
37
40
  fetchAssessmentRequestsForFreelancer: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.668",
3
+ "version": "1.0.672",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",
@@ -1,4 +0,0 @@
1
- export declare class RequestPasswordChangeOtpDto {
2
- currentPassword: string;
3
- newPassword: string;
4
- }
@@ -1,4 +0,0 @@
1
- export declare class VerifyPasswordChangeOtpDto {
2
- newPassword: string;
3
- otp: string;
4
- }