@experts_hub/shared 1.0.559 → 1.0.561
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.
- package/dist/entities/job.entity.d.ts +4 -0
- package/dist/index.d.mts +259 -1
- package/dist/index.d.ts +259 -1
- package/dist/index.js +363 -24
- package/dist/index.mjs +348 -24
- package/dist/modules/authentication/pattern/pattern.d.ts +10 -0
- package/dist/modules/bank/pattern/pattern.d.ts +3 -0
- package/dist/modules/commission/index.d.ts +1 -0
- package/dist/modules/commission/pattern/pattern.d.ts +3 -0
- package/dist/modules/contract/pattern/pattern.d.ts +14 -0
- package/dist/modules/dispute/index.d.ts +1 -0
- package/dist/modules/dispute/pattern/pattern.d.ts +5 -0
- package/dist/modules/freelancer-admin/pattern/pattern.d.ts +5 -0
- package/dist/modules/hiring/index.d.ts +1 -0
- package/dist/modules/hiring/pattern/pattern.d.ts +5 -0
- package/dist/modules/index.d.ts +7 -0
- package/dist/modules/interview/pattern/pattern.d.ts +47 -0
- package/dist/modules/invoice/pattern/pattern.d.ts +5 -0
- package/dist/modules/job/dto/job-basic-information-v2.dto.d.ts +4 -0
- package/dist/modules/job/pattern/pattern.d.ts +34 -0
- package/dist/modules/llm/index.d.ts +1 -0
- package/dist/modules/llm/pattern/pattern.d.ts +3 -0
- package/dist/modules/notification/pattern/pattern.d.ts +4 -0
- package/dist/modules/onboarding/pattern/pattern.d.ts +11 -0
- package/dist/modules/question/pattern/pattern.d.ts +4 -0
- package/dist/modules/resume-parser/pattern/pattern.d.ts +3 -0
- package/dist/modules/senseloaf/index.d.ts +1 -0
- package/dist/modules/senseloaf/pattern/pattern.d.ts +5 -0
- package/dist/modules/skill/index.d.ts +1 -0
- package/dist/modules/skill/pattern/pattern.d.ts +4 -0
- package/dist/modules/stripe/pattern/pattern.d.ts +6 -0
- package/dist/modules/timesheet/pattern/pattern.d.ts +15 -0
- package/dist/modules/user/client-candidate-preference/index.d.ts +1 -0
- package/dist/modules/user/client-candidate-preference/pattern/pattern.d.ts +7 -0
- package/dist/modules/user/client-profile/pattern/pattern.d.ts +6 -0
- package/dist/modules/user/freelancer-profile/pattern/pattern.d.ts +26 -0
- package/dist/modules/user/freelancer-skill/pattern/pattern.d.ts +1 -0
- package/dist/modules/user/signature/index.d.ts +1 -0
- package/dist/modules/user/signature/pattern/pattern.d.ts +4 -0
- package/dist/modules/user/subadmin/pattern/pattern.d.ts +1 -0
- package/dist/modules/wallet/index.d.ts +1 -0
- package/dist/modules/wallet/pattern/pattern.d.ts +10 -0
- package/package.json +1 -1
|
@@ -7,4 +7,9 @@ export declare const ADMIN_FREELANCER_PATTERN: {
|
|
|
7
7
|
adminUpdateFreelancer: string;
|
|
8
8
|
adminDeleteFreelancer: string;
|
|
9
9
|
fetchFreelancerGraphCount: string;
|
|
10
|
+
adminExportFreelancerV2: string;
|
|
11
|
+
sendAiAssessmentLink: string;
|
|
12
|
+
fetchAIassessmentsForAdmin: string;
|
|
13
|
+
fetchAiAssessmentRequestsForAdmin: string;
|
|
14
|
+
updateAssessmentRequestStatus: string;
|
|
10
15
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './pattern/pattern';
|
package/dist/modules/index.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ export * from './user/freelancer-skill';
|
|
|
22
22
|
export * from './freelancer-admin';
|
|
23
23
|
export * from './client-admin';
|
|
24
24
|
export * from './user/freelancer-declaration';
|
|
25
|
+
export * from './user/client-candidate-preference';
|
|
25
26
|
export * from './cms';
|
|
26
27
|
export * from './geographic';
|
|
27
28
|
export * from './job-admin';
|
|
@@ -35,3 +36,9 @@ export * from './timesheet';
|
|
|
35
36
|
export * from './invoice';
|
|
36
37
|
export * from './dispute';
|
|
37
38
|
export * from './senseloaf';
|
|
39
|
+
export * from './commission';
|
|
40
|
+
export * from './hiring';
|
|
41
|
+
export * from './llm';
|
|
42
|
+
export * from './skill';
|
|
43
|
+
export * from './user/signature';
|
|
44
|
+
export * from './wallet';
|
|
@@ -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
|
};
|
|
@@ -41,6 +41,10 @@ export declare class JobBasicInformationV2Dto {
|
|
|
41
41
|
hideExpectedSalaryFrom: boolean;
|
|
42
42
|
expectedSalaryTo: number;
|
|
43
43
|
hideExpectedSalaryTo: boolean;
|
|
44
|
+
expectedAnnualBudgetFrom: number;
|
|
45
|
+
hideExpectedAnnualBudgetFrom: boolean;
|
|
46
|
+
expectedAnnualBudgetTo: number;
|
|
47
|
+
hideExpectedAnnualBudgetTo: boolean;
|
|
44
48
|
years: string;
|
|
45
49
|
months: string;
|
|
46
50
|
weeks: string;
|
|
@@ -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';
|
|
@@ -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
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './pattern/pattern';
|
|
@@ -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
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './pattern/pattern';
|
|
@@ -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
|
+
};
|