@experts_hub/shared 1.0.559 → 1.0.560

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.
Files changed (41) hide show
  1. package/dist/index.d.mts +251 -1
  2. package/dist/index.d.ts +251 -1
  3. package/dist/index.js +313 -24
  4. package/dist/index.mjs +298 -24
  5. package/dist/modules/authentication/pattern/pattern.d.ts +10 -0
  6. package/dist/modules/bank/pattern/pattern.d.ts +3 -0
  7. package/dist/modules/commission/index.d.ts +1 -0
  8. package/dist/modules/commission/pattern/pattern.d.ts +3 -0
  9. package/dist/modules/contract/pattern/pattern.d.ts +14 -0
  10. package/dist/modules/dispute/index.d.ts +1 -0
  11. package/dist/modules/dispute/pattern/pattern.d.ts +5 -0
  12. package/dist/modules/freelancer-admin/pattern/pattern.d.ts +5 -0
  13. package/dist/modules/hiring/index.d.ts +1 -0
  14. package/dist/modules/hiring/pattern/pattern.d.ts +5 -0
  15. package/dist/modules/index.d.ts +7 -0
  16. package/dist/modules/interview/pattern/pattern.d.ts +47 -0
  17. package/dist/modules/invoice/pattern/pattern.d.ts +5 -0
  18. package/dist/modules/job/pattern/pattern.d.ts +34 -0
  19. package/dist/modules/llm/index.d.ts +1 -0
  20. package/dist/modules/llm/pattern/pattern.d.ts +3 -0
  21. package/dist/modules/notification/pattern/pattern.d.ts +4 -0
  22. package/dist/modules/onboarding/pattern/pattern.d.ts +11 -0
  23. package/dist/modules/question/pattern/pattern.d.ts +4 -0
  24. package/dist/modules/resume-parser/pattern/pattern.d.ts +3 -0
  25. package/dist/modules/senseloaf/index.d.ts +1 -0
  26. package/dist/modules/senseloaf/pattern/pattern.d.ts +5 -0
  27. package/dist/modules/skill/index.d.ts +1 -0
  28. package/dist/modules/skill/pattern/pattern.d.ts +4 -0
  29. package/dist/modules/stripe/pattern/pattern.d.ts +6 -0
  30. package/dist/modules/timesheet/pattern/pattern.d.ts +15 -0
  31. package/dist/modules/user/client-candidate-preference/index.d.ts +1 -0
  32. package/dist/modules/user/client-candidate-preference/pattern/pattern.d.ts +7 -0
  33. package/dist/modules/user/client-profile/pattern/pattern.d.ts +6 -0
  34. package/dist/modules/user/freelancer-profile/pattern/pattern.d.ts +26 -0
  35. package/dist/modules/user/freelancer-skill/pattern/pattern.d.ts +1 -0
  36. package/dist/modules/user/signature/index.d.ts +1 -0
  37. package/dist/modules/user/signature/pattern/pattern.d.ts +4 -0
  38. package/dist/modules/user/subadmin/pattern/pattern.d.ts +1 -0
  39. package/dist/modules/wallet/index.d.ts +1 -0
  40. package/dist/modules/wallet/pattern/pattern.d.ts +10 -0
  41. package/package.json +1 -1
@@ -1,5 +1,7 @@
1
1
  export declare const INTERVIEW_INVITE_PATTERN: {
2
2
  sendInterviewInvite: string;
3
+ fetchInvitedFreelancerForClient: string;
4
+ fetchInterviewInvite: string;
3
5
  };
