@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.
Files changed (43) hide show
  1. package/dist/entities/job.entity.d.ts +4 -0
  2. package/dist/index.d.mts +259 -1
  3. package/dist/index.d.ts +259 -1
  4. package/dist/index.js +363 -24
  5. package/dist/index.mjs +348 -24
  6. package/dist/modules/authentication/pattern/pattern.d.ts +10 -0
  7. package/dist/modules/bank/pattern/pattern.d.ts +3 -0
  8. package/dist/modules/commission/index.d.ts +1 -0
  9. package/dist/modules/commission/pattern/pattern.d.ts +3 -0
  10. package/dist/modules/contract/pattern/pattern.d.ts +14 -0
  11. package/dist/modules/dispute/index.d.ts +1 -0
  12. package/dist/modules/dispute/pattern/pattern.d.ts +5 -0
  13. package/dist/modules/freelancer-admin/pattern/pattern.d.ts +5 -0
  14. package/dist/modules/hiring/index.d.ts +1 -0
  15. package/dist/modules/hiring/pattern/pattern.d.ts +5 -0
  16. package/dist/modules/index.d.ts +7 -0
  17. package/dist/modules/interview/pattern/pattern.d.ts +47 -0
  18. package/dist/modules/invoice/pattern/pattern.d.ts +5 -0
  19. package/dist/modules/job/dto/job-basic-information-v2.dto.d.ts +4 -0
  20. package/dist/modules/job/pattern/pattern.d.ts +34 -0
  21. package/dist/modules/llm/index.d.ts +1 -0
  22. package/dist/modules/llm/pattern/pattern.d.ts +3 -0
  23. package/dist/modules/notification/pattern/pattern.d.ts +4 -0
  24. package/dist/modules/onboarding/pattern/pattern.d.ts +11 -0
  25. package/dist/modules/question/pattern/pattern.d.ts +4 -0
  26. package/dist/modules/resume-parser/pattern/pattern.d.ts +3 -0
  27. package/dist/modules/senseloaf/index.d.ts +1 -0
  28. package/dist/modules/senseloaf/pattern/pattern.d.ts +5 -0
  29. package/dist/modules/skill/index.d.ts +1 -0
  30. package/dist/modules/skill/pattern/pattern.d.ts +4 -0
  31. package/dist/modules/stripe/pattern/pattern.d.ts +6 -0
  32. package/dist/modules/timesheet/pattern/pattern.d.ts +15 -0
  33. package/dist/modules/user/client-candidate-preference/index.d.ts +1 -0
  34. package/dist/modules/user/client-candidate-preference/pattern/pattern.d.ts +7 -0
  35. package/dist/modules/user/client-profile/pattern/pattern.d.ts +6 -0
  36. package/dist/modules/user/freelancer-profile/pattern/pattern.d.ts +26 -0
  37. package/dist/modules/user/freelancer-skill/pattern/pattern.d.ts +1 -0
  38. package/dist/modules/user/signature/index.d.ts +1 -0
  39. package/dist/modules/user/signature/pattern/pattern.d.ts +4 -0
  40. package/dist/modules/user/subadmin/pattern/pattern.d.ts +1 -0
  41. package/dist/modules/wallet/index.d.ts +1 -0
  42. package/dist/modules/wallet/pattern/pattern.d.ts +10 -0
  43. 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
