@experts_hub/shared 1.0.643 → 1.0.645

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.
@@ -11,3 +11,4 @@ export * from './validate-email-for-login.dto';
11
11
  export * from './validate-mobile.dto';
12
12
  export * from './social-auth.dto';
13
13
  export * from './login-using-uuid.dto';
14
+ export * from './reset-password-by-admin.dto';
@@ -0,0 +1,4 @@
1
+ export declare class ResetUserPasswordByAdminDto {
2
+ uuid: string;
3
+ password: string;
4
+ }
@@ -23,4 +23,5 @@ export declare const AUTHENTICATION_PATTERN: {
23
23
  loginWithGoogle: string;
24
24
  validateOnboardingToken: string;
25
25
  loginUsingUuid: string;
26
+ handleUserResetPasswordByAdmin: string;
26
27
  };
@@ -3,3 +3,5 @@ export * from './update-client-status.dto';
3
3
  export * from './update-client.dto';
4
4
  export * from './admin-export-clientV2-optimised.dto';
5
5
  export * from './update-admin-client-account-status.dto';
6
+ export * from './update-admin-client-job-posting-restriction.dto';
7
+ export * from './skip-service-agreement-flow.dto';
@@ -0,0 +1,3 @@
1
+ export declare class SkipServiceAgreementFlowDto {
2
+ skipServiceAgreement: boolean;
3
+ }
@@ -0,0 +1,3 @@
1
+ export declare class UpdateAdminClientJobPostingRestrictionDto {
2
+ isJobPostingRestricted: boolean;
3
+ }
@@ -1,3 +1,4 @@
1
+ import { AccountStatus } from '../../../entities/user.entity';
1
2
  export declare class UpdateClientAccountStatusDto {
2
- accountStatus: string;
3
+ accountStatus: AccountStatus;
3
4
  }
@@ -10,4 +10,6 @@ export declare const CLIENT_ADMIN_PATTERNS: {
10
10
  fetchClientGraphCount: string;
11
11
  adminExportClientV2Optimised: string;
12
12
  updateAdminClientAccountStatus: string;
13
+ skipServiceAgreementFlow: string;
14
+ updateAdminClientJobPostingRestrictionStatus: string;
13
15
  };
@@ -3,3 +3,4 @@ export * from './update-freelancer.dto';
3
3
  export * from './send-ai-assessment-link.dto';
4
4
  export * from './update-assessment-request-status.dto';
5
5
  export * from './admin-export-freelancerV2-optimised.dto';
6
+ export * from './update-admin-freelancer-account-status.dto';
@@ -0,0 +1,4 @@
1
+ import { AccountStatus } from '../../../entities/user.entity';
2
+ export declare class UpdateAdminFreelancerAccountStatusDto {
3
+ accountStatus: AccountStatus;
4
+ }
@@ -21,4 +21,5 @@ export declare const ADMIN_FREELANCER_PATTERN: {
21
21
  fetchAIassessmentResultForFreelancerAdmin: string;
22
22
  deleteAIassessmentForAdminFreelancer: string;
23
23
  fetchAppliedJobsOfAdminFreelancer: string;
24
+ updateAdminFreelancerAccountStatus: string;
24
25
  };
@@ -66,4 +66,5 @@ export declare const INTERVIEW_PATTERN: {
66
66
  markInterviewAsPublished: string;
67
67
  deleteInterview: string;
68
68
  fetchInterviewCountAsPerStatus: string;
69
+ fetchCompletedAiAndF2FInterviewForClient: string;
69
70
  };
@@ -12,4 +12,5 @@ export declare const ADMIN_JOB_PATTERN: {
12
12
  adminExportJobsToCSV: string;
13
13
  adminFetchJobDescription: string;
14
14
  adminUpdateJobDescription: string;
15
+ adminFetchJobsPostedByClient: string;
15
16
  };
@@ -21,6 +21,7 @@ export declare const NOTIFICATION_PATTERN: {
21
21
  handleAiAssessmentInterviewResultErrorNotification: string;
22
22
  handleAiAssessmentInterviewRecordingErrorNotification: string;
23
23
  handleSubAdminAccountCreatedNotification: string;
24
+ handleUserResetPasswordByAdminNotification: string;
24
25
  };
25
26
  export declare const SMS_PATTERN: {
26
27
  sendTest: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.643",
3
+ "version": "1.0.645",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",