4
6
  export declare const F2F_INTERVIEW_PATTERN: {
5
7
  fetchBookings: string;
@@ -9,13 +11,58 @@ export declare const F2F_INTERVIEW_PATTERN: {
9
11
  createF2FInterview: string;
10
12
  createF2FInterviewRescheduleRequest: string;
11
13
  rejectF2FInterviewRescheduleRequest: string;
14
+ fetchF2FInterviewsForClient: string;
15
+ fetchInterviewedFreelancerForClient: string;
16
+ createF2FInterviewDirect: string;
17
+ approveF2FInterviewRescheduleRequest: string;
18
+ fetchF2FInterviewByUuidWithJobDetailsForClient: string;
19
+ fetchF2FInterviewByUuidWithJobDetailsForFreelancer: string;
20
+ fetchF2FInterviewByUuidWithJobDetails: string;
12
21
  };
13
22
  export declare const AI_INTERVIEW_PATTERN: {
23
+ fetchAiInterviewDetailPublic: string;
24
+ markAiInterviewAsInProgressPublic: string;
25
+ markAiInterviewAsExpiredPublic: string;
26
+ captureAiInterviewResultPublic: string;
27
+ fetchAiInterviewforClient: string;
28
+ fetchAiInterviewforFreelancer: string;
29
+ fetchAiInterviewByUuidWithJobDetailsForFreelancer: string;
30
+ fetchRescheduleRequestsForFreelancerAiInterview: string;
31
+ fetchRescheduleRequestsForClientAiInterview: string;
32
+ fetchAiInterviewAnalysisForClient: string;
14
33
  fetchAiInterviewRescheduleRequestsForClient: string;
15
34
  createAiInterviewRescheduleRequest: string;
16
35
  approveAiInterviewRescheduleRequest: string;
17
36
  rejectAiInterviewRescheduleRequest: string;
37
+ handleAiInterviewAuthentication: string;
38
+ handleAiInterviewQuestionGeneration: string;
39
+ handleAiInterviewTemplateGeneration: string;
40
+ handleAiInterviewLinkGeneration: string;
41
+ handleAiInterviewInsights: string;
18
42
  };
19
43
  export declare const CALENDLY_PATTERN: {
20
44
  handleCalendlyWebhook: string;
21
45
  };
46
+ export declare const ZOOM_PATTERN: {
47
+ handleZoomWebhook: string;
48
+ handleTestZoomWebhook: string;
49
+ handleZoomRecordingSettlement: string;
50
+ };
51
+ export declare const INTERVIEW_PATTERN: {
52
+ fetchInterviews: string;
53
+ fetchInterviewDetail: string;
54
+ fetchInterviewType: string;
55
+ fetchInterviewBasicInformation: string;
56
+ createInterviewBasicInformation: string;
57
+ updateInterviewBasicInformation: string;
58
+ fetchInterviewTypeInformation: string;
59
+ updateInterviewTypeInformation: string;
60
+ fetchInterviewSkills: string;
61
+ createInterviewSkills: string;
62
+ fetchInterviewQuestions: string;
63
+ createInterviewQuestions: string;
64
+ fetchInterviewSetting: string;
65
+ updateInterviewSetting: string;
66
+ markInterviewAsPublished: string;
67
+ deleteInterview: string;
68
+ };
@@ -6,4 +6,9 @@ export declare const INVOICE_PATTERN: {
6
6
  updateInvoiceStatus: string;
7
7
  fetchAnalyticsForClient: string;
8
8
  fetchAnalyticsForFreelancer: string;
9
+ fetchFreelancerDropdownForClient: string;
10
+ fetchInvoicesSummeryForClient: string;
11
+ fetchDashboardAnalyticsForClient: string;
12
+ fetchPaymentDetailsByInvoiceId: string;
13
+ fetchInvoiceReportsForClient: string;
9
14
  };
@@ -20,4 +20,38 @@ export declare const JOB_PATTERN: {
20
20
  updateJobDescription: string;
21
21
  updateJobStatus: string;
22
22
  searchJobsByRoleAndSkills: string;
23
+ handleBulkRecommendationAdjustment: string;
24
+ refreshJobFreelancerRecommendationView: string;
25
+ fetchJobConfig: string;
26
+ fetchJobRoleSuggestions: string;
27
+ fetchJobCount: string;
28
+ fetchJobsDropdownForFilters: string;
29
+ fetchJobsDropdownForInterview: string;
30
+ fetchJobsDropdownForFreelancer: string;
31
+ fetchJobDetailForFreelancer: string;
32
+ fetchJobBasicInformationV2: string;
33
+ createJobBasicInformationV2: string;
34
+ updateJobBasicInformationV2: string;
35
+ deleteJob: string;
36
+ fetchRecommendedFreelancersForJobs: string;
37
+ fetchRecommendedFreelancersForJob: string;
38
+ fetchRecommendedFreelancersForJobV2: string;
39
+ handleJobViwedCountIncrement: string;
40
+ jobDataSetup: string;
41
+ fetchJobsForComparison: string;
42
+ fetchJobSkillDropdownForClient: string;
43
+ };
44
+ export declare const JOB_ADMIN_PATTERN: {
45
+ adminFetchJobByIdV2: string;
46
+ adminExportJobsToCSV: string;
47
+ adminFetchJobDescription: string;
48
+ adminUpdateJobDescription: string;
49
+ };
50
+ export declare const JOB_APPLICATION_PATTERN: {
51
+ fetchJobApplicationCountAsPerStatusByJobId: string;
52
+ fetchJobApplicationsByJobId: string;
53
+ fetchJobApplicants: string;
54
+ createJobApplication: string;
55
+ changeJobApplicationStatus: string;
56
+ changeJobApplicationStatusInBulk: string;
23
57
  };
@@ -0,0 +1 @@
1
+ export * from './pattern/pattern';
@@ -0,0 +1,3 @@
1
+ export declare const LLM_PATTERN: {
2
+ handleMcqGeneration: string;
3
+ };
@@ -1,4 +1,8 @@
1
1
  export declare const NOTIFICATION_PATTERN: {
2
2
  handleAccountVerificationNotification: string;
3
3
  handleResetLinkNotification: string;
4
+ handleBusinessAccountCreatedNotification: string;
5
+ handleBusinessAccountSetPasswordNotification: string;
6
+ handleFreelancerAccountSetPasswordNotification: string;
7
+ handleSendBulkInterviewInvites: string;
4
8
  };
@@ -7,4 +7,15 @@ export declare const ONBOARDING_PATTERN: {
7
7
  handleClientAccountCreation: string;
8
8
  handleClientProfileQuestion: string;
9
9
  changeFreelancerPassword: string;
10
+ handleFetchClientProfileQuestion: string;
11
+ verifyClientOnboardingToken: string;
12
+ handleFetchFreelancerResume: string;
13
+ handleFreelancerResumeParsing: string;
14
+ initiateFreelancerMcqAssessment: string;
15
+ handleFetchAiAssessmentLink: string;
16
+ skipFreelancerAiAssessment: string;
17
+ initiateFreelancerAiAssessment: string;
18
+ captureAiAssessmentStatus: string;
19
+ handleFetchFreelancerProfileQuestion: string;
20
+ handleFetchFreelancerDetails: string;
10
21
  };
@@ -3,4 +3,8 @@ export declare const ONBOARDING_QUESTION_PATTERN: {
3
3
  };
4
4
  export declare const ASSESSMENT_QUESTION_PATTERN: {
5
5
  fetchAssessmentQuestions: string;
6
+ handleAssessmentQuestionImport: string;
7
+ handelAssessmentRecordAnswer: string;
8
+ handelAssessmentRecordAnswers: string;
9
+ fetchAssessmentSummary: string;
6
10
  };
@@ -1,3 +1,6 @@
1
1
  export declare const RESUME_PARSER_PATTERN: {
2
2
  handleResumeParsing: string;
3
+ handleResumeParsingByUrl: string;
4
+ handleResumeDataProcessing: string;
5
+ handleCheckResumeEligibility: string;
3
6
  };
@@ -1 +1,2 @@
1
+ export * from './pattern/pattern';
1
2
  export * from './dto';
@@ -0,0 +1,5 @@
1
+ export declare const SENSELOAF_PATTERN: {
2
+ handleAiAssessmentDetails: string;
3
+ handelAiAssessmentCreation: string;
4
+ handleJdParsing: string;
5
+ };
@@ -0,0 +1 @@
1
+ export * from './pattern/pattern';
@@ -0,0 +1,4 @@
1
+ export declare const SKILL_PATTERN: {
2
+ fetchSkillsDropdown: string;
3
+ fetchSkillsDropdownV2: string;
4
+ };
@@ -9,4 +9,10 @@ export declare const STRIPE_PATTERN: {
9
9
  getConnectedAccounts: string;
10
10
  getTransferHistory: string;
11
11
  fetchTransactions: string;
12
+ handleStripeWebhookTestEvent: string;
13
+ createClientCustomerAccount: string;
14
+ preCheckoutCalculation: string;
15
+ clientAddFund: string;
16
+ getFreelancerAccountBalance: string;
17
+ getBalanceTransactionsForFreelancer: string;
12
18
  };
@@ -8,8 +8,23 @@ export declare const TIMESHEET_FREELANCER_PATTERN: {
8
8
  fetchMissingTimesheetsForFreelancer: string;
9
9
  fetchSubmitedTimesheetsForFreelancer: string;
10
10
  fetchTimesheetsForResubmitForFreelancer: string;
11
+ fetchTimesheetsByDateRangeAndJobIdForFreelancer: string;
12
+ fetchWeeklyCardSummeryByJobIdForFreelancer: string;
13
+ fetchCardSummeryByTimesheetLineIdForFreelancer: string;
14
+ fetchApprovedTimesheetsForFreelancer: string;
15
+ fetchPendingApprovalTimesheetsForFreelancer: string;
16
+ fetchAllSubmittedTimesheetsForFreelancer: string;
17
+ checkTimesheetSubmissionStatusForFreelancer: string;
18
+ fetchSubmissionHistoryForFreelancer: string;
19
+ resubmitTimesheetForFreelancer: string;
20
+ createMissingTimesheetLine: string;
21
+ fetchClientDropDownForFreelancer: string;
22
+ fetchJobsDropDownForFreelancer: string;
11
23
  };
12
24
  export declare const TIMESHEET_CLIENT_PATTERN: {
13
25
  approveFreelancerTimesheetForClient: string;
14
26
  rejectFreelancerTimesheetForClient: string;
27
+ fetchAllSubmittedTimesheetsForClient: string;
28
+ fetchAllSendBackTimesheetsForClient: string;
29
+ fetchAllPendingApprovalTimesheetsForClient: string;
15
30
  };
@@ -0,0 +1 @@
1
+ export * from './pattern/pattern';
@@ -0,0 +1,7 @@
1
+ export declare const CLIENT_CANDIDATE_PREFERENCE_PATTERN: {
2
+ fetchClientPreferredCandidate: string;
3
+ markCandidateAsNotSuitable: string;
4
+ markCandidateAsNotSuitableInBulk: string;
5
+ markCandidateAsShortlisted: string;
6
+ markCandidateAsShortlistedInBulk: string;
7
+ };
@@ -6,4 +6,10 @@ export declare const CLIENT_PROFILE_PATTERN: {
6
6
  updateClientLogo: string;
7
7
  changeClientPassword: string;
8
8
  uploadClientServiceAgreement: string;
9
+ fetchClientServiceAgreement: string;
10
+ generateClientServiceAgreement: string;
11
+ esignClientServiceAgreementForClient: string;
12
+ fetchClientServiceAgreementStatus: string;
13
+ fetchRecommendedFreelancers: string;
14
+ fetchRecommendedFreelancersV2: string;
9
15
  };
@@ -7,4 +7,30 @@ export declare const PROFILE_PATTERN: {
7
7
  uploadFreelancerProfilePic: string;
8
8
  updateFreelancerProfile: string;
9
9
  uploadFreelancerServiceAgreement: string;
10
+ fetchFreelancerServiceAgreement: string;
11
+ generateFreelancerServiceAgreement: string;
12
+ esignFreelancerServiceAgreementForClient: string;
13
+ freelancerResumeDataMappingDev: string;
14
+ freelancerMcqScoreMappingDev: string;
15
+ fetchFreelancerDropdown: string;
16
+ fetchFreelancerDesignationDropdown: string;
17
+ deleteFreelancerProfilePic: string;
18
+ fetchRecommendedJobsForFreelancer: string;
19
+ fetchRecommendedClientsDropdownForFreelancerV2: string;
20
+ fetchRecommendedJobsDropdownForFreelancerV2: string;
21
+ fetchRecommendedJobsForFreelancerV2: string;
22
+ fetchAppliedJobsOfFreelancer: string;
23
+ fetchAppliedJobsDropdownForFreelancer: string;
24
+ countOfActiveFreelancers: string;
25
+ markFollowedOnLinkedIn: string;
26
+ fetchFreelancerResumeByUuId: string;
27
+ freelancerDataSetup: string;
28
+ freelancerEmailAndMobileMasking: string;
29
+ fetchClientInfoForChat: string;
30
+ fetchAiAssessmentDetails: string;
31
+ captureAiAssessmentResult: string;
32
+ };
33
+ export declare const FREELANCER_ASSESSMENT_REQUEST_PATTERN: {
34
+ fetchAssessmentRequestsForFreelancer: string;
35
+ createFreelancerAssessmentRequest: string;
10
36
  };
@@ -1,4 +1,5 @@
1
1
  export declare const FREELANCER_SKILL_PATTERN: {
2
2
  fetchFreelancerSkill: string;
3
3
  saveFreelancerSkill: string;
4
+ fetchFreelancersSkillDropdown: string;
4
5
  };
@@ -0,0 +1 @@
1
+ export * from './pattern/pattern';
@@ -0,0 +1,4 @@
1
+ export declare const SIGNATURE_PATTERN: {
2
+ fetchSignatures: string;
3
+ saveSignature: string;
4
+ };
@@ -7,4 +7,5 @@ export declare const SUBADMIN_PATTERN: {
7
7
  updateSubAdminAccountStatus: string;
8
8
  updateSubAdmin: string;
9
9
  deleteSubAdmin: string;
10
+ fetchSubAdminCount: string;
10
11
  };
@@ -0,0 +1 @@
1
+ export * from './pattern/pattern';
@@ -0,0 +1,10 @@
1
+ export declare const WALLET_PATTERN: {
2
+ fetchConnectAccountDetails: string;
3
+ fetchWalletTransactions: string;
4
+ addTopupEscrowAmount: string;
5
+ debitCommissionFromClientForFTEHiring: string;
6
+ };
7
+ export declare const WALLET_ADMIN_PATTERN: {
8
+ fetchAdminWalletBalance: string;
9
+ fetchAdminWalletTransactions: string;
10
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.559",
3
+ "version": "1.0.560",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",