@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
package/dist/index.mjs CHANGED
@@ -22,7 +22,17 @@ var AUTHENTICATION_PATTERN = {
22
22
  handleForgotPassword: "handle.forgot.password",
23
23
  handleResetPassword: "handle.reset.password",
24
24
  handleValidateResetPasswordToken: "handle.validate.reset.password.token",
25
- handleSetPassword: "handle.set.password"
25
+ handleVerifyPermission: "handle.verify.permission",
26
+ handleValidateEmail: "handle.validate.email",
27
+ handleValidateEmailForLogin: "handle.validate.email.for.login",
28
+ handleValidateMobile: "handle.validate.mobile",
29
+ handleAdminLogin: "handle.admin.login",
30
+ handleSetPassword: "handle.set.password",
31
+ signUpWithLinkedIn: "signup.with.linkedin",
32
+ loginWithLinkedIn: "login.with.linkedin",
33
+ signUpWithGoogle: "signup.with.google",
34
+ loginWithGoogle: "login.with.google",
35
+ validateOnboardingToken: "validate.onboarding.token"
26
36
  };
27
37
 
28
38
  // src/modules/authentication/dto/login.dto.ts
@@ -289,7 +299,18 @@ var ONBOARDING_PATTERN = {
289
299
  handleFreelancerWorkShowcase: "handle.freelancer.work.showcase",
290
300
  handleClientAccountCreation: "handle.client.account.creation",
291
301
  handleClientProfileQuestion: "handle.client.profile.question",
292
- changeFreelancerPassword: "change.freelancer.password"
302
+ changeFreelancerPassword: "change.freelancer.password",
303
+ handleFetchClientProfileQuestion: "handle.fetch.client.profile.question",
304
+ verifyClientOnboardingToken: "verify.client.onboarding.token",
305
+ handleFetchFreelancerResume: "handle.fetch.freelancer.resume",
306
+ handleFreelancerResumeParsing: "handle.freelancer.resume.parsing",
307
+ initiateFreelancerMcqAssessment: "initiate.freelancer.mcq.assessment",
308
+ handleFetchAiAssessmentLink: "handle.fetch.ai.assessment.link",
309
+ skipFreelancerAiAssessment: "skip.freelancer.ai.assessment",
310
+ initiateFreelancerAiAssessment: "initiate.freelancer.ai.assessment",
311
+ captureAiAssessmentStatus: "capture.ai.assessment.status",
312
+ handleFetchFreelancerProfileQuestion: "handle.fetch.freelancer.profile.question",
313
+ handleFetchFreelancerDetails: "handle.fetch.freelancer.details"
293
314
  };
294
315
 
295
316
  // src/modules/onboarding/dto/freelancer-create-account.dto.ts
