@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.js CHANGED
@@ -66,8 +66,10 @@ __export(index_exports, {
66
66
  CALENDLY_PATTERN: () => CALENDLY_PATTERN,
67
67
  CITY_PATTERN: () => CITY_PATTERN,
68
68
  CLIENT_ADMIN_PATTERNS: () => CLIENT_ADMIN_PATTERNS,
69
+ CLIENT_CANDIDATE_PREFERENCE_PATTERN: () => CLIENT_CANDIDATE_PREFERENCE_PATTERN,
69
70
  CLIENT_PROFILE_PATTERN: () => CLIENT_PROFILE_PATTERN,
70
71
  CMS_PATTERNS: () => CMS_PATTERNS,
72
+ COMMISSION_PATTERN: () => COMMISSION_PATTERN,
71
73
  COMPANY_MEMBERS_PATTERNS: () => COMPANY_MEMBERS_PATTERNS,
72
74
  COMPANY_ROLES_PATTERNS: () => COMPANY_ROLES_PATTERNS,
73
75
  CONTRACT_PATTERN: () => CONTRACT_PATTERN,
@@ -120,6 +122,7 @@ __export(index_exports, {
120
122
  CreateQuestionDto: () => CreateQuestionDto,
121
123
  CreateRatingDto: () => CreateRatingDto,
122
124
  CreateSubAdminDto: () => CreateSubAdminDto,
125
+ DISPUTE_PATTERN: () => DISPUTE_PATTERN,
123
126
  Dispute: () => Dispute,
124
127
  DisputeStatusEnum: () => DisputeStatusEnum,
125
128
  DocumentType: () => DocumentType,
@@ -140,6 +143,7 @@ __export(index_exports, {
140
143
  F2fInterviewRescheduleRequestStatusEnum: () => F2fInterviewRescheduleRequestStatusEnum,
141
144
  F2fInterviewScheduleStatusEnum: () => F2fInterviewScheduleStatusEnum,
142
145
  F2fInterviewStatusEnum: () => F2fInterviewStatusEnum,
146
+ FREELANCER_ASSESSMENT_REQUEST_PATTERN: () => FREELANCER_ASSESSMENT_REQUEST_PATTERN,
143
147
  FREELANCER_DECLARATION_PATTERN: () => FREELANCER_DECLARATION_PATTERN,
144
148
  FREELANCER_EDUCATION_PATTERN: () => FREELANCER_EDUCATION_PATTERN,
145
149
  FREELANCER_EXPERIENCE_PATTERN: () => FREELANCER_EXPERIENCE_PATTERN,
@@ -178,10 +182,12 @@ __export(index_exports, {
178
182
  FreelancerUploadResumeDto: () => FreelancerUploadResumeDto,
179
183
  FreelancerWorkShowcaseDto: () => FreelancerWorkShowcaseDto,
180
184
  FromUsOn: () => FromUsOn,
185
+ HIRING_PATTERN: () => HIRING_PATTERN,
181
186
  HiredFreelancerNatureOfWorkEnum: () => HiredFreelancerNatureOfWorkEnum,
182
187
  Hiring: () => Hiring,
183
188
  HiringCommissionTypeEnum: () => HiringCommissionTypeEnum,
184
189
  INTERVIEW_INVITE_PATTERN: () => INTERVIEW_INVITE_PATTERN,
190
+ INTERVIEW_PATTERN: () => INTERVIEW_PATTERN,
185
191
  INVOICE_PATTERN: () => INVOICE_PATTERN,
186
192
  InitiatorTypeEnum: () => InitiatorTypeEnum,
187
193
  Interview: () => Interview,
@@ -196,6 +202,8 @@ __export(index_exports, {
196
202
  InvoicePaymentStatusEnum: () => InvoicePaymentStatusEnum,
197
203
  InvoiceStatusEnum: () => InvoiceStatusEnum,
198
204
  InvoiceTypeEnum: () => InvoiceTypeEnum,
205
+ JOB_ADMIN_PATTERN: () => JOB_ADMIN_PATTERN,
206
+ JOB_APPLICATION_PATTERN: () => JOB_APPLICATION_PATTERN,
199
207
  JOB_PATTERN: () => JOB_PATTERN,
200
208
  JOB_ROLE_PATTERN: () => JOB_ROLE_PATTERN,
201
209
  Job: () => Job,
@@ -225,6 +233,7 @@ __export(index_exports, {
225
233
  JobTCPAdapter: () => JobTCPAdapter,
226
234
  KindOfHire: () => KindOfHire,
227
235
  LEAD_PATTERN: () => LEAD_PATTERN,
236
+ LLM_PATTERN: () => LLM_PATTERN,
228
237
  Lead: () => Lead,
229
238
  LoginDto: () => LoginDto,
230
239
  LoginViaOtpDto: () => LoginViaOtpDto,
@@ -264,6 +273,9 @@ __export(index_exports, {
264
273
  ResetPasswordDto: () => ResetPasswordDto,
265
274
  ResetPasswordTokenValidationDto: () => ResetPasswordTokenValidationDto,
266
275
  ResultStatusEnum: () => ResultStatusEnum,
276
+ SENSELOAF_PATTERN: () => SENSELOAF_PATTERN,
277
+ SIGNATURE_PATTERN: () => SIGNATURE_PATTERN,
278
+ SKILL_PATTERN: () => SKILL_PATTERN,
267
279
  STATE_PATTERN: () => STATE_PATTERN,
268
280
  STRIPE_PATTERN: () => STRIPE_PATTERN,
269
281
  SUBADMIN_PATTERN: () => SUBADMIN_PATTERN,
@@ -329,12 +341,15 @@ __export(index_exports, {
329
341
  UserTCPAdapter: () => UserTCPAdapter,
330
342
  VerifyGuestOtpDto: () => VerifyGuestOtpDto,
331
343
  VerifyGuestOtpPurposeEnum: () => VerifyGuestOtpPurposeEnum,
344
+ WALLET_ADMIN_PATTERN: () => WALLET_ADMIN_PATTERN,
345
+ WALLET_PATTERN: () => WALLET_PATTERN,
332
346
  Wallet: () => Wallet,
333
347
  WalletAccountTypeEnum: () => WalletAccountTypeEnum,
334
348
  WalletOnboardingStatusEnum: () => WalletOnboardingStatusEnum,
335
349
  WalletTransaction: () => WalletTransaction,
336
350
  WalletTransactionStatusEnum: () => WalletTransactionStatusEnum,
337
351
  WalletTransactionTypeEnum: () => WalletTransactionTypeEnum,
352
+ ZOOM_PATTERN: () => ZOOM_PATTERN,
338
353
  ZoomMeetingLog: () => ZoomMeetingLog,
339
354
  typeOfExperienceDtoEnumV2: () => typeOfExperienceDtoEnumV2,
340
355
  typeOfExperienceEnum: () => typeOfExperienceEnum
@@ -354,7 +369,17 @@ var AUTHENTICATION_PATTERN = {
354
369
  handleForgotPassword: "handle.forgot.password",
355
370
  handleResetPassword: "handle.reset.password",
356
371
  handleValidateResetPasswordToken: "handle.validate.reset.password.token",
357
- handleSetPassword: "handle.set.password"
372
+ handleVerifyPermission: "handle.verify.permission",
373
+ handleValidateEmail: "handle.validate.email",
374
+ handleValidateEmailForLogin: "handle.validate.email.for.login",
375
+ handleValidateMobile: "handle.validate.mobile",
376
+ handleAdminLogin: "handle.admin.login",
377
+ handleSetPassword: "handle.set.password",
378
+ signUpWithLinkedIn: "signup.with.linkedin",
379
+ loginWithLinkedIn: "login.with.linkedin",
380
+ signUpWithGoogle: "signup.with.google",
381
+ loginWithGoogle: "login.with.google",
382
+ validateOnboardingToken: "validate.onboarding.token"
358
383
  };
359
384
 
360
385
  // src/modules/authentication/dto/login.dto.ts
@@ -603,7 +628,18 @@ var ONBOARDING_PATTERN = {
603
628
  handleFreelancerWorkShowcase: "handle.freelancer.work.showcase",
604
629
  handleClientAccountCreation: "handle.client.account.creation",
605
630
  handleClientProfileQuestion: "handle.client.profile.question",
606
- changeFreelancerPassword: "change.freelancer.password"
631
+ changeFreelancerPassword: "change.freelancer.password",
632
+ handleFetchClientProfileQuestion: "handle.fetch.client.profile.question",
633
+ verifyClientOnboardingToken: "verify.client.onboarding.token",
634
+ handleFetchFreelancerResume: "handle.fetch.freelancer.resume",
635
+ handleFreelancerResumeParsing: "handle.freelancer.resume.parsing",
636
+ initiateFreelancerMcqAssessment: "initiate.freelancer.mcq.assessment",
637
+ handleFetchAiAssessmentLink: "handle.fetch.ai.assessment.link",
638
+ skipFreelancerAiAssessment: "skip.freelancer.ai.assessment",
639
+ initiateFreelancerAiAssessment: "initiate.freelancer.ai.assessment",
640
+ captureAiAssessmentStatus: "capture.ai.assessment.status",
641
+ handleFetchFreelancerProfileQuestion: "handle.fetch.freelancer.profile.question",
642
+ handleFetchFreelancerDetails: "handle.fetch.freelancer.details"
607
643
  };
608
644
 
609
645
  // src/modules/onboarding/dto/freelancer-create-account.dto.ts
@@ -1014,7 +1050,10 @@ __decorateClass([
1014
1050
 
1015
1051
  // src/modules/resume-parser/pattern/pattern.ts
1016
1052
  var RESUME_PARSER_PATTERN = {
1017
- handleResumeParsing: "handle.resume.parsing"
1053
+ handleResumeParsing: "handle.resume.parsing",
1054
+ handleResumeParsingByUrl: "handle.resume.parsing.by.url",
1055
+ handleResumeDataProcessing: "handle.resume.data.processing",
1056
+ handleCheckResumeEligibility: "handle.check.resume.eligibility"
1018
1057
  };
1019
1058
 
1020
1059
  // src/modules/user/subadmin/pattern/pattern.ts
@@ -1026,7 +1065,8 @@ var SUBADMIN_PATTERN = {
1026
1065
  createSubAdmin: "create.subadmin",
1027
1066
  updateSubAdminAccountStatus: "update.subadmin.account.status",
1028
1067
  updateSubAdmin: "update.subadmin",
1029
- deleteSubAdmin: "delete.subadmin"
1068
+ deleteSubAdmin: "delete.subadmin",
1069
+ fetchSubAdminCount: "fetch.sub.admin.count"
1030
1070
  };
1031
1071
 
1032
1072
  // src/modules/user/subadmin/dto/create-subadmin.dto.ts
@@ -1110,7 +1150,13 @@ var CLIENT_PROFILE_PATTERN = {
1110
1150
  updateClientProfile: "update.client.profile",
1111
1151
  updateClientLogo: "update.client.logo",
1112
1152
  changeClientPassword: "change.client.password",
1113
- uploadClientServiceAgreement: "upload.client.service.agreement"
1153
+ uploadClientServiceAgreement: "upload.client.service.agreement",
1154
+ fetchClientServiceAgreement: "fetch.client.service.agreement",
1155
+ generateClientServiceAgreement: "generate.client.service.agreement",
1156
+ esignClientServiceAgreementForClient: "esign.client.service.agreement.for.client",
1157
+ fetchClientServiceAgreementStatus: "fetch.client.service.agreement.status",
1158
+ fetchRecommendedFreelancers: "fetch.recommended.freelancers",
1159
+ fetchRecommendedFreelancersV2: "fetch.recommended.freelancers.v2"
1114
1160
  };
1115
1161
 
1116
1162
  // src/modules/user/client-profile/dto/update-client-profile.dto.ts
@@ -1195,7 +1241,11 @@ var ONBOARDING_QUESTION_PATTERN = {
1195
1241
  fetchOnboardingQuestions: "fetch.onboarding.questions"
1196
1242
  };
1197
1243
  var ASSESSMENT_QUESTION_PATTERN = {
1198
- fetchAssessmentQuestions: "fetch.assessment.questions"
1244
+ fetchAssessmentQuestions: "fetch.assessment.questions",
1245
+ handleAssessmentQuestionImport: "handle.assessment.question.import",
1246
+ handelAssessmentRecordAnswer: "handel.assessment.record.answer",
1247
+ handelAssessmentRecordAnswers: "handel.assessment.record.answers",
1248
+ fetchAssessmentSummary: "fetch.assessment.summary"
1199
1249
  };
1200
1250
 
1201
1251
  // src/modules/question/dto/create-question.dto.ts
@@ -1241,7 +1291,41 @@ var JOB_PATTERN = {
1241
1291
  fetchJobDescription: "fetch.job.description",
1242
1292
  updateJobDescription: "update.job.description",
1243
1293
  updateJobStatus: "update.job.status",
1244
- searchJobsByRoleAndSkills: "search.jobs.by.role.and.skills"
1294
+ searchJobsByRoleAndSkills: "search.jobs.by.role.and.skills",
1295
+ handleBulkRecommendationAdjustment: "handle.bulk.recommendation.adjustment",
1296
+ refreshJobFreelancerRecommendationView: "refresh.job.freelancer.recommendation.view",
1297
+ fetchJobConfig: "fetch.job.config",
1298
+ fetchJobRoleSuggestions: "fetch.job.role.suggestions",
1299
+ fetchJobCount: "fetch.job.count",
1300
+ fetchJobsDropdownForFilters: "fetch.jobs.dropdown.for.filters",
1301
+ fetchJobsDropdownForInterview: "fetch.jobs.dropdown.for.interview",
1302
+ fetchJobsDropdownForFreelancer: "fetch.jobs.dropdown.for.freelancer",
1303
+ fetchJobDetailForFreelancer: "fetch.job.detail.for.freelancer",
1304
+ fetchJobBasicInformationV2: "fetch.job.basic.information.v2",
1305
+ createJobBasicInformationV2: "create.job.basic.information.v2",
1306
+ updateJobBasicInformationV2: "update.job.basic.information.v2",
1307
+ deleteJob: "deleteJob",
1308
+ fetchRecommendedFreelancersForJobs: "fetch.recommended.freelancers.for.jobs",
1309
+ fetchRecommendedFreelancersForJob: "fetch.recommended.freelancers.for.job",
1310
+ fetchRecommendedFreelancersForJobV2: "fetch.recommended.freelancers.for.job.v2",
1311
+ handleJobViwedCountIncrement: "handle.job.viwed.count.increment",
1312
+ jobDataSetup: "job.data.Setup",
1313
+ fetchJobsForComparison: "fetch.jobs.for.comparison",
1314
+ fetchJobSkillDropdownForClient: "fetch.job.skill.dropdown.for.client"
1315
+ };
1316
+ var JOB_ADMIN_PATTERN = {
1317
+ adminFetchJobByIdV2: "admin.fetch.job.by.id.v2",
1318
+ adminExportJobsToCSV: "admin.export.jobs.to.csv",
1319
+ adminFetchJobDescription: "admin.fetch.job.description",
1320
+ adminUpdateJobDescription: "admin.update.job.description"
1321
+ };
1322
+ var JOB_APPLICATION_PATTERN = {
1323
+ fetchJobApplicationCountAsPerStatusByJobId: "fetch.job.application.count.as.per.status.by.job.id",
1324
+ fetchJobApplicationsByJobId: "fetch.job.applications.by.job.id",
1325
+ fetchJobApplicants: "fetch.job.applicants",
1326
+ createJobApplication: "create.job.application",
1327
+ changeJobApplicationStatus: "change.job.application.status",
1328
+ changeJobApplicationStatusInBulk: "change.job.application.status.bulk"
1245
1329
  };
1246
1330
 
1247
1331
  // src/modules/job/dto/job-basic-information.dto.ts
@@ -1590,6 +1674,24 @@ __decorateClass([
1590
1674
  __decorateClass([
1591
1675
  (0, import_class_validator38.IsOptional)()
1592
1676
  ], JobBasicInformationV2Dto.prototype, "hideExpectedSalaryTo", 2);
1677
+ __decorateClass([
1678
+ (0, import_class_validator38.IsOptional)(),
1679
+ (0, import_class_validator38.IsNumber)({}, { message: "Expected annual budget (from) must be a number" }),
1680
+ (0, import_class_validator38.Min)(0, { message: "Expected annual budget (from) cannot be negative" }),
1681
+ (0, import_class_transformer4.Type)(() => Number)
1682
+ ], JobBasicInformationV2Dto.prototype, "expectedAnnualBudgetFrom", 2);
1683
+ __decorateClass([
1684
+ (0, import_class_validator38.IsOptional)()
1685
+ ], JobBasicInformationV2Dto.prototype, "hideExpectedAnnualBudgetFrom", 2);
1686
+ __decorateClass([
1687
+ (0, import_class_validator38.IsOptional)(),
1688
+ (0, import_class_validator38.IsNumber)({}, { message: "Expected annual budget (to) must be a number" }),
1689
+ (0, import_class_validator38.Min)(0, { message: "Expected annual budget (to) cannot be negative" }),
1690
+ (0, import_class_transformer4.Type)(() => Number)
1691
+ ], JobBasicInformationV2Dto.prototype, "expectedAnnualBudgetTo", 2);
1692
+ __decorateClass([
1693
+ (0, import_class_validator38.IsOptional)()
1694
+ ], JobBasicInformationV2Dto.prototype, "hideExpectedAnnualBudgetTo", 2);
1593
1695
  __decorateClass([
1594
1696
  (0, import_class_validator38.IsOptional)()
1595
1697
  ], JobBasicInformationV2Dto.prototype, "years", 2);
@@ -1656,7 +1758,33 @@ var PROFILE_PATTERN = {
1656
1758
  changeFreelancerPassword: "change.freelancer.password",
1657
1759
  uploadFreelancerProfilePic: "upload.freelancer.profilepic",
1658
1760
  updateFreelancerProfile: "update.freelancer.profile",
1659
- uploadFreelancerServiceAgreement: "upload.freelancer.service.agreement"
1761
+ uploadFreelancerServiceAgreement: "upload.freelancer.service.agreement",
1762
+ fetchFreelancerServiceAgreement: "fetch.freelancer.service.agreement",
1763
+ generateFreelancerServiceAgreement: "generate.freelancer.service.agreement",
1764
+ esignFreelancerServiceAgreementForClient: "esign.freelancer.service.agreement.for.client",
1765
+ freelancerResumeDataMappingDev: "freelancer.resume.data.papping.dev",
1766
+ freelancerMcqScoreMappingDev: "freelancer.mcq.score.mapping.dev",
1767
+ fetchFreelancerDropdown: "fetch.freelancer.dropdown",
1768
+ fetchFreelancerDesignationDropdown: "fetch.freelancer.designation.dropdown",
1769
+ deleteFreelancerProfilePic: "delete.freelancer.profile.pic",
1770
+ fetchRecommendedJobsForFreelancer: "fetch.recommended.jobs.for.freelancer",
1771
+ fetchRecommendedClientsDropdownForFreelancerV2: "fetch.recommended.clients.dropdown.for.freelancer.v2",
1772
+ fetchRecommendedJobsDropdownForFreelancerV2: "fetch.recommended.jobs.dropdown.for.freelancer.v2",
1773
+ fetchRecommendedJobsForFreelancerV2: "fetch.recommended.jobs.for.freelancer.v2",
1774
+ fetchAppliedJobsOfFreelancer: "fetch.applied.jobs.of.freelancer",
1775
+ fetchAppliedJobsDropdownForFreelancer: "fetch.applied.jobs.dropdown.for.freelancer",
1776
+ countOfActiveFreelancers: "count.of.active.freelancers",
1777
+ markFollowedOnLinkedIn: "mark.followed.on.linkedin",
1778
+ fetchFreelancerResumeByUuId: "fetch.freelancer.resume.by.uuid",
1779
+ freelancerDataSetup: "freelancer.data.setup",
1780
+ freelancerEmailAndMobileMasking: "freelancer.email.and.mobile.masking",
1781
+ fetchClientInfoForChat: "fetch.client.info.for.chat",
1782
+ fetchAiAssessmentDetails: "fetch.ai.assessment.details",
1783
+ captureAiAssessmentResult: "capture.ai.assessment.result"
1784
+ };
1785
+ var FREELANCER_ASSESSMENT_REQUEST_PATTERN = {
1786
+ fetchAssessmentRequestsForFreelancer: "fetch.assessment.requests.for.freelancer",
1787
+ createFreelancerAssessmentRequest: "create.freelancer.assessment.request"
1660
1788
  };
1661
1789
 
1662
1790
  // src/modules/user/freelancer-profile/dto/freelancer-change-password.dto.ts
@@ -1808,7 +1936,10 @@ __decorateClass([
1808
1936
  var BANK_PATTERN = {
1809
1937
  addFreelancerBankDetails: "add.freelancer.bankdetails",
1810
1938
  fetchFreelancerBankDetails: "fetch.freelancer.bank.details",
1811
- updateFreelancerBankDetails: "update.freelancer.bank.details"
1939
+ updateFreelancerBankDetails: "update.freelancer.bank.details",
1940
+ deleteBankAccount: "delete.bank.account",
1941
+ fetchBankAccounts: "fetch.bank.accounts",
1942
+ setBankAccountPrimary: "set.bank.account.primary"
1812
1943
  };
1813
1944
 
1814
1945
  // src/modules/bank/dto/freelancer-bank-details.dto.ts
@@ -1907,7 +2038,11 @@ __decorateClass([
1907
2038
  // src/modules/notification/pattern/pattern.ts
1908
2039
  var NOTIFICATION_PATTERN = {
1909
2040
  handleAccountVerificationNotification: "handle.account.verification.notification",
1910
- handleResetLinkNotification: "handle.reset.link.notification"
2041
+ handleResetLinkNotification: "handle.reset.link.notification",
2042
+ handleBusinessAccountCreatedNotification: "handle.business.account.created.notification",
2043
+ handleBusinessAccountSetPasswordNotification: "handle.business.account.set.password.notification",
2044
+ handleFreelancerAccountSetPasswordNotification: "handle.freelancer.account.set.password.notification",
2045
+ handleSendBulkInterviewInvites: "handle.send.bulk.interview.invites"
1911
2046
  };
1912
2047
 
1913
2048
  // src/modules/rating/pattern/pattern.ts
@@ -4692,6 +4827,38 @@ __decorateClass([
4692
4827
  default: false
4693
4828
  })
4694
4829
  ], Job.prototype, "hideExpectedSalaryTo", 2);
4830
+ __decorateClass([
4831
+ (0, import_typeorm33.Column)({
4832
+ name: "expected_annual_budget_from",
4833
+ type: "decimal",
4834
+ precision: 10,
4835
+ scale: 2,
4836
+ default: 0
4837
+ })
4838
+ ], Job.prototype, "expectedAnnualBudgetFrom", 2);
4839
+ __decorateClass([
4840
+ (0, import_typeorm33.Column)({
4841
+ name: "hide_expected_annual_budget_from",
4842
+ type: "boolean",
4843
+ default: false
4844
+ })
4845
+ ], Job.prototype, "hideExpectedAnnualBudgetFrom", 2);
4846
+ __decorateClass([
4847
+ (0, import_typeorm33.Column)({
4848
+ name: "expected_annual_budget_to",
4849
+ type: "decimal",
4850
+ precision: 10,
4851
+ scale: 2,
4852
+ default: 0
4853
+ })
4854
+ ], Job.prototype, "expectedAnnualBudgetTo", 2);
4855
+ __decorateClass([
4856
+ (0, import_typeorm33.Column)({
4857
+ name: "hide_expected_annual_budget_to",
4858
+ type: "boolean",
4859
+ default: false
4860
+ })
4861
+ ], Job.prototype, "hideExpectedAnnualBudgetTo", 2);
4695
4862
  __decorateClass([
4696
4863
  (0, import_typeorm33.Column)({ name: "years", type: "varchar", nullable: true })
4697
4864
  ], Job.prototype, "years", 2);
@@ -6744,7 +6911,8 @@ var PERMISSION_PATTERN = {
6744
6911
  // src/modules/user/freelancer-skill/pattern/pattern.ts
6745
6912
  var FREELANCER_SKILL_PATTERN = {
6746
6913
  fetchFreelancerSkill: "fetch.freelancer.skill",
6747
- saveFreelancerSkill: "save.freelancer.skill"
6914
+ saveFreelancerSkill: "save.freelancer.skill",
6915
+ fetchFreelancersSkillDropdown: "fetch.freelancers.skill.dropdown"
6748
6916
  };
6749
6917
 
6750
6918
  // src/modules/user/freelancer-skill/dto/freelancer-skill.dto.ts
@@ -6792,7 +6960,12 @@ var ADMIN_FREELANCER_PATTERN = {
6792
6960
  adminCreateFreelancer: "admin.create.freelancer",
6793
6961
  adminUpdateFreelancer: "admin.update.freelancer",
6794
6962
  adminDeleteFreelancer: "admin.delete.freelancer",
6795
- fetchFreelancerGraphCount: "fetch.freelancer.graph.count"
6963
+ fetchFreelancerGraphCount: "fetch.freelancer.graph.count",
6964
+ adminExportFreelancerV2: "admin.export.freelancer.v2",
6965
+ sendAiAssessmentLink: "send.ai.assessment.link",
6966
+ fetchAIassessmentsForAdmin: "fetch.ai.assessments.for.admin",
6967
+ fetchAiAssessmentRequestsForAdmin: "fetch.ai.assessment.requests.for.admin",
6968
+ updateAssessmentRequestStatus: "update.assessment.request.status"
6796
6969
  };
6797
6970
 
6798
6971
  // src/modules/freelancer-admin/dto/create-freelancer.dto.ts
@@ -7221,6 +7394,15 @@ __decorateClass([
7221
7394
  ])
7222
7395
  ], FreelancerDeclarationDto.prototype, "declarationAccepted", 2);
7223
7396
 
7397
+ // src/modules/user/client-candidate-preference/pattern/pattern.ts
7398
+ var CLIENT_CANDIDATE_PREFERENCE_PATTERN = {
7399
+ fetchClientPreferredCandidate: "fetch.client.preferred.candidate",
7400
+ markCandidateAsNotSuitable: "mark.candidate.as.not.suitable",
7401
+ markCandidateAsNotSuitableInBulk: "mark.candidate.as.not.suitable.in.bulk",
7402
+ markCandidateAsShortlisted: "mark.candidate.as.shortlisted",
7403
+ markCandidateAsShortlistedInBulk: "mark.candidate.as.shortlisted.in.bulk"
7404
+ };
7405
+
7224
7406
  // src/modules/cms/pattern/pattern.ts
7225
7407
  var CMS_PATTERNS = {
7226
7408
  fetchCms: "cms.fetch",
@@ -7777,7 +7959,9 @@ var ADMIN_PERMISSION_PATTERN = {
7777
7959
 
7778
7960
  // src/modules/interview/pattern/pattern.ts
7779
7961
  var INTERVIEW_INVITE_PATTERN = {
7780
- sendInterviewInvite: "send.interview.invite"
7962
+ sendInterviewInvite: "send.interview.invite",
7963
+ fetchInvitedFreelancerForClient: "fetch.invited.freelancer.for.client",
7964
+ fetchInterviewInvite: "fetch.interview.invite"
7781
7965
  };
7782
7966
  var F2F_INTERVIEW_PATTERN = {
7783
7967
  fetchBookings: "fetch.bookings",
@@ -7786,17 +7970,62 @@ var F2F_INTERVIEW_PATTERN = {
7786
7970
  fetchInterviewsByCandidateId: "fetch.interviews.by.candidate.id",
7787
7971
  createF2FInterview: "create.f2f.interview",
7788
7972
  createF2FInterviewRescheduleRequest: "create.f2f.interview.reschedule.request",
7789
- rejectF2FInterviewRescheduleRequest: "reject.f2f.interview.reschedule.request"
7973
+ rejectF2FInterviewRescheduleRequest: "reject.f2f.interview.reschedule.request",
7974
+ fetchF2FInterviewsForClient: "fetch.f2f.interviews.for.client",
7975
+ fetchInterviewedFreelancerForClient: "fetch.interviewed.freelancer.for.client",
7976
+ createF2FInterviewDirect: "create.f2f.interview.direct",
7977
+ approveF2FInterviewRescheduleRequest: "approve.f2f.interview.reschedule.request",
7978
+ fetchF2FInterviewByUuidWithJobDetailsForClient: "fetch.f2f.interview.by.uuid.with.job.details.for.client",
7979
+ fetchF2FInterviewByUuidWithJobDetailsForFreelancer: "fetch.f2F.interview.by.uuid.with.job.details.for.freelancer",
7980
+ fetchF2FInterviewByUuidWithJobDetails: "fetch.f2f.interview.by.uuid.with.job.details"
7790
7981
  };
7791
7982
  var AI_INTERVIEW_PATTERN = {
7983
+ fetchAiInterviewDetailPublic: "fetch.aiinterview.detail.public",
7984
+ markAiInterviewAsInProgressPublic: "mark.aiinterview.as.inprogress.public",
7985
+ markAiInterviewAsExpiredPublic: "mark.aiinterview.as.expired.public",
7986
+ captureAiInterviewResultPublic: "capture.aiinterview.result.public",
7987
+ fetchAiInterviewforClient: "fetch.aiinterview.for.client",
7988
+ fetchAiInterviewforFreelancer: "fetch.aiinterview.for.freelancer",
7989
+ fetchAiInterviewByUuidWithJobDetailsForFreelancer: "fetch.aiinterview.by.uuid.with.job.details.for.freelancer",
7990
+ fetchRescheduleRequestsForFreelancerAiInterview: "fetch.reschedule.requests.for.freelancer.aiinterview",
7991
+ fetchRescheduleRequestsForClientAiInterview: "fetch.reschedule.requests.for.client.aiinterview",
7992
+ fetchAiInterviewAnalysisForClient: "fetch.aiinterview.analysis.for.client",
7792
7993
  fetchAiInterviewRescheduleRequestsForClient: "fetch.aiinterview.reschedule.requests.for.client",
7793
7994
  createAiInterviewRescheduleRequest: "create.aiinterview.reschedule.request",
7794
7995
  approveAiInterviewRescheduleRequest: "approve.aiinterview.reschedule.request",
7795
- rejectAiInterviewRescheduleRequest: "reject.aiinterview.reschedule.request"
7996
+ rejectAiInterviewRescheduleRequest: "reject.aiinterview.reschedule.request",
7997
+ handleAiInterviewAuthentication: "handle.aiinterview.authentication",
7998
+ handleAiInterviewQuestionGeneration: "handle.aiinterview.question.generation",
7999
+ handleAiInterviewTemplateGeneration: "handle.aiinterview.template.generation",
8000
+ handleAiInterviewLinkGeneration: "handle.aiinterview.link.generation",
8001
+ handleAiInterviewInsights: "handle.ai.interview.insights"
7796
8002
  };
7797
8003
  var CALENDLY_PATTERN = {
7798
8004
  handleCalendlyWebhook: "handle.calendly.webhook"
7799
8005
  };
8006
+ var ZOOM_PATTERN = {
8007
+ handleZoomWebhook: "handle.zoom.webhook",
8008
+ handleTestZoomWebhook: "handle.test.zoom.webhook",
8009
+ handleZoomRecordingSettlement: "handle.zoom.recording.settlement"
8010
+ };
8011
+ var INTERVIEW_PATTERN = {
8012
+ fetchInterviews: "fetch.interviews",
8013
+ fetchInterviewDetail: "fetch.interview.detail",
8014
+ fetchInterviewType: "fetch.interview.type",
8015
+ fetchInterviewBasicInformation: "fetch.interview.basic.information",
8016
+ createInterviewBasicInformation: "create.interview.basic.information",
8017
+ updateInterviewBasicInformation: "update.interview.basic.information",
8018
+ fetchInterviewTypeInformation: "fetch.interview.type.information",
8019
+ updateInterviewTypeInformation: "update.interview.type.information",
8020
+ fetchInterviewSkills: "fetch.interview.skills",
8021
+ createInterviewSkills: "create.interview.skills",
8022
+ fetchInterviewQuestions: "fetch.interview.questions",
8023
+ createInterviewQuestions: "create.interview.questions",
8024
+ fetchInterviewSetting: "fetch.interview.setting",
8025
+ updateInterviewSetting: "update.interview.setting",
8026
+ markInterviewAsPublished: "mark.interview.as.published",
8027
+ deleteInterview: "delete.interview"
8028
+ };
7800
8029
 
7801
8030
  // src/modules/interview/dto/interview-invite.dto.ts
7802
8031
  var import_class_validator69 = require("class-validator");
@@ -7935,6 +8164,20 @@ __decorateClass([
7935
8164
 
7936
8165
  // src/modules/contract/pattern/pattern.ts
7937
8166
  var CONTRACT_PATTERN = {
8167
+ generateContract: "generate.contract",
8168
+ fetchHiredFreelancerForClient: "fetch.hired.freelancer.for.client",
8169
+ esignContractForClient: "esign.contract.for.client",
8170
+ markContractViewedByFreelancer: "mark.contract.viewed.by.freelancer",
8171
+ esignContractForFreelancer: "esign.contract.for.freelancer",
8172
+ fetchFreelancerDropdownForClient: "fetch.freelancer.dropdown.for.client",
8173
+ fetchClientDropdownForFreelancer: "fetch.client.dropdown.for.freelancer",
8174
+ escrowFundForContract: "escrow.fund.for.contract",
8175
+ markContractAsActive: "mark.contract.as.active",
8176
+ fetchActiveContractsForFreelancer: "fetch.active.contracts.for.freelancer",
8177
+ fetchHiredFreelancerForGroupCreation: "fetch.hired.freelancer.for.group.creation",
8178
+ fetchActiveContractFreelancerCount: "fetch.active.contract.freelancer.count",
8179
+ fetchJobsDropDownForContractFilters: "fetch.jobs.dropdown.for.contract.filters",
8180
+ fetchOfferedJobsForFreelancer: "fetch.offered.jobs.for.freelancer",
7938
8181
  fetchContractsForClient: "fetch.contract.for.client",
7939
8182
  fetchContractCountForClientAsPerStatus: "fetch.contract.count.for.client.as.per.status",
7940
8183
  fetchContractsForFreelancer: "fetch.contract.for.freelancer",
@@ -8004,7 +8247,13 @@ var STRIPE_PATTERN = {
8004
8247
  createPayout: "create.payout",
8005
8248
  getConnectedAccounts: "get.connected.accounts",
8006
8249
  getTransferHistory: "get.transfer.history",
8007
- fetchTransactions: "fetch.transactions"
8250
+ fetchTransactions: "fetch.transactions",
8251
+ handleStripeWebhookTestEvent: "handle.stripe.webhook.test.event",
8252
+ createClientCustomerAccount: "create.client.customer.account",
8253
+ preCheckoutCalculation: "pre.checkout.calculation",
8254
+ clientAddFund: "client.add.fund",
8255
+ getFreelancerAccountBalance: "get.freelancer.account.balance",
8256
+ getBalanceTransactionsForFreelancer: "get.balance.transactions.for.freelancer"
8008
8257
  };
8009
8258
 
8010
8259
  // src/modules/stripe/dto/create-checkout-session.dto.ts
@@ -8025,11 +8274,26 @@ var TIMESHEET_FREELANCER_PATTERN = {
8025
8274
  submitTimesheetForFreelancer: "submit.timesheet.for.freelancer",
8026
8275
  fetchMissingTimesheetsForFreelancer: "fetch.missing.timesheets.for.freelancer",
8027
8276
  fetchSubmitedTimesheetsForFreelancer: "fetch.submited.timesheets.for.freelancer",
8028
- fetchTimesheetsForResubmitForFreelancer: "fetch.timesheets.for.resubmit.for.freelancer"
8277
+ fetchTimesheetsForResubmitForFreelancer: "fetch.timesheets.for.resubmit.for.freelancer",
8278
+ fetchTimesheetsByDateRangeAndJobIdForFreelancer: "fetch.timesheets.by.date.range.and.job.id.for.freelancer",
8279
+ fetchWeeklyCardSummeryByJobIdForFreelancer: "fetch.weekly.card.summery.by.job.id.for.freelancer",
8280
+ fetchCardSummeryByTimesheetLineIdForFreelancer: "fetch.card.summery.by.timesheet.line.id.for.freelancer",
8281
+ fetchApprovedTimesheetsForFreelancer: "fetch.approved.timesheets.for.freelancer",
8282
+ fetchPendingApprovalTimesheetsForFreelancer: "fetch.pending.approval.timesheets.for.freelancer",
8283
+ fetchAllSubmittedTimesheetsForFreelancer: "fetch.all.submitted.timesheets.for.freelancer",
8284
+ checkTimesheetSubmissionStatusForFreelancer: "check.timesheet.submission.status.for.freelancer",
8285
+ fetchSubmissionHistoryForFreelancer: "fetch.submission.history.for.freelancer",
8286
+ resubmitTimesheetForFreelancer: "resubmit.timesheet.for.freelancer",
8287
+ createMissingTimesheetLine: "create.missing.timesheet.line",
8288
+ fetchClientDropDownForFreelancer: "fetch.client.dropdown.for.freelancer",
8289
+ fetchJobsDropDownForFreelancer: "fetch.jobs.dropdown.for.freelancer"
8029
8290
  };
8030
8291
  var TIMESHEET_CLIENT_PATTERN = {
8031
8292
  approveFreelancerTimesheetForClient: "approve.freelancer.timesheet.for.client",
8032
- rejectFreelancerTimesheetForClient: "reject.freelancer.timesheet.for.client"
8293
+ rejectFreelancerTimesheetForClient: "reject.freelancer.timesheet.for.client",
8294
+ fetchAllSubmittedTimesheetsForClient: "fetch.all.submitted.timesheets.for.client",
8295
+ fetchAllSendBackTimesheetsForClient: "fetch.all.send.back.timesheets.for.client",
8296
+ fetchAllPendingApprovalTimesheetsForClient: "fetch.all.pending.approval.timesheets.for.client"
8033
8297
  };
8034
8298
 
8035
8299
  // src/modules/timesheet/dto/create-freelancer-timesheet.dto.ts
@@ -8131,12 +8395,17 @@ __decorateClass([
8131
8395
  // src/modules/invoice/pattern/pattern.ts
8132
8396
  var INVOICE_PATTERN = {
8133
8397
  createInvoice: "invoice.create",
8134
- fetchInvoicesForFreelancer: "fetch.Invoices.For.Freelancer",
8135
- fetchInvoicesForClient: "fetch.Invoices.For.Client",
8136
- fetchInvoiceById: "fetch.Invoice.By.Id",
8137
- updateInvoiceStatus: "update.Invoice.Status",
8138
- fetchAnalyticsForClient: "fetch.Analytics.For.Client",
8139
- fetchAnalyticsForFreelancer: "fetch.Analytics.For.Freelancer"
8398
+ fetchInvoicesForFreelancer: "fetch.invoices.for.freelancer",
8399
+ fetchInvoicesForClient: "fetch.invoices.for.client",
8400
+ fetchInvoiceById: "fetch.invoice.by.id",
8401
+ updateInvoiceStatus: "update.invoice.status",
8402
+ fetchAnalyticsForClient: "fetch.analytics.for.client",
8403
+ fetchAnalyticsForFreelancer: "fetch.analytics.for.freelancer",
8404
+ fetchFreelancerDropdownForClient: "fetch.freelancer.dropdown.for.client",
8405
+ fetchInvoicesSummeryForClient: "fetch.invoices.summery.for.client",
8406
+ fetchDashboardAnalyticsForClient: "fetch.dashboard.analytics.for.client",
8407
+ fetchPaymentDetailsByInvoiceId: "fetch.payment.details.by.invoiceId",
8408
+ fetchInvoiceReportsForClient: "fetch.invoicer.reports.for.client"
8140
8409
  };
8141
8410
 
8142
8411
  // src/modules/invoice/dto/update-invoice-status.dto.ts
@@ -8150,6 +8419,13 @@ __decorateClass([
8150
8419
  })
8151
8420
  ], UpdateInvoiceStatusDto.prototype, "status", 2);
8152
8421
 
8422
+ // src/modules/dispute/pattern/pattern.ts
8423
+ var DISPUTE_PATTERN = {
8424
+ fetchDisputes: "fetch.disputes",
8425
+ fetchDisputeById: "fetch.dispute.by.id",
8426
+ createDispute: "create.dispute"
8427
+ };
8428
+
8153
8429
  // src/modules/dispute/dto/create-dispute.dto.ts
8154
8430
  var import_class_validator81 = require("class-validator");
8155
8431
  var import_class_transformer18 = require("class-transformer");
@@ -8199,6 +8475,13 @@ __decorateClass([
8199
8475
  })
8200
8476
  ], CreateDisputeDto.prototype, "dynamicFields", 2);
8201
8477
 
8478
+ // src/modules/senseloaf/pattern/pattern.ts
8479
+ var SENSELOAF_PATTERN = {
8480
+ handleAiAssessmentDetails: "handle.ai.assessment.details",
8481
+ handelAiAssessmentCreation: "handel.ai.assessment.creation",
8482
+ handleJdParsing: "handle.jd.parsing"
8483
+ };
8484
+
8202
8485
  // src/modules/senseloaf/dto/ai-interview-question-generate.dto.ts
8203
8486
  var import_class_validator82 = require("class-validator");
8204
8487
  var AiInterviewQuestionGenerateDto = class {
@@ -8210,6 +8493,47 @@ __decorateClass([
8210
8493
  (0, import_class_validator82.IsNotEmpty)({ message: "Please enter number of questions." })
8211
8494
  ], AiInterviewQuestionGenerateDto.prototype, "numQuestions", 2);
8212
8495
 
8496
+ // src/modules/commission/pattern/pattern.ts
8497
+ var COMMISSION_PATTERN = {
8498
+ fetchCommission: "fetch.commission"
8499
+ };
8500
+
8501
+ // src/modules/hiring/pattern/pattern.ts
8502
+ var HIRING_PATTERN = {
8503
+ fetchAllHiredFreelancerForClient: "fetch.all.hired.freelancer.for.client",
8504
+ fetchAllHiredClientForFreelancer: "fetch.all.hired.client.for.freelancer",
8505
+ createHiring: "create.hiring"
8506
+ };
8507
+
8508
+ // src/modules/llm/pattern/pattern.ts
8509
+ var LLM_PATTERN = {
8510
+ handleMcqGeneration: "handle.mcq.generation"
8511
+ };
8512
+
8513
+ // src/modules/skill/pattern/pattern.ts
8514
+ var SKILL_PATTERN = {
8515
+ fetchSkillsDropdown: "fetch.skills.dropdown",
8516
+ fetchSkillsDropdownV2: "fetch.skills.dropdown.v2"
8517
+ };
8518
+
8519
+ // src/modules/user/signature/pattern/pattern.ts
8520
+ var SIGNATURE_PATTERN = {
8521
+ fetchSignatures: "fetch.signatures",
8522
+ saveSignature: "save.signature"
8523
+ };
8524
+
8525
+ // src/modules/wallet/pattern/pattern.ts
8526
+ var WALLET_PATTERN = {
8527
+ fetchConnectAccountDetails: "fetch.connect.account.details",
8528
+ fetchWalletTransactions: "fetch.wallet.transactions",
8529
+ addTopupEscrowAmount: "add.topup.escrow.amount",
8530
+ debitCommissionFromClientForFTEHiring: "debit.commission.from.client.for.fte.hiring"
8531
+ };
8532
+ var WALLET_ADMIN_PATTERN = {
8533
+ fetchAdminWalletBalance: "fetch.admin.wallet.balance",
8534
+ fetchAdminWalletTransactions: "fetch.admin.wallet.transactions"
8535
+ };
8536
+
8213
8537
  // src/adapters/tcp/user.tcp.adapter.ts
8214
8538
  var import_dotenv = require("dotenv");
8215
8539
  var import_microservices = require("@nestjs/microservices");
@@ -9240,8 +9564,10 @@ RecommendationWeightageConfig = __decorateClass([
9240
9564
  CALENDLY_PATTERN,
9241
9565
  CITY_PATTERN,
9242
9566
  CLIENT_ADMIN_PATTERNS,
9567
+ CLIENT_CANDIDATE_PREFERENCE_PATTERN,
9243
9568
  CLIENT_PROFILE_PATTERN,
9244
9569
  CMS_PATTERNS,
9570
+ COMMISSION_PATTERN,
9245
9571
  COMPANY_MEMBERS_PATTERNS,
9246
9572
  COMPANY_ROLES_PATTERNS,
9247
9573
  CONTRACT_PATTERN,
@@ -9294,6 +9620,7 @@ RecommendationWeightageConfig = __decorateClass([
9294
9620
  CreateQuestionDto,
9295
9621
  CreateRatingDto,
9296
9622
  CreateSubAdminDto,
9623
+ DISPUTE_PATTERN,
9297
9624
  Dispute,
9298
9625
  DisputeStatusEnum,
9299
9626
  DocumentType,
@@ -9314,6 +9641,7 @@ RecommendationWeightageConfig = __decorateClass([
9314
9641
  F2fInterviewRescheduleRequestStatusEnum,
9315
9642
  F2fInterviewScheduleStatusEnum,
9316
9643
  F2fInterviewStatusEnum,
9644
+ FREELANCER_ASSESSMENT_REQUEST_PATTERN,
9317
9645
  FREELANCER_DECLARATION_PATTERN,
9318
9646
  FREELANCER_EDUCATION_PATTERN,
9319
9647
  FREELANCER_EXPERIENCE_PATTERN,
@@ -9352,10 +9680,12 @@ RecommendationWeightageConfig = __decorateClass([
9352
9680
  FreelancerUploadResumeDto,
9353
9681
  FreelancerWorkShowcaseDto,
9354
9682
  FromUsOn,
9683
+ HIRING_PATTERN,
9355
9684
  HiredFreelancerNatureOfWorkEnum,
9356
9685
  Hiring,
9357
9686
  HiringCommissionTypeEnum,
9358
9687
  INTERVIEW_INVITE_PATTERN,
9688
+ INTERVIEW_PATTERN,
9359
9689
  INVOICE_PATTERN,
9360
9690
  InitiatorTypeEnum,
9361
9691
  Interview,
@@ -9370,6 +9700,8 @@ RecommendationWeightageConfig = __decorateClass([
9370
9700
  InvoicePaymentStatusEnum,
9371
9701
  InvoiceStatusEnum,
9372
9702
  InvoiceTypeEnum,
9703
+ JOB_ADMIN_PATTERN,
9704
+ JOB_APPLICATION_PATTERN,
9373
9705
  JOB_PATTERN,
9374
9706
  JOB_ROLE_PATTERN,
9375
9707
  Job,
@@ -9399,6 +9731,7 @@ RecommendationWeightageConfig = __decorateClass([
9399
9731
  JobTCPAdapter,
9400
9732
  KindOfHire,
9401
9733
  LEAD_PATTERN,
9734
+ LLM_PATTERN,
9402
9735
  Lead,
9403
9736
  LoginDto,
9404
9737
  LoginViaOtpDto,
@@ -9438,6 +9771,9 @@ RecommendationWeightageConfig = __decorateClass([
9438
9771
  ResetPasswordDto,
9439
9772
  ResetPasswordTokenValidationDto,
9440
9773
  ResultStatusEnum,
9774
+ SENSELOAF_PATTERN,
9775
+ SIGNATURE_PATTERN,
9776
+ SKILL_PATTERN,
9441
9777
  STATE_PATTERN,
9442
9778
  STRIPE_PATTERN,
9443
9779
  SUBADMIN_PATTERN,
@@ -9503,12 +9839,15 @@ RecommendationWeightageConfig = __decorateClass([
9503
9839
  UserTCPAdapter,
9504
9840
  VerifyGuestOtpDto,
9505
9841
  VerifyGuestOtpPurposeEnum,
9842
+ WALLET_ADMIN_PATTERN,
9843
+ WALLET_PATTERN,
9506
9844
  Wallet,
9507
9845
  WalletAccountTypeEnum,
9508
9846
  WalletOnboardingStatusEnum,
9509
9847
  WalletTransaction,
9510
9848
  WalletTransactionStatusEnum,
9511
9849
  WalletTransactionTypeEnum,
9850
+ ZOOM_PATTERN,
9512
9851
  ZoomMeetingLog,
9513
9852
  typeOfExperienceDtoEnumV2,
9514
9853
  typeOfExperienceEnum