@@ -1359,6 +1428,24 @@ __decorateClass([
1359
1428
  __decorateClass([
1360
1429
  IsOptional15()
1361
1430
  ], JobBasicInformationV2Dto.prototype, "hideExpectedSalaryTo", 2);
1431
+ __decorateClass([
1432
+ IsOptional15(),
1433
+ IsNumber3({}, { message: "Expected annual budget (from) must be a number" }),
1434
+ Min2(0, { message: "Expected annual budget (from) cannot be negative" }),
1435
+ Type3(() => Number)
1436
+ ], JobBasicInformationV2Dto.prototype, "expectedAnnualBudgetFrom", 2);
1437
+ __decorateClass([
1438
+ IsOptional15()
1439
+ ], JobBasicInformationV2Dto.prototype, "hideExpectedAnnualBudgetFrom", 2);
1440
+ __decorateClass([
1441
+ IsOptional15(),
1442
+ IsNumber3({}, { message: "Expected annual budget (to) must be a number" }),
1443
+ Min2(0, { message: "Expected annual budget (to) cannot be negative" }),
1444
+ Type3(() => Number)
1445
+ ], JobBasicInformationV2Dto.prototype, "expectedAnnualBudgetTo", 2);
1446
+ __decorateClass([
1447
+ IsOptional15()
1448
+ ], JobBasicInformationV2Dto.prototype, "hideExpectedAnnualBudgetTo", 2);
1362
1449
  __decorateClass([
1363
1450
  IsOptional15()
1364
1451
  ], JobBasicInformationV2Dto.prototype, "years", 2);
@@ -1425,7 +1512,33 @@ var PROFILE_PATTERN = {
1425
1512
  changeFreelancerPassword: "change.freelancer.password",
1426
1513
  uploadFreelancerProfilePic: "upload.freelancer.profilepic",
1427
1514
  updateFreelancerProfile: "update.freelancer.profile",
1428
- uploadFreelancerServiceAgreement: "upload.freelancer.service.agreement"
1515
+ uploadFreelancerServiceAgreement: "upload.freelancer.service.agreement",
1516
+ fetchFreelancerServiceAgreement: "fetch.freelancer.service.agreement",
1517
+ generateFreelancerServiceAgreement: "generate.freelancer.service.agreement",
1518
+ esignFreelancerServiceAgreementForClient: "esign.freelancer.service.agreement.for.client",
1519
+ freelancerResumeDataMappingDev: "freelancer.resume.data.papping.dev",
1520
+ freelancerMcqScoreMappingDev: "freelancer.mcq.score.mapping.dev",
1521
+ fetchFreelancerDropdown: "fetch.freelancer.dropdown",
1522
+ fetchFreelancerDesignationDropdown: "fetch.freelancer.designation.dropdown",
1523
+ deleteFreelancerProfilePic: "delete.freelancer.profile.pic",
1524
+ fetchRecommendedJobsForFreelancer: "fetch.recommended.jobs.for.freelancer",
1525
+ fetchRecommendedClientsDropdownForFreelancerV2: "fetch.recommended.clients.dropdown.for.freelancer.v2",
1526
+ fetchRecommendedJobsDropdownForFreelancerV2: "fetch.recommended.jobs.dropdown.for.freelancer.v2",
1527
+ fetchRecommendedJobsForFreelancerV2: "fetch.recommended.jobs.for.freelancer.v2",
1528
+ fetchAppliedJobsOfFreelancer: "fetch.applied.jobs.of.freelancer",
1529
+ fetchAppliedJobsDropdownForFreelancer: "fetch.applied.jobs.dropdown.for.freelancer",
1530
+ countOfActiveFreelancers: "count.of.active.freelancers",
1531
+ markFollowedOnLinkedIn: "mark.followed.on.linkedin",
1532
+ fetchFreelancerResumeByUuId: "fetch.freelancer.resume.by.uuid",
1533
+ freelancerDataSetup: "freelancer.data.setup",
1534
+ freelancerEmailAndMobileMasking: "freelancer.email.and.mobile.masking",
1535
+ fetchClientInfoForChat: "fetch.client.info.for.chat",
1536
+ fetchAiAssessmentDetails: "fetch.ai.assessment.details",
1537
+ captureAiAssessmentResult: "capture.ai.assessment.result"
1538
+ };
1539
+ var FREELANCER_ASSESSMENT_REQUEST_PATTERN = {
1540
+ fetchAssessmentRequestsForFreelancer: "fetch.assessment.requests.for.freelancer",
1541
+ createFreelancerAssessmentRequest: "create.freelancer.assessment.request"
1429
1542
  };
1430
1543
 
1431
1544
  // src/modules/user/freelancer-profile/dto/freelancer-change-password.dto.ts
@@ -1592,7 +1705,10 @@ __decorateClass([
1592
1705
  var BANK_PATTERN = {
1593
1706
  addFreelancerBankDetails: "add.freelancer.bankdetails",
1594
1707
  fetchFreelancerBankDetails: "fetch.freelancer.bank.details",
1595
- updateFreelancerBankDetails: "update.freelancer.bank.details"
1708
+ updateFreelancerBankDetails: "update.freelancer.bank.details",
1709
+ deleteBankAccount: "delete.bank.account",
1710
+ fetchBankAccounts: "fetch.bank.accounts",
1711
+ setBankAccountPrimary: "set.bank.account.primary"
1596
1712
  };
1597
1713
 
1598
1714
  // src/modules/bank/dto/freelancer-bank-details.dto.ts
@@ -1700,7 +1816,11 @@ __decorateClass([
1700
1816
  // src/modules/notification/pattern/pattern.ts
1701
1817
  var NOTIFICATION_PATTERN = {
1702
1818
  handleAccountVerificationNotification: "handle.account.verification.notification",
1703
- handleResetLinkNotification: "handle.reset.link.notification"
1819
+ handleResetLinkNotification: "handle.reset.link.notification",
1820
+ handleBusinessAccountCreatedNotification: "handle.business.account.created.notification",
1821
+ handleBusinessAccountSetPasswordNotification: "handle.business.account.set.password.notification",
1822
+ handleFreelancerAccountSetPasswordNotification: "handle.freelancer.account.set.password.notification",
1823
+ handleSendBulkInterviewInvites: "handle.send.bulk.interview.invites"
1704
1824
  };
1705
1825
 
1706
1826
  // src/modules/rating/pattern/pattern.ts
@@ -4610,6 +4730,38 @@ __decorateClass([
4610
4730
  default: false
4611
4731
  })
4612
4732
  ], Job.prototype, "hideExpectedSalaryTo", 2);
4733
+ __decorateClass([
4734
+ Column33({
4735
+ name: "expected_annual_budget_from",
4736
+ type: "decimal",
4737
+ precision: 10,
4738
+ scale: 2,
4739
+ default: 0
4740
+ })
4741
+ ], Job.prototype, "expectedAnnualBudgetFrom", 2);
4742
+ __decorateClass([
4743
+ Column33({
4744
+ name: "hide_expected_annual_budget_from",
4745
+ type: "boolean",
4746
+ default: false
4747
+ })
4748
+ ], Job.prototype, "hideExpectedAnnualBudgetFrom", 2);
4749
+ __decorateClass([
4750
+ Column33({
4751
+ name: "expected_annual_budget_to",
4752
+ type: "decimal",
4753
+ precision: 10,
4754
+ scale: 2,
4755
+ default: 0
4756
+ })
4757
+ ], Job.prototype, "expectedAnnualBudgetTo", 2);
4758
+ __decorateClass([
4759
+ Column33({
4760
+ name: "hide_expected_annual_budget_to",
4761
+ type: "boolean",
4762
+ default: false
4763
+ })
4764
+ ], Job.prototype, "hideExpectedAnnualBudgetTo", 2);
4613
4765
  __decorateClass([
4614
4766
  Column33({ name: "years", type: "varchar", nullable: true })
4615
4767
  ], Job.prototype, "years", 2);
@@ -6779,7 +6931,8 @@ var PERMISSION_PATTERN = {
6779
6931
  // src/modules/user/freelancer-skill/pattern/pattern.ts
6780
6932
  var FREELANCER_SKILL_PATTERN = {
6781
6933
  fetchFreelancerSkill: "fetch.freelancer.skill",
6782
- saveFreelancerSkill: "save.freelancer.skill"
6934
+ saveFreelancerSkill: "save.freelancer.skill",
6935
+ fetchFreelancersSkillDropdown: "fetch.freelancers.skill.dropdown"
6783
6936
  };
6784
6937
 
6785
6938
  // src/modules/user/freelancer-skill/dto/freelancer-skill.dto.ts
@@ -6827,7 +6980,12 @@ var ADMIN_FREELANCER_PATTERN = {
6827
6980
  adminCreateFreelancer: "admin.create.freelancer",
6828
6981
  adminUpdateFreelancer: "admin.update.freelancer",
6829
6982
  adminDeleteFreelancer: "admin.delete.freelancer",
6830
- fetchFreelancerGraphCount: "fetch.freelancer.graph.count"
6983
+ fetchFreelancerGraphCount: "fetch.freelancer.graph.count",
6984
+ adminExportFreelancerV2: "admin.export.freelancer.v2",
6985
+ sendAiAssessmentLink: "send.ai.assessment.link",
6986
+ fetchAIassessmentsForAdmin: "fetch.ai.assessments.for.admin",
6987
+ fetchAiAssessmentRequestsForAdmin: "fetch.ai.assessment.requests.for.admin",
6988
+ updateAssessmentRequestStatus: "update.assessment.request.status"
6831
6989
  };
6832
6990
 
6833
6991
  // src/modules/freelancer-admin/dto/create-freelancer.dto.ts
@@ -7306,6 +7464,15 @@ __decorateClass([
7306
7464
  ])
7307
7465
  ], FreelancerDeclarationDto.prototype, "declarationAccepted", 2);
7308
7466
 
7467
+ // src/modules/user/client-candidate-preference/pattern/pattern.ts
7468
+ var CLIENT_CANDIDATE_PREFERENCE_PATTERN = {
7469
+ fetchClientPreferredCandidate: "fetch.client.preferred.candidate",
7470
+ markCandidateAsNotSuitable: "mark.candidate.as.not.suitable",
7471
+ markCandidateAsNotSuitableInBulk: "mark.candidate.as.not.suitable.in.bulk",
7472
+ markCandidateAsShortlisted: "mark.candidate.as.shortlisted",
7473
+ markCandidateAsShortlistedInBulk: "mark.candidate.as.shortlisted.in.bulk"
7474
+ };
7475
+
7309
7476
  // src/modules/cms/pattern/pattern.ts
7310
7477
  var CMS_PATTERNS = {
7311
7478
  fetchCms: "cms.fetch",
@@ -7897,7 +8064,9 @@ var ADMIN_PERMISSION_PATTERN = {
7897
8064
 
7898
8065
  // src/modules/interview/pattern/pattern.ts
7899
8066
  var INTERVIEW_INVITE_PATTERN = {
7900
- sendInterviewInvite: "send.interview.invite"
8067
+ sendInterviewInvite: "send.interview.invite",
8068
+ fetchInvitedFreelancerForClient: "fetch.invited.freelancer.for.client",
8069
+ fetchInterviewInvite: "fetch.interview.invite"
7901
8070
  };
7902
8071
  var F2F_INTERVIEW_PATTERN = {
7903
8072
  fetchBookings: "fetch.bookings",
@@ -7906,17 +8075,62 @@ var F2F_INTERVIEW_PATTERN = {
7906
8075
  fetchInterviewsByCandidateId: "fetch.interviews.by.candidate.id",
7907
8076
  createF2FInterview: "create.f2f.interview",
7908
8077
  createF2FInterviewRescheduleRequest: "create.f2f.interview.reschedule.request",
7909
- rejectF2FInterviewRescheduleRequest: "reject.f2f.interview.reschedule.request"
8078
+ rejectF2FInterviewRescheduleRequest: "reject.f2f.interview.reschedule.request",
8079
+ fetchF2FInterviewsForClient: "fetch.f2f.interviews.for.client",
8080
+ fetchInterviewedFreelancerForClient: "fetch.interviewed.freelancer.for.client",
8081
+ createF2FInterviewDirect: "create.f2f.interview.direct",
8082
+ approveF2FInterviewRescheduleRequest: "approve.f2f.interview.reschedule.request",
8083
+ fetchF2FInterviewByUuidWithJobDetailsForClient: "fetch.f2f.interview.by.uuid.with.job.details.for.client",
8084
+ fetchF2FInterviewByUuidWithJobDetailsForFreelancer: "fetch.f2F.interview.by.uuid.with.job.details.for.freelancer",
8085
+ fetchF2FInterviewByUuidWithJobDetails: "fetch.f2f.interview.by.uuid.with.job.details"
7910
8086
  };
7911
8087
  var AI_INTERVIEW_PATTERN = {
8088
+ fetchAiInterviewDetailPublic: "fetch.aiinterview.detail.public",
8089
+ markAiInterviewAsInProgressPublic: "mark.aiinterview.as.inprogress.public",
8090
+ markAiInterviewAsExpiredPublic: "mark.aiinterview.as.expired.public",
8091
+ captureAiInterviewResultPublic: "capture.aiinterview.result.public",
8092
+ fetchAiInterviewforClient: "fetch.aiinterview.for.client",
8093
+ fetchAiInterviewforFreelancer: "fetch.aiinterview.for.freelancer",
8094
+ fetchAiInterviewByUuidWithJobDetailsForFreelancer: "fetch.aiinterview.by.uuid.with.job.details.for.freelancer",
8095
+ fetchRescheduleRequestsForFreelancerAiInterview: "fetch.reschedule.requests.for.freelancer.aiinterview",
8096
+ fetchRescheduleRequestsForClientAiInterview: "fetch.reschedule.requests.for.client.aiinterview",
8097
+ fetchAiInterviewAnalysisForClient: "fetch.aiinterview.analysis.for.client",
7912
8098
  fetchAiInterviewRescheduleRequestsForClient: "fetch.aiinterview.reschedule.requests.for.client",
7913
8099
  createAiInterviewRescheduleRequest: "create.aiinterview.reschedule.request",
7914
8100
  approveAiInterviewRescheduleRequest: "approve.aiinterview.reschedule.request",
7915
- rejectAiInterviewRescheduleRequest: "reject.aiinterview.reschedule.request"
8101
+ rejectAiInterviewRescheduleRequest: "reject.aiinterview.reschedule.request",
8102
+ handleAiInterviewAuthentication: "handle.aiinterview.authentication",
8103
+ handleAiInterviewQuestionGeneration: "handle.aiinterview.question.generation",
8104
+ handleAiInterviewTemplateGeneration: "handle.aiinterview.template.generation",
8105
+ handleAiInterviewLinkGeneration: "handle.aiinterview.link.generation",
8106
+ handleAiInterviewInsights: "handle.ai.interview.insights"
7916
8107
  };
7917
8108
  var CALENDLY_PATTERN = {
7918
8109
  handleCalendlyWebhook: "handle.calendly.webhook"
7919
8110
  };
8111
+ var ZOOM_PATTERN = {
8112
+ handleZoomWebhook: "handle.zoom.webhook",
8113
+ handleTestZoomWebhook: "handle.test.zoom.webhook",
8114
+ handleZoomRecordingSettlement: "handle.zoom.recording.settlement"
8115
+ };
8116
+ var INTERVIEW_PATTERN = {
8117
+ fetchInterviews: "fetch.interviews",
8118
+ fetchInterviewDetail: "fetch.interview.detail",
8119
+ fetchInterviewType: "fetch.interview.type",
8120
+ fetchInterviewBasicInformation: "fetch.interview.basic.information",
8121
+ createInterviewBasicInformation: "create.interview.basic.information",
8122
+ updateInterviewBasicInformation: "update.interview.basic.information",
8123
+ fetchInterviewTypeInformation: "fetch.interview.type.information",
8124
+ updateInterviewTypeInformation: "update.interview.type.information",
8125
+ fetchInterviewSkills: "fetch.interview.skills",
8126
+ createInterviewSkills: "create.interview.skills",
8127
+ fetchInterviewQuestions: "fetch.interview.questions",
8128
+ createInterviewQuestions: "create.interview.questions",
8129
+ fetchInterviewSetting: "fetch.interview.setting",
8130
+ updateInterviewSetting: "update.interview.setting",
8131
+ markInterviewAsPublished: "mark.interview.as.published",
8132
+ deleteInterview: "delete.interview"
8133
+ };
7920
8134
 
7921
8135
  // src/modules/interview/dto/interview-invite.dto.ts
7922
8136
  import {
@@ -8083,6 +8297,20 @@ __decorateClass([
8083
8297
 
8084
8298
  // src/modules/contract/pattern/pattern.ts
8085
8299
  var CONTRACT_PATTERN = {
8300
+ generateContract: "generate.contract",
8301
+ fetchHiredFreelancerForClient: "fetch.hired.freelancer.for.client",
8302
+ esignContractForClient: "esign.contract.for.client",
8303
+ markContractViewedByFreelancer: "mark.contract.viewed.by.freelancer",
8304
+ esignContractForFreelancer: "esign.contract.for.freelancer",
8305
+ fetchFreelancerDropdownForClient: "fetch.freelancer.dropdown.for.client",
8306
+ fetchClientDropdownForFreelancer: "fetch.client.dropdown.for.freelancer",
8307
+ escrowFundForContract: "escrow.fund.for.contract",
8308
+ markContractAsActive: "mark.contract.as.active",
8309
+ fetchActiveContractsForFreelancer: "fetch.active.contracts.for.freelancer",
8310
+ fetchHiredFreelancerForGroupCreation: "fetch.hired.freelancer.for.group.creation",
8311
+ fetchActiveContractFreelancerCount: "fetch.active.contract.freelancer.count",
8312
+ fetchJobsDropDownForContractFilters: "fetch.jobs.dropdown.for.contract.filters",
8313
+ fetchOfferedJobsForFreelancer: "fetch.offered.jobs.for.freelancer",
8086
8314
  fetchContractsForClient: "fetch.contract.for.client",
8087
8315
  fetchContractCountForClientAsPerStatus: "fetch.contract.count.for.client.as.per.status",
8088
8316
  fetchContractsForFreelancer: "fetch.contract.for.freelancer",
@@ -8152,7 +8380,13 @@ var STRIPE_PATTERN = {
8152
8380
  createPayout: "create.payout",
8153
8381
  getConnectedAccounts: "get.connected.accounts",
8154
8382
  getTransferHistory: "get.transfer.history",
8155
- fetchTransactions: "fetch.transactions"
8383
+ fetchTransactions: "fetch.transactions",
8384
+ handleStripeWebhookTestEvent: "handle.stripe.webhook.test.event",
8385
+ createClientCustomerAccount: "create.client.customer.account",
8386
+ preCheckoutCalculation: "pre.checkout.calculation",
8387
+ clientAddFund: "client.add.fund",
8388
+ getFreelancerAccountBalance: "get.freelancer.account.balance",
8389
+ getBalanceTransactionsForFreelancer: "get.balance.transactions.for.freelancer"
8156
8390
  };
8157
8391
 
8158
8392
  // src/modules/stripe/dto/create-checkout-session.dto.ts
@@ -8175,11 +8409,26 @@ var TIMESHEET_FREELANCER_PATTERN = {
8175
8409
  submitTimesheetForFreelancer: "submit.timesheet.for.freelancer",
8176
8410
  fetchMissingTimesheetsForFreelancer: "fetch.missing.timesheets.for.freelancer",
8177
8411
  fetchSubmitedTimesheetsForFreelancer: "fetch.submited.timesheets.for.freelancer",
8178
- fetchTimesheetsForResubmitForFreelancer: "fetch.timesheets.for.resubmit.for.freelancer"
8412
+ fetchTimesheetsForResubmitForFreelancer: "fetch.timesheets.for.resubmit.for.freelancer",
8413
+ fetchTimesheetsByDateRangeAndJobIdForFreelancer: "fetch.timesheets.by.date.range.and.job.id.for.freelancer",
8414
+ fetchWeeklyCardSummeryByJobIdForFreelancer: "fetch.weekly.card.summery.by.job.id.for.freelancer",
8415
+ fetchCardSummeryByTimesheetLineIdForFreelancer: "fetch.card.summery.by.timesheet.line.id.for.freelancer",
8416
+ fetchApprovedTimesheetsForFreelancer: "fetch.approved.timesheets.for.freelancer",
8417
+ fetchPendingApprovalTimesheetsForFreelancer: "fetch.pending.approval.timesheets.for.freelancer",
8418
+ fetchAllSubmittedTimesheetsForFreelancer: "fetch.all.submitted.timesheets.for.freelancer",
8419
+ checkTimesheetSubmissionStatusForFreelancer: "check.timesheet.submission.status.for.freelancer",
8420
+ fetchSubmissionHistoryForFreelancer: "fetch.submission.history.for.freelancer",
8421
+ resubmitTimesheetForFreelancer: "resubmit.timesheet.for.freelancer",
8422
+ createMissingTimesheetLine: "create.missing.timesheet.line",
8423
+ fetchClientDropDownForFreelancer: "fetch.client.dropdown.for.freelancer",
8424
+ fetchJobsDropDownForFreelancer: "fetch.jobs.dropdown.for.freelancer"
8179
8425
  };
8180
8426
  var TIMESHEET_CLIENT_PATTERN = {
8181
8427
  approveFreelancerTimesheetForClient: "approve.freelancer.timesheet.for.client",
8182
- rejectFreelancerTimesheetForClient: "reject.freelancer.timesheet.for.client"
8428
+ rejectFreelancerTimesheetForClient: "reject.freelancer.timesheet.for.client",
8429
+ fetchAllSubmittedTimesheetsForClient: "fetch.all.submitted.timesheets.for.client",
8430
+ fetchAllSendBackTimesheetsForClient: "fetch.all.send.back.timesheets.for.client",
8431
+ fetchAllPendingApprovalTimesheetsForClient: "fetch.all.pending.approval.timesheets.for.client"
8183
8432
  };
8184
8433
 
8185
8434
  // src/modules/timesheet/dto/create-freelancer-timesheet.dto.ts
@@ -8297,12 +8546,17 @@ __decorateClass([
8297
8546
  // src/modules/invoice/pattern/pattern.ts
8298
8547
  var INVOICE_PATTERN = {
8299
8548
  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"
8549
+ fetchInvoicesForFreelancer: "fetch.invoices.for.freelancer",
8550
+ fetchInvoicesForClient: "fetch.invoices.for.client",
8551
+ fetchInvoiceById: "fetch.invoice.by.id",
8552
+ updateInvoiceStatus: "update.invoice.status",
8553
+ fetchAnalyticsForClient: "fetch.analytics.for.client",
8554
+ fetchAnalyticsForFreelancer: "fetch.analytics.for.freelancer",
8555
+ fetchFreelancerDropdownForClient: "fetch.freelancer.dropdown.for.client",
8556
+ fetchInvoicesSummeryForClient: "fetch.invoices.summery.for.client",
8557
+ fetchDashboardAnalyticsForClient: "fetch.dashboard.analytics.for.client",
8558
+ fetchPaymentDetailsByInvoiceId: "fetch.payment.details.by.invoiceId",
8559
+ fetchInvoiceReportsForClient: "fetch.invoicer.reports.for.client"
8306
8560
  };
8307
8561
 
8308
8562
  // src/modules/invoice/dto/update-invoice-status.dto.ts
@@ -8316,6 +8570,13 @@ __decorateClass([
8316
8570
  })
8317
8571
  ], UpdateInvoiceStatusDto.prototype, "status", 2);
8318
8572
 
8573
+ // src/modules/dispute/pattern/pattern.ts
8574
+ var DISPUTE_PATTERN = {
8575
+ fetchDisputes: "fetch.disputes",
8576
+ fetchDisputeById: "fetch.dispute.by.id",
8577
+ createDispute: "create.dispute"
8578
+ };
8579
+
8319
8580
  // src/modules/dispute/dto/create-dispute.dto.ts
8320
8581
  import {
8321
8582
  IsString as IsString49,
@@ -8374,6 +8635,13 @@ __decorateClass([
8374
8635
  })
8375
8636
  ], CreateDisputeDto.prototype, "dynamicFields", 2);
8376
8637
 
8638
+ // src/modules/senseloaf/pattern/pattern.ts
8639
+ var SENSELOAF_PATTERN = {
8640
+ handleAiAssessmentDetails: "handle.ai.assessment.details",
8641
+ handelAiAssessmentCreation: "handel.ai.assessment.creation",
8642
+ handleJdParsing: "handle.jd.parsing"
8643
+ };
8644
+
8377
8645
  // src/modules/senseloaf/dto/ai-interview-question-generate.dto.ts
8378
8646
  import {
8379
8647
  IsNotEmpty as IsNotEmpty71
@@ -8387,6 +8655,47 @@ __decorateClass([
8387
8655
  IsNotEmpty71({ message: "Please enter number of questions." })
8388
8656
  ], AiInterviewQuestionGenerateDto.prototype, "numQuestions", 2);
8389
8657
 
8658
+ // src/modules/commission/pattern/pattern.ts
8659
+ var COMMISSION_PATTERN = {
8660
+ fetchCommission: "fetch.commission"
8661
+ };
8662
+
8663
+ // src/modules/hiring/pattern/pattern.ts
8664
+ var HIRING_PATTERN = {
8665
+ fetchAllHiredFreelancerForClient: "fetch.all.hired.freelancer.for.client",
8666
+ fetchAllHiredClientForFreelancer: "fetch.all.hired.client.for.freelancer",
8667
+ createHiring: "create.hiring"
8668
+ };
8669
+
8670
+ // src/modules/llm/pattern/pattern.ts
8671
+ var LLM_PATTERN = {
8672
+ handleMcqGeneration: "handle.mcq.generation"
8673
+ };
8674
+
8675
+ // src/modules/skill/pattern/pattern.ts
8676
+ var SKILL_PATTERN = {
8677
+ fetchSkillsDropdown: "fetch.skills.dropdown",
8678
+ fetchSkillsDropdownV2: "fetch.skills.dropdown.v2"
8679
+ };
8680
+
8681
+ // src/modules/user/signature/pattern/pattern.ts
8682
+ var SIGNATURE_PATTERN = {
8683
+ fetchSignatures: "fetch.signatures",
8684
+ saveSignature: "save.signature"
8685
+ };
8686
+
8687
+ // src/modules/wallet/pattern/pattern.ts
8688
+ var WALLET_PATTERN = {
8689
+ fetchConnectAccountDetails: "fetch.connect.account.details",
8690
+ fetchWalletTransactions: "fetch.wallet.transactions",
8691
+ addTopupEscrowAmount: "add.topup.escrow.amount",
8692
+ debitCommissionFromClientForFTEHiring: "debit.commission.from.client.for.fte.hiring"
8693
+ };
8694
+ var WALLET_ADMIN_PATTERN = {
8695
+ fetchAdminWalletBalance: "fetch.admin.wallet.balance",
8696
+ fetchAdminWalletTransactions: "fetch.admin.wallet.transactions"
8697
+ };
8698
+
8390
8699
  // src/adapters/tcp/user.tcp.adapter.ts
8391
8700
  import { config } from "dotenv";
8392
8701
  import { Transport } from "@nestjs/microservices";
@@ -9435,8 +9744,10 @@ export {
9435
9744
  CALENDLY_PATTERN,
9436
9745
  CITY_PATTERN,
9437
9746
  CLIENT_ADMIN_PATTERNS,
9747
+ CLIENT_CANDIDATE_PREFERENCE_PATTERN,
9438
9748
  CLIENT_PROFILE_PATTERN,
9439
9749
  CMS_PATTERNS,
9750
+ COMMISSION_PATTERN,
9440
9751
  COMPANY_MEMBERS_PATTERNS,
9441
9752
  COMPANY_ROLES_PATTERNS,
9442
9753
  CONTRACT_PATTERN,
@@ -9489,6 +9800,7 @@ export {
9489
9800
  CreateQuestionDto,
9490
9801
  CreateRatingDto,
9491
9802
  CreateSubAdminDto,
9803
+ DISPUTE_PATTERN,
9492
9804
  Dispute,
9493
9805
  DisputeStatusEnum,
9494
9806
  DocumentType,
@@ -9509,6 +9821,7 @@ export {
9509
9821
  F2fInterviewRescheduleRequestStatusEnum,
9510
9822
  F2fInterviewScheduleStatusEnum,
9511
9823
  F2fInterviewStatusEnum,
9824
+ FREELANCER_ASSESSMENT_REQUEST_PATTERN,
9512
9825
  FREELANCER_DECLARATION_PATTERN,
9513
9826
  FREELANCER_EDUCATION_PATTERN,
9514
9827
  FREELANCER_EXPERIENCE_PATTERN,
@@ -9547,10 +9860,12 @@ export {
9547
9860
  FreelancerUploadResumeDto,
9548
9861
  FreelancerWorkShowcaseDto,
9549
9862
  FromUsOn,
9863
+ HIRING_PATTERN,
9550
9864
  HiredFreelancerNatureOfWorkEnum,
9551
9865
  Hiring,
9552
9866
  HiringCommissionTypeEnum,
9553
9867
  INTERVIEW_INVITE_PATTERN,
9868
+ INTERVIEW_PATTERN,
9554
9869
  INVOICE_PATTERN,
9555
9870
  InitiatorTypeEnum,
9556
9871
  Interview,
@@ -9565,6 +9880,8 @@ export {
9565
9880
  InvoicePaymentStatusEnum,
9566
9881
  InvoiceStatusEnum,
9567
9882
  InvoiceTypeEnum,
9883
+ JOB_ADMIN_PATTERN,
9884
+ JOB_APPLICATION_PATTERN,
9568
9885
  JOB_PATTERN,
9569
9886
  JOB_ROLE_PATTERN,
9570
9887
  Job,
@@ -9594,6 +9911,7 @@ export {
9594
9911
  JobTCPAdapter,
9595
9912
  KindOfHire,
9596
9913
  LEAD_PATTERN,
9914
+ LLM_PATTERN,
9597
9915
  Lead,
9598
9916
  LoginDto,
9599
9917
  LoginViaOtpDto,
@@ -9633,6 +9951,9 @@ export {
9633
9951
  ResetPasswordDto,
9634
9952
  ResetPasswordTokenValidationDto,
9635
9953
  ResultStatusEnum,
9954
+ SENSELOAF_PATTERN,
9955
+ SIGNATURE_PATTERN,
9956
+ SKILL_PATTERN,
9636
9957
  STATE_PATTERN,
9637
9958
  STRIPE_PATTERN,
9638
9959
  SUBADMIN_PATTERN,
@@ -9698,12 +10019,15 @@ export {
9698
10019
  UserTCPAdapter,
9699
10020
  VerifyGuestOtpDto,
9700
10021
  VerifyGuestOtpPurposeEnum,
10022
+ WALLET_ADMIN_PATTERN,
10023
+ WALLET_PATTERN,
9701
10024
  Wallet,
9702
10025
  WalletAccountTypeEnum,
9703
10026
  WalletOnboardingStatusEnum,
9704
10027
  WalletTransaction,
9705
10028
  WalletTransactionStatusEnum,
9706
10029
  WalletTransactionTypeEnum,
10030
+ ZOOM_PATTERN,
9707
10031
  ZoomMeetingLog,
9708
10032
  typeOfExperienceDtoEnumV2,
9709
10033
  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
+ };