@@ -739,7 +760,10 @@ __decorateClass([
739
760
 
740
761
  // src/modules/resume-parser/pattern/pattern.ts
741
762
  var RESUME_PARSER_PATTERN = {
742
- handleResumeParsing: "handle.resume.parsing"
763
+ handleResumeParsing: "handle.resume.parsing",
764
+ handleResumeParsingByUrl: "handle.resume.parsing.by.url",
765
+ handleResumeDataProcessing: "handle.resume.data.processing",
766
+ handleCheckResumeEligibility: "handle.check.resume.eligibility"
743
767
  };
744
768
 
745
769
  // src/modules/user/subadmin/pattern/pattern.ts
@@ -751,7 +775,8 @@ var SUBADMIN_PATTERN = {
751
775
  createSubAdmin: "create.subadmin",
752
776
  updateSubAdminAccountStatus: "update.subadmin.account.status",
753
777
  updateSubAdmin: "update.subadmin",
754
- deleteSubAdmin: "delete.subadmin"
778
+ deleteSubAdmin: "delete.subadmin",
779
+ fetchSubAdminCount: "fetch.sub.admin.count"
755
780
  };
756
781
 
757
782
  // src/modules/user/subadmin/dto/create-subadmin.dto.ts
@@ -837,7 +862,13 @@ var CLIENT_PROFILE_PATTERN = {
837
862
  updateClientProfile: "update.client.profile",
838
863
  updateClientLogo: "update.client.logo",
839
864
  changeClientPassword: "change.client.password",
840
- uploadClientServiceAgreement: "upload.client.service.agreement"
865
+ uploadClientServiceAgreement: "upload.client.service.agreement",
866
+ fetchClientServiceAgreement: "fetch.client.service.agreement",
867
+ generateClientServiceAgreement: "generate.client.service.agreement",
868
+ esignClientServiceAgreementForClient: "esign.client.service.agreement.for.client",
869
+ fetchClientServiceAgreementStatus: "fetch.client.service.agreement.status",
870
+ fetchRecommendedFreelancers: "fetch.recommended.freelancers",
871
+ fetchRecommendedFreelancersV2: "fetch.recommended.freelancers.v2"
841
872
  };
842
873
 
843
874
  // src/modules/user/client-profile/dto/update-client-profile.dto.ts
@@ -936,7 +967,11 @@ var ONBOARDING_QUESTION_PATTERN = {
936
967
  fetchOnboardingQuestions: "fetch.onboarding.questions"
937
968
  };
938
969
  var ASSESSMENT_QUESTION_PATTERN = {
939
- fetchAssessmentQuestions: "fetch.assessment.questions"
970
+ fetchAssessmentQuestions: "fetch.assessment.questions",
971
+ handleAssessmentQuestionImport: "handle.assessment.question.import",
972
+ handelAssessmentRecordAnswer: "handel.assessment.record.answer",
973
+ handelAssessmentRecordAnswers: "handel.assessment.record.answers",
974
+ fetchAssessmentSummary: "fetch.assessment.summary"
940
975
  };
941
976
 
942
977
  // src/modules/question/dto/create-question.dto.ts
@@ -986,7 +1021,41 @@ var JOB_PATTERN = {
986
1021
  fetchJobDescription: "fetch.job.description",
987
1022
  updateJobDescription: "update.job.description",
988
1023
  updateJobStatus: "update.job.status",
989
- searchJobsByRoleAndSkills: "search.jobs.by.role.and.skills"
1024
+ searchJobsByRoleAndSkills: "search.jobs.by.role.and.skills",
1025
+ handleBulkRecommendationAdjustment: "handle.bulk.recommendation.adjustment",
1026
+ refreshJobFreelancerRecommendationView: "refresh.job.freelancer.recommendation.view",
1027
+ fetchJobConfig: "fetch.job.config",
1028
+ fetchJobRoleSuggestions: "fetch.job.role.suggestions",
1029
+ fetchJobCount: "fetch.job.count",
1030
+ fetchJobsDropdownForFilters: "fetch.jobs.dropdown.for.filters",
1031
+ fetchJobsDropdownForInterview: "fetch.jobs.dropdown.for.interview",
1032
+ fetchJobsDropdownForFreelancer: "fetch.jobs.dropdown.for.freelancer",
1033
+ fetchJobDetailForFreelancer: "fetch.job.detail.for.freelancer",
1034
+ fetchJobBasicInformationV2: "fetch.job.basic.information.v2",
1035
+ createJobBasicInformationV2: "create.job.basic.information.v2",
1036
+ updateJobBasicInformationV2: "update.job.basic.information.v2",
1037
+ deleteJob: "deleteJob",
1038
+ fetchRecommendedFreelancersForJobs: "fetch.recommended.freelancers.for.jobs",
1039
+ fetchRecommendedFreelancersForJob: "fetch.recommended.freelancers.for.job",
1040
+ fetchRecommendedFreelancersForJobV2: "fetch.recommended.freelancers.for.job.v2",
1041
+ handleJobViwedCountIncrement: "handle.job.viwed.count.increment",
1042
+ jobDataSetup: "job.data.Setup",
1043
+ fetchJobsForComparison: "fetch.jobs.for.comparison",
1044
+ fetchJobSkillDropdownForClient: "fetch.job.skill.dropdown.for.client"
1045
+ };
1046
+ var JOB_ADMIN_PATTERN = {
1047
+ adminFetchJobByIdV2: "admin.fetch.job.by.id.v2",
1048
+ adminExportJobsToCSV: "admin.export.jobs.to.csv",
1049
+ adminFetchJobDescription: "admin.fetch.job.description",
1050
+ adminUpdateJobDescription: "admin.update.job.description"
1051
+ };
1052
+ var JOB_APPLICATION_PATTERN = {
1053
+ fetchJobApplicationCountAsPerStatusByJobId: "fetch.job.application.count.as.per.status.by.job.id",
1054
+ fetchJobApplicationsByJobId: "fetch.job.applications.by.job.id",
1055
+ fetchJobApplicants: "fetch.job.applicants",
1056
+ createJobApplication: "create.job.application",
1057
+ changeJobApplicationStatus: "change.job.application.status",
1058
+ changeJobApplicationStatusInBulk: "change.job.application.status.bulk"
990
1059
  };
991
1060
 
992
1061
  // src/modules/job/dto/job-basic-information.dto.ts
@@ -1425,7 +1494,33 @@ var PROFILE_PATTERN = {
1425
1494
  changeFreelancerPassword: "change.freelancer.password",
1426
1495
  uploadFreelancerProfilePic: "upload.freelancer.profilepic",
1427
1496
  updateFreelancerProfile: "update.freelancer.profile",
1428
- uploadFreelancerServiceAgreement: "upload.freelancer.service.agreement"
1497
+ uploadFreelancerServiceAgreement: "upload.freelancer.service.agreement",
1498
+ fetchFreelancerServiceAgreement: "fetch.freelancer.service.agreement",
1499
+ generateFreelancerServiceAgreement: "generate.freelancer.service.agreement",
1500
+ esignFreelancerServiceAgreementForClient: "esign.freelancer.service.agreement.for.client",
1501
+ freelancerResumeDataMappingDev: "freelancer.resume.data.papping.dev",
1502
+ freelancerMcqScoreMappingDev: "freelancer.mcq.score.mapping.dev",
1503
+ fetchFreelancerDropdown: "fetch.freelancer.dropdown",
1504
+ fetchFreelancerDesignationDropdown: "fetch.freelancer.designation.dropdown",
1505
+ deleteFreelancerProfilePic: "delete.freelancer.profile.pic",
1506
+ fetchRecommendedJobsForFreelancer: "fetch.recommended.jobs.for.freelancer",
1507
+ fetchRecommendedClientsDropdownForFreelancerV2: "fetch.recommended.clients.dropdown.for.freelancer.v2",
1508
+ fetchRecommendedJobsDropdownForFreelancerV2: "fetch.recommended.jobs.dropdown.for.freelancer.v2",
1509
+ fetchRecommendedJobsForFreelancerV2: "fetch.recommended.jobs.for.freelancer.v2",
1510
+ fetchAppliedJobsOfFreelancer: "fetch.applied.jobs.of.freelancer",
1511
+ fetchAppliedJobsDropdownForFreelancer: "fetch.applied.jobs.dropdown.for.freelancer",
1512
+ countOfActiveFreelancers: "count.of.active.freelancers",
1513
+ markFollowedOnLinkedIn: "mark.followed.on.linkedin",
1514
+ fetchFreelancerResumeByUuId: "fetch.freelancer.resume.by.uuid",
1515
+ freelancerDataSetup: "freelancer.data.setup",
1516
+ freelancerEmailAndMobileMasking: "freelancer.email.and.mobile.masking",
1517
+ fetchClientInfoForChat: "fetch.client.info.for.chat",
1518
+ fetchAiAssessmentDetails: "fetch.ai.assessment.details",
1519
+ captureAiAssessmentResult: "capture.ai.assessment.result"
1520
+ };
1521
+ var FREELANCER_ASSESSMENT_REQUEST_PATTERN = {
1522
+ fetchAssessmentRequestsForFreelancer: "fetch.assessment.requests.for.freelancer",
1523
+ createFreelancerAssessmentRequest: "create.freelancer.assessment.request"
1429
1524
  };
1430
1525
 
1431
1526
  // src/modules/user/freelancer-profile/dto/freelancer-change-password.dto.ts
@@ -1592,7 +1687,10 @@ __decorateClass([
1592
1687
  var BANK_PATTERN = {
1593
1688
  addFreelancerBankDetails: "add.freelancer.bankdetails",
1594
1689
  fetchFreelancerBankDetails: "fetch.freelancer.bank.details",
1595
- updateFreelancerBankDetails: "update.freelancer.bank.details"
1690
+ updateFreelancerBankDetails: "update.freelancer.bank.details",
1691
+ deleteBankAccount: "delete.bank.account",
1692
+ fetchBankAccounts: "fetch.bank.accounts",
1693
+ setBankAccountPrimary: "set.bank.account.primary"
1596
1694
  };
1597
1695
 
1598
1696
  // src/modules/bank/dto/freelancer-bank-details.dto.ts
@@ -1700,7 +1798,11 @@ __decorateClass([
1700
1798
  // src/modules/notification/pattern/pattern.ts
1701
1799
  var NOTIFICATION_PATTERN = {
1702
1800
  handleAccountVerificationNotification: "handle.account.verification.notification",
1703
- handleResetLinkNotification: "handle.reset.link.notification"
1801
+ handleResetLinkNotification: "handle.reset.link.notification",
1802
+ handleBusinessAccountCreatedNotification: "handle.business.account.created.notification",
1803
+ handleBusinessAccountSetPasswordNotification: "handle.business.account.set.password.notification",
1804
+ handleFreelancerAccountSetPasswordNotification: "handle.freelancer.account.set.password.notification",
1805
+ handleSendBulkInterviewInvites: "handle.send.bulk.interview.invites"
1704
1806
  };
1705
1807
 
1706
1808
  // src/modules/rating/pattern/pattern.ts
@@ -6779,7 +6881,8 @@ var PERMISSION_PATTERN = {
6779
6881
  // src/modules/user/freelancer-skill/pattern/pattern.ts
6780
6882
  var FREELANCER_SKILL_PATTERN = {
6781
6883
  fetchFreelancerSkill: "fetch.freelancer.skill",
6782
- saveFreelancerSkill: "save.freelancer.skill"
6884
+ saveFreelancerSkill: "save.freelancer.skill",
6885
+ fetchFreelancersSkillDropdown: "fetch.freelancers.skill.dropdown"
6783
6886
  };
6784
6887
 
6785
6888
  // src/modules/user/freelancer-skill/dto/freelancer-skill.dto.ts
@@ -6827,7 +6930,12 @@ var ADMIN_FREELANCER_PATTERN = {
6827
6930
  adminCreateFreelancer: "admin.create.freelancer",
6828
6931
  adminUpdateFreelancer: "admin.update.freelancer",
6829
6932
  adminDeleteFreelancer: "admin.delete.freelancer",
6830
- fetchFreelancerGraphCount: "fetch.freelancer.graph.count"
6933
+ fetchFreelancerGraphCount: "fetch.freelancer.graph.count",
6934
+ adminExportFreelancerV2: "admin.export.freelancer.v2",
6935
+ sendAiAssessmentLink: "send.ai.assessment.link",
6936
+ fetchAIassessmentsForAdmin: "fetch.ai.assessments.for.admin",
6937
+ fetchAiAssessmentRequestsForAdmin: "fetch.ai.assessment.requests.for.admin",
6938
+ updateAssessmentRequestStatus: "update.assessment.request.status"
6831
6939
  };
6832
6940
 
6833
6941
  // src/modules/freelancer-admin/dto/create-freelancer.dto.ts
@@ -7306,6 +7414,15 @@ __decorateClass([
7306
7414
  ])
7307
7415
  ], FreelancerDeclarationDto.prototype, "declarationAccepted", 2);
7308
7416
 
7417
+ // src/modules/user/client-candidate-preference/pattern/pattern.ts
7418
+ var CLIENT_CANDIDATE_PREFERENCE_PATTERN = {
7419
+ fetchClientPreferredCandidate: "fetch.client.preferred.candidate",
7420
+ markCandidateAsNotSuitable: "mark.candidate.as.not.suitable",
7421
+ markCandidateAsNotSuitableInBulk: "mark.candidate.as.not.suitable.in.bulk",
7422
+ markCandidateAsShortlisted: "mark.candidate.as.shortlisted",
7423
+ markCandidateAsShortlistedInBulk: "mark.candidate.as.shortlisted.in.bulk"
7424
+ };
7425
+
7309
7426
  // src/modules/cms/pattern/pattern.ts
7310
7427
  var CMS_PATTERNS = {
7311
7428
  fetchCms: "cms.fetch",
@@ -7897,7 +8014,9 @@ var ADMIN_PERMISSION_PATTERN = {
7897
8014
 
7898
8015
  // src/modules/interview/pattern/pattern.ts
7899
8016
  var INTERVIEW_INVITE_PATTERN = {
7900
- sendInterviewInvite: "send.interview.invite"
8017
+ sendInterviewInvite: "send.interview.invite",
8018
+ fetchInvitedFreelancerForClient: "fetch.invited.freelancer.for.client",
8019
+ fetchInterviewInvite: "fetch.interview.invite"
7901
8020
  };
7902
8021
  var F2F_INTERVIEW_PATTERN = {
7903
8022
  fetchBookings: "fetch.bookings",
@@ -7906,17 +8025,62 @@ var F2F_INTERVIEW_PATTERN = {
7906
8025
  fetchInterviewsByCandidateId: "fetch.interviews.by.candidate.id",
7907
8026
  createF2FInterview: "create.f2f.interview",
7908
8027
  createF2FInterviewRescheduleRequest: "create.f2f.interview.reschedule.request",
7909
- rejectF2FInterviewRescheduleRequest: "reject.f2f.interview.reschedule.request"
8028
+ rejectF2FInterviewRescheduleRequest: "reject.f2f.interview.reschedule.request",
8029
+ fetchF2FInterviewsForClient: "fetch.f2f.interviews.for.client",
8030
+ fetchInterviewedFreelancerForClient: "fetch.interviewed.freelancer.for.client",
8031
+ createF2FInterviewDirect: "create.f2f.interview.direct",
8032
+ approveF2FInterviewRescheduleRequest: "approve.f2f.interview.reschedule.request",
8033
+ fetchF2FInterviewByUuidWithJobDetailsForClient: "fetch.f2f.interview.by.uuid.with.job.details.for.client",
8034
+ fetchF2FInterviewByUuidWithJobDetailsForFreelancer: "fetch.f2F.interview.by.uuid.with.job.details.for.freelancer",
8035
+ fetchF2FInterviewByUuidWithJobDetails: "fetch.f2f.interview.by.uuid.with.job.details"
7910
8036
  };
7911
8037
  var AI_INTERVIEW_PATTERN = {
8038
+ fetchAiInterviewDetailPublic: "fetch.aiinterview.detail.public",
8039
+ markAiInterviewAsInProgressPublic: "mark.aiinterview.as.inprogress.public",
8040
+ markAiInterviewAsExpiredPublic: "mark.aiinterview.as.expired.public",
8041
+ captureAiInterviewResultPublic: "capture.aiinterview.result.public",
8042
+ fetchAiInterviewforClient: "fetch.aiinterview.for.client",
8043
+ fetchAiInterviewforFreelancer: "fetch.aiinterview.for.freelancer",
8044
+ fetchAiInterviewByUuidWithJobDetailsForFreelancer: "fetch.aiinterview.by.uuid.with.job.details.for.freelancer",
8045
+ fetchRescheduleRequestsForFreelancerAiInterview: "fetch.reschedule.requests.for.freelancer.aiinterview",
8046
+ fetchRescheduleRequestsForClientAiInterview: "fetch.reschedule.requests.for.client.aiinterview",
8047
+ fetchAiInterviewAnalysisForClient: "fetch.aiinterview.analysis.for.client",
7912
8048
  fetchAiInterviewRescheduleRequestsForClient: "fetch.aiinterview.reschedule.requests.for.client",
7913
8049
  createAiInterviewRescheduleRequest: "create.aiinterview.reschedule.request",
7914
8050
  approveAiInterviewRescheduleRequest: "approve.aiinterview.reschedule.request",
7915
- rejectAiInterviewRescheduleRequest: "reject.aiinterview.reschedule.request"
8051
+ rejectAiInterviewRescheduleRequest: "reject.aiinterview.reschedule.request",
8052
+ handleAiInterviewAuthentication: "handle.aiinterview.authentication",
8053
+ handleAiInterviewQuestionGeneration: "handle.aiinterview.question.generation",
8054
+ handleAiInterviewTemplateGeneration: "handle.aiinterview.template.generation",
8055
+ handleAiInterviewLinkGeneration: "handle.aiinterview.link.generation",
8056
+ handleAiInterviewInsights: "handle.ai.interview.insights"
7916
8057
  };
7917
8058
  var CALENDLY_PATTERN = {
7918
8059
  handleCalendlyWebhook: "handle.calendly.webhook"
7919
8060
  };
8061
+ var ZOOM_PATTERN = {
8062
+ handleZoomWebhook: "handle.zoom.webhook",
8063
+ handleTestZoomWebhook: "handle.test.zoom.webhook",
8064
+ handleZoomRecordingSettlement: "handle.zoom.recording.settlement"
8065
+ };
8066
+ var INTERVIEW_PATTERN = {
8067
+ fetchInterviews: "fetch.interviews",
8068
+ fetchInterviewDetail: "fetch.interview.detail",
8069
+ fetchInterviewType: "fetch.interview.type",
8070
+ fetchInterviewBasicInformation: "fetch.interview.basic.information",
8071
+ createInterviewBasicInformation: "create.interview.basic.information",
8072
+ updateInterviewBasicInformation: "update.interview.basic.information",
8073
+ fetchInterviewTypeInformation: "fetch.interview.type.information",
8074
+ updateInterviewTypeInformation: "update.interview.type.information",
8075
+ fetchInterviewSkills: "fetch.interview.skills",
8076
+ createInterviewSkills: "create.interview.skills",
8077
+ fetchInterviewQuestions: "fetch.interview.questions",
8078
+ createInterviewQuestions: "create.interview.questions",
8079
+ fetchInterviewSetting: "fetch.interview.setting",
8080
+ updateInterviewSetting: "update.interview.setting",
8081
+ markInterviewAsPublished: "mark.interview.as.published",
8082
+ deleteInterview: "delete.interview"
8083
+ };
7920
8084
 
7921
8085
  // src/modules/interview/dto/interview-invite.dto.ts
7922
8086
  import {
@@ -8083,6 +8247,20 @@ __decorateClass([
8083
8247
 
8084
8248
  // src/modules/contract/pattern/pattern.ts
8085
8249
  var CONTRACT_PATTERN = {
8250
+ generateContract: "generate.contract",
8251
+ fetchHiredFreelancerForClient: "fetch.hired.freelancer.for.client",
8252
+ esignContractForClient: "esign.contract.for.client",
8253
+ markContractViewedByFreelancer: "mark.contract.viewed.by.freelancer",
8254
+ esignContractForFreelancer: "esign.contract.for.freelancer",
8255
+ fetchFreelancerDropdownForClient: "fetch.freelancer.dropdown.for.client",
8256
+ fetchClientDropdownForFreelancer: "fetch.client.dropdown.for.freelancer",
8257
+ escrowFundForContract: "escrow.fund.for.contract",
8258
+ markContractAsActive: "mark.contract.as.active",
8259
+ fetchActiveContractsForFreelancer: "fetch.active.contracts.for.freelancer",
8260
+ fetchHiredFreelancerForGroupCreation: "fetch.hired.freelancer.for.group.creation",
8261
+ fetchActiveContractFreelancerCount: "fetch.active.contract.freelancer.count",
8262
+ fetchJobsDropDownForContractFilters: "fetch.jobs.dropdown.for.contract.filters",
8263
+ fetchOfferedJobsForFreelancer: "fetch.offered.jobs.for.freelancer",
8086
8264
  fetchContractsForClient: "fetch.contract.for.client",
8087
8265
  fetchContractCountForClientAsPerStatus: "fetch.contract.count.for.client.as.per.status",
8088
8266
  fetchContractsForFreelancer: "fetch.contract.for.freelancer",
@@ -8152,7 +8330,13 @@ var STRIPE_PATTERN = {
8152
8330
  createPayout: "create.payout",
8153
8331
  getConnectedAccounts: "get.connected.accounts",
8154
8332
  getTransferHistory: "get.transfer.history",
8155
- fetchTransactions: "fetch.transactions"
8333
+ fetchTransactions: "fetch.transactions",
8334
+ handleStripeWebhookTestEvent: "handle.stripe.webhook.test.event",
8335
+ createClientCustomerAccount: "create.client.customer.account",
8336
+ preCheckoutCalculation: "pre.checkout.calculation",
8337
+ clientAddFund: "client.add.fund",
8338
+ getFreelancerAccountBalance: "get.freelancer.account.balance",
8339
+ getBalanceTransactionsForFreelancer: "get.balance.transactions.for.freelancer"
8156
8340
  };
8157
8341
 
8158
8342
  // src/modules/stripe/dto/create-checkout-session.dto.ts
@@ -8175,11 +8359,26 @@ var TIMESHEET_FREELANCER_PATTERN = {
8175
8359
  submitTimesheetForFreelancer: "submit.timesheet.for.freelancer",
8176
8360
  fetchMissingTimesheetsForFreelancer: "fetch.missing.timesheets.for.freelancer",
8177
8361
  fetchSubmitedTimesheetsForFreelancer: "fetch.submited.timesheets.for.freelancer",
8178
- fetchTimesheetsForResubmitForFreelancer: "fetch.timesheets.for.resubmit.for.freelancer"
8362
+ fetchTimesheetsForResubmitForFreelancer: "fetch.timesheets.for.resubmit.for.freelancer",
8363
+ fetchTimesheetsByDateRangeAndJobIdForFreelancer: "fetch.timesheets.by.date.range.and.job.id.for.freelancer",
8364
+ fetchWeeklyCardSummeryByJobIdForFreelancer: "fetch.weekly.card.summery.by.job.id.for.freelancer",
8365
+ fetchCardSummeryByTimesheetLineIdForFreelancer: "fetch.card.summery.by.timesheet.line.id.for.freelancer",
8366
+ fetchApprovedTimesheetsForFreelancer: "fetch.approved.timesheets.for.freelancer",
8367
+ fetchPendingApprovalTimesheetsForFreelancer: "fetch.pending.approval.timesheets.for.freelancer",
8368
+ fetchAllSubmittedTimesheetsForFreelancer: "fetch.all.submitted.timesheets.for.freelancer",
8369
+ checkTimesheetSubmissionStatusForFreelancer: "check.timesheet.submission.status.for.freelancer",
8370
+ fetchSubmissionHistoryForFreelancer: "fetch.submission.history.for.freelancer",
8371
+ resubmitTimesheetForFreelancer: "resubmit.timesheet.for.freelancer",
8372
+ createMissingTimesheetLine: "create.missing.timesheet.line",
8373
+ fetchClientDropDownForFreelancer: "fetch.client.dropdown.for.freelancer",
8374
+ fetchJobsDropDownForFreelancer: "fetch.jobs.dropdown.for.freelancer"
8179
8375
  };
8180
8376
  var TIMESHEET_CLIENT_PATTERN = {
8181
8377
  approveFreelancerTimesheetForClient: "approve.freelancer.timesheet.for.client",
8182
- rejectFreelancerTimesheetForClient: "reject.freelancer.timesheet.for.client"
8378
+ rejectFreelancerTimesheetForClient: "reject.freelancer.timesheet.for.client",
8379
+ fetchAllSubmittedTimesheetsForClient: "fetch.all.submitted.timesheets.for.client",
8380
+ fetchAllSendBackTimesheetsForClient: "fetch.all.send.back.timesheets.for.client",
8381
+ fetchAllPendingApprovalTimesheetsForClient: "fetch.all.pending.approval.timesheets.for.client"
8183
8382
  };
8184
8383
 
8185
8384
  // src/modules/timesheet/dto/create-freelancer-timesheet.dto.ts
@@ -8297,12 +8496,17 @@ __decorateClass([
8297
8496
  // src/modules/invoice/pattern/pattern.ts
8298
8497
  var INVOICE_PATTERN = {
8299
8498
  createInvoice: "invoice.create",
8300
- fetchInvoicesForFreelancer: "fetch.Invoices.For.Freelancer",
8301
- fetchInvoicesForClient: "fetch.Invoices.For.Client",
8302
- fetchInvoiceById: "fetch.Invoice.By.Id",
8303
- updateInvoiceStatus: "update.Invoice.Status",
8304
- fetchAnalyticsForClient: "fetch.Analytics.For.Client",
8305
- fetchAnalyticsForFreelancer: "fetch.Analytics.For.Freelancer"
8499
+ fetchInvoicesForFreelancer: "fetch.invoices.for.freelancer",
8500
+ fetchInvoicesForClient: "fetch.invoices.for.client",
8501
+ fetchInvoiceById: "fetch.invoice.by.id",
8502
+ updateInvoiceStatus: "update.invoice.status",
8503
+ fetchAnalyticsForClient: "fetch.analytics.for.client",
8504
+ fetchAnalyticsForFreelancer: "fetch.analytics.for.freelancer",
8505
+ fetchFreelancerDropdownForClient: "fetch.freelancer.dropdown.for.client",
8506
+ fetchInvoicesSummeryForClient: "fetch.invoices.summery.for.client",
8507
+ fetchDashboardAnalyticsForClient: "fetch.dashboard.analytics.for.client",
8508
+ fetchPaymentDetailsByInvoiceId: "fetch.payment.details.by.invoiceId",
8509
+ fetchInvoiceReportsForClient: "fetch.invoicer.reports.for.client"
8306
8510
  };
8307
8511
 
8308
8512
  // src/modules/invoice/dto/update-invoice-status.dto.ts
@@ -8316,6 +8520,13 @@ __decorateClass([
8316
8520
  })
8317
8521
  ], UpdateInvoiceStatusDto.prototype, "status", 2);
8318
8522
 
8523
+ // src/modules/dispute/pattern/pattern.ts
8524
+ var DISPUTE_PATTERN = {
8525
+ fetchDisputes: "fetch.disputes",
8526
+ fetchDisputeById: "fetch.dispute.by.id",
8527
+ createDispute: "create.dispute"
8528
+ };
8529
+
8319
8530
  // src/modules/dispute/dto/create-dispute.dto.ts
8320
8531
  import {
8321
8532
  IsString as IsString49,
@@ -8374,6 +8585,13 @@ __decorateClass([
8374
8585
  })
8375
8586
  ], CreateDisputeDto.prototype, "dynamicFields", 2);
8376
8587
 
8588
+ // src/modules/senseloaf/pattern/pattern.ts
8589
+ var SENSELOAF_PATTERN = {
8590
+ handleAiAssessmentDetails: "handle.ai.assessment.details",
8591
+ handelAiAssessmentCreation: "handel.ai.assessment.creation",
8592
+ handleJdParsing: "handle.jd.parsing"
8593
+ };
8594
+
8377
8595
  // src/modules/senseloaf/dto/ai-interview-question-generate.dto.ts
8378
8596
  import {
8379
8597
  IsNotEmpty as IsNotEmpty71
@@ -8387,6 +8605,47 @@ __decorateClass([
8387
8605
  IsNotEmpty71({ message: "Please enter number of questions." })
8388
8606
  ], AiInterviewQuestionGenerateDto.prototype, "numQuestions", 2);
8389
8607
 
8608
+ // src/modules/commission/pattern/pattern.ts
8609
+ var COMMISSION_PATTERN = {
8610
+ fetchCommission: "fetch.commission"
8611
+ };
8612
+
8613
+ // src/modules/hiring/pattern/pattern.ts
8614
+ var HIRING_PATTERN = {
8615
+ fetchAllHiredFreelancerForClient: "fetch.all.hired.freelancer.for.client",
8616
+ fetchAllHiredClientForFreelancer: "fetch.all.hired.client.for.freelancer",
8617
+ createHiring: "create.hiring"
8618
+ };
8619
+
8620
+ // src/modules/llm/pattern/pattern.ts
8621
+ var LLM_PATTERN = {
8622
+ handleMcqGeneration: "handle.mcq.generation"
8623
+ };
8624
+
8625
+ // src/modules/skill/pattern/pattern.ts
8626
+ var SKILL_PATTERN = {
8627
+ fetchSkillsDropdown: "fetch.skills.dropdown",
8628
+ fetchSkillsDropdownV2: "fetch.skills.dropdown.v2"
8629
+ };
8630
+
8631
+ // src/modules/user/signature/pattern/pattern.ts
8632
+ var SIGNATURE_PATTERN = {
8633
+ fetchSignatures: "fetch.signatures",
8634
+ saveSignature: "save.signature"
8635
+ };
8636
+
8637
+ // src/modules/wallet/pattern/pattern.ts
8638
+ var WALLET_PATTERN = {
8639
+ fetchConnectAccountDetails: "fetch.connect.account.details",
8640
+ fetchWalletTransactions: "fetch.wallet.transactions",
8641
+ addTopupEscrowAmount: "add.topup.escrow.amount",
8642
+ debitCommissionFromClientForFTEHiring: "debit.commission.from.client.for.fte.hiring"
8643
+ };
8644
+ var WALLET_ADMIN_PATTERN = {
8645
+ fetchAdminWalletBalance: "fetch.admin.wallet.balance",
8646
+ fetchAdminWalletTransactions: "fetch.admin.wallet.transactions"
8647
+ };
8648
+
8390
8649
  // src/adapters/tcp/user.tcp.adapter.ts
8391
8650
  import { config } from "dotenv";
8392
8651
  import { Transport } from "@nestjs/microservices";
@@ -9435,8 +9694,10 @@ export {
9435
9694
  CALENDLY_PATTERN,
9436
9695
  CITY_PATTERN,
9437
9696
  CLIENT_ADMIN_PATTERNS,
9697
+ CLIENT_CANDIDATE_PREFERENCE_PATTERN,
9438
9698
  CLIENT_PROFILE_PATTERN,
9439
9699
  CMS_PATTERNS,
9700
+ COMMISSION_PATTERN,
9440
9701
  COMPANY_MEMBERS_PATTERNS,
9441
9702
  COMPANY_ROLES_PATTERNS,
9442
9703
  CONTRACT_PATTERN,
@@ -9489,6 +9750,7 @@ export {
9489
9750
  CreateQuestionDto,
9490
9751
  CreateRatingDto,
9491
9752
  CreateSubAdminDto,
9753
+ DISPUTE_PATTERN,
9492
9754
  Dispute,
9493
9755
  DisputeStatusEnum,
9494
9756
  DocumentType,
@@ -9509,6 +9771,7 @@ export {
9509
9771
  F2fInterviewRescheduleRequestStatusEnum,
9510
9772
  F2fInterviewScheduleStatusEnum,
9511
9773
  F2fInterviewStatusEnum,
9774
+ FREELANCER_ASSESSMENT_REQUEST_PATTERN,
9512
9775
  FREELANCER_DECLARATION_PATTERN,
9513
9776
  FREELANCER_EDUCATION_PATTERN,
9514
9777
  FREELANCER_EXPERIENCE_PATTERN,
@@ -9547,10 +9810,12 @@ export {
9547
9810
  FreelancerUploadResumeDto,
9548
9811
  FreelancerWorkShowcaseDto,
9549
9812
  FromUsOn,
9813
+ HIRING_PATTERN,
9550
9814
  HiredFreelancerNatureOfWorkEnum,
9551
9815
  Hiring,
9552
9816
  HiringCommissionTypeEnum,
9553
9817
  INTERVIEW_INVITE_PATTERN,
9818
+ INTERVIEW_PATTERN,
9554
9819
  INVOICE_PATTERN,
9555
9820
  InitiatorTypeEnum,
9556
9821
  Interview,
@@ -9565,6 +9830,8 @@ export {
9565
9830
  InvoicePaymentStatusEnum,
9566
9831
  InvoiceStatusEnum,
9567
9832
  InvoiceTypeEnum,
9833
+ JOB_ADMIN_PATTERN,
9834
+ JOB_APPLICATION_PATTERN,
9568
9835
  JOB_PATTERN,
9569
9836
  JOB_ROLE_PATTERN,
9570
9837
  Job,
@@ -9594,6 +9861,7 @@ export {
9594
9861
  JobTCPAdapter,
9595
9862
  KindOfHire,
9596
9863
  LEAD_PATTERN,
9864
+ LLM_PATTERN,
9597
9865
  Lead,
9598
9866
  LoginDto,
9599
9867
  LoginViaOtpDto,
@@ -9633,6 +9901,9 @@ export {
9633
9901
  ResetPasswordDto,
9634
9902
  ResetPasswordTokenValidationDto,
9635
9903
  ResultStatusEnum,
9904
+ SENSELOAF_PATTERN,
9905
+ SIGNATURE_PATTERN,
9906
+ SKILL_PATTERN,
9636
9907
  STATE_PATTERN,
9637
9908
  STRIPE_PATTERN,
9638
9909
  SUBADMIN_PATTERN,
@@ -9698,12 +9969,15 @@ export {
9698
9969
  UserTCPAdapter,
9699
9970
  VerifyGuestOtpDto,
9700
9971
  VerifyGuestOtpPurposeEnum,
9972
+ WALLET_ADMIN_PATTERN,
9973
+ WALLET_PATTERN,
9701
9974
  Wallet,
9702
9975
  WalletAccountTypeEnum,
9703
9976
  WalletOnboardingStatusEnum,
9704
9977
  WalletTransaction,
9705
9978
  WalletTransactionStatusEnum,
9706
9979
  WalletTransactionTypeEnum,
9980
+ ZOOM_PATTERN,
9707
9981
  ZoomMeetingLog,
9708
9982
  typeOfExperienceDtoEnumV2,
9709
9983
  typeOfExperienceEnum
@@ -10,5 +10,15 @@ export declare const AUTHENTICATION_PATTERN: {
10
10
  handleForgotPassword: string;
11
11
  handleResetPassword: string;
12
12
  handleValidateResetPasswordToken: string;
13
+ handleVerifyPermission: string;
14
+ handleValidateEmail: string;
15
+ handleValidateEmailForLogin: string;
16
+ handleValidateMobile: string;
17
+ handleAdminLogin: string;
13
18
  handleSetPassword: string;
19
+ signUpWithLinkedIn: string;
20
+ loginWithLinkedIn: string;
21
+ signUpWithGoogle: string;
22
+ loginWithGoogle: string;
23
+ validateOnboardingToken: string;
14
24
  };
@@ -2,4 +2,7 @@ export declare const BANK_PATTERN: {
2
2
  addFreelancerBankDetails: string;
3
3
  fetchFreelancerBankDetails: string;
4
4
  updateFreelancerBankDetails: string;
5
+ deleteBankAccount: string;
6
+ fetchBankAccounts: string;
7
+ setBankAccountPrimary: string;
5
8
  };
@@ -0,0 +1 @@
1
+ export * from './pattern/pattern';
@@ -0,0 +1,3 @@
1
+ export declare const COMMISSION_PATTERN: {
2
+ fetchCommission: string;
3
+ };
@@ -1,4 +1,18 @@
1
1
  export declare const CONTRACT_PATTERN: {
2
+ generateContract: string;
3
+ fetchHiredFreelancerForClient: string;
4
+ esignContractForClient: string;
5
+ markContractViewedByFreelancer: string;
6
+ esignContractForFreelancer: string;
7
+ fetchFreelancerDropdownForClient: string;
8
+ fetchClientDropdownForFreelancer: string;
9
+ escrowFundForContract: string;
10
+ markContractAsActive: string;
11
+ fetchActiveContractsForFreelancer: string;
12
+ fetchHiredFreelancerForGroupCreation: string;
13
+ fetchActiveContractFreelancerCount: string;
14
+ fetchJobsDropDownForContractFilters: string;
15
+ fetchOfferedJobsForFreelancer: string;
2
16
  fetchContractsForClient: string;
3
17
  fetchContractCountForClientAsPerStatus: string;
4
18
  fetchContractsForFreelancer: string;
@@ -1 +1,2 @@
1
+ export * from './pattern/pattern';
1
2
  export * from './dto';
@@ -0,0 +1,5 @@
1
+ export declare const DISPUTE_PATTERN: {
2
+ fetchDisputes: string;
3
+ fetchDisputeById: string;
4
+ createDispute: string;
5
+ };
@@ -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';
@@ -0,0 +1,5 @@
1
+ export declare const HIRING_PATTERN: {
2
+ fetchAllHiredFreelancerForClient: string;
3
+ fetchAllHiredClientForFreelancer: string;
4
+ createHiring: string;
5
+ };
@@ -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';