@experts_hub/shared 1.0.562 → 1.0.566

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -144,6 +144,7 @@ declare const ONBOARDING_PATTERN: {
144
144
  handleFreelancerDeveloperPreference: string;
145
145
  handleFreelancerProfileQuestion: string;
146
146
  handleFreelancerWorkShowcase: string;
147
+ verifyOnboardingToken: string;
147
148
  handleClientAccountCreation: string;
148
149
  handleClientProfileQuestion: string;
149
150
  changeFreelancerPassword: string;
@@ -234,6 +235,10 @@ declare class ClientCreateAccountDto {
234
235
  onBoardedBy: string;
235
236
  }
236
237
 
238
+ declare const MAINTENANCE_PATTERN: {
239
+ truncateData: string;
240
+ };
241
+
237
242
  declare const RESUME_PARSER_PATTERN: {
238
243
  handleResumeParsing: string;
239
244
  handleResumeParsingByUrl: string;
@@ -243,6 +248,8 @@ declare const RESUME_PARSER_PATTERN: {
243
248
 
244
249
  declare const SUBADMIN_PATTERN: {
245
250
  fetchSubAdmins: string;
251
+ exportUsersForGetStream: string;
252
+ handleDailyExport: string;
246
253
  fetchDeletedSubAdmins: string;
247
254
  fetchSubAdminDropdown: string;
248
255
  findSubAdminById: string;
@@ -368,6 +375,12 @@ declare const CLIENT_PROFILE_PATTERN: {
368
375
  fetchClientServiceAgreementStatus: string;
369
376
  fetchRecommendedFreelancers: string;
370
377
  fetchRecommendedFreelancersV2: string;
378
+ fetchRecommendedFreelancersDropdownV2: string;
379
+ clientDataAlteration: string;
380
+ fetchFreelancersForComparison: string;
381
+ deleteClientProfilePic: string;
382
+ fetchFreelancerInfoForChat: string;
383
+ fetchClientAndFreelancerDetailsForChatChannelCreation: string;
371
384
  };
372
385
 
373
386
  declare class UpdateCompanyProfileDto {
@@ -500,6 +513,7 @@ declare const JOB_PATTERN: {
500
513
  fetchJobDescription: string;
501
514
  updateJobDescription: string;
502
515
  updateJobStatus: string;
516
+ closeJob: string;
503
517
  searchJobsByRoleAndSkills: string;
504
518
  handleBulkRecommendationAdjustment: string;
505
519
  refreshJobFreelancerRecommendationView: string;
@@ -518,16 +532,11 @@ declare const JOB_PATTERN: {
518
532
  fetchRecommendedFreelancersForJob: string;
519
533
  fetchRecommendedFreelancersForJobV2: string;
520
534
  handleJobViwedCountIncrement: string;
535
+ fetchJobByIdForTimesheet: string;
521
536
  jobDataSetup: string;
522
537
  fetchJobsForComparison: string;
523
538
  fetchJobSkillDropdownForClient: string;
524
539
  };
525
- declare const JOB_ADMIN_PATTERN: {
526
- adminFetchJobByIdV2: string;
527
- adminExportJobsToCSV: string;
528
- adminFetchJobDescription: string;
529
- adminUpdateJobDescription: string;
530
- };
531
540
  declare const JOB_APPLICATION_PATTERN: {
532
541
  fetchJobApplicationCountAsPerStatusByJobId: string;
533
542
  fetchJobApplicationsByJobId: string;
@@ -690,8 +699,11 @@ declare const PROFILE_PATTERN: {
690
699
  fetchAppliedJobsOfFreelancer: string;
691
700
  fetchAppliedJobsDropdownForFreelancer: string;
692
701
  countOfActiveFreelancers: string;
702
+ findUsersByUuids: string;
693
703
  markFollowedOnLinkedIn: string;
694
704
  fetchFreelancerResumeByUuId: string;
705
+ fetchClientByIdForContract: string;
706
+ fetchFreelancerByIdForContract: string;
695
707
  freelancerDataSetup: string;
696
708
  freelancerEmailAndMobileMasking: string;
697
709
  fetchClientInfoForChat: string;
@@ -809,6 +821,27 @@ declare const NOTIFICATION_PATTERN: {
809
821
  handleBusinessAccountSetPasswordNotification: string;
810
822
  handleFreelancerAccountSetPasswordNotification: string;
811
823
  handleSendBulkInterviewInvites: string;
824
+ handleFreelancerAccountCreatedNotification: string;
825
+ handleSetPasswordLinkNotification: string;
826
+ handleLeadNotificationToAdmin: string;
827
+ handleDailyFreelancerReportToStakeHolders: string;
828
+ handleAiAssessmentLinkNotification: string;
829
+ handleRecordingProcessingErrorNotification: string;
830
+ handleResumeParserErrorNotification: string;
831
+ };
832
+ declare const SMS_PATTERN: {
833
+ sendTest: string;
834
+ queueStats: string;
835
+ cleanQueue: string;
836
+ status: string;
837
+ accountInfo: string;
838
+ };
839
+ declare const EMAIL_PATTERN: {
840
+ sendTest: string;
841
+ send: string;
842
+ sendTemplate: string;
843
+ getQueueStats: string;
844
+ cleanQueue: string;
812
845
  };
813
846
 
814
847
  declare const RATING_PATTERN: {
@@ -2887,6 +2920,10 @@ declare const ADMIN_JOB_PATTERN: {
2887
2920
  adminDeleteJob: string;
2888
2921
  adminCountJob: string;
2889
2922
  adminFetchGraphCount: string;
2923
+ adminFetchJobByIdV2: string;
2924
+ adminExportJobsToCSV: string;
2925
+ adminFetchJobDescription: string;
2926
+ adminUpdateJobDescription: string;
2890
2927
  };
2891
2928
 
2892
2929
  declare enum JobLocationEnumDto {
@@ -3039,6 +3076,7 @@ declare const ADMIN_ROLE_PATTERN: {
3039
3076
  adminUpdateRole: string;
3040
3077
  adminDeleteRole: string;
3041
3078
  attachPermissionsToRole: string;
3079
+ fetchAdminRolePermissions: string;
3042
3080
  };
3043
3081
 
3044
3082
  declare class CreateAdminRoleDto {
@@ -3128,6 +3166,7 @@ declare const INTERVIEW_PATTERN: {
3128
3166
  updateInterviewSetting: string;
3129
3167
  markInterviewAsPublished: string;
3130
3168
  deleteInterview: string;
3169
+ fetchInterviewCountAsPerStatus: string;
3131
3170
  };
3132
3171
 
3133
3172
  declare enum CandidateType {
@@ -3281,6 +3320,14 @@ declare const TIMESHEET_CLIENT_PATTERN: {
3281
3320
  fetchAllSubmittedTimesheetsForClient: string;
3282
3321
  fetchAllSendBackTimesheetsForClient: string;
3283
3322
  fetchAllPendingApprovalTimesheetsForClient: string;
3323
+ fetchAllApprovedTimesheetsForClient: string;
3324
+ fetchFreelancerWeeklyCardSummeryForClient: string;
3325
+ fetchFreelancerCardSummeryByTimesheetLineIdForClient: string;
3326
+ fetchFreelancerTimesheetsByDateRangeForClient: string;
3327
+ sendBackFreelancerTimesheetForClient: string;
3328
+ fetchSubmissionHistoryForClient: string;
3329
+ fetchFreelancerDropDownForClient: string;
3330
+ createDefaultTimesheetLineOnContractSigned: string;
3284
3331
  };
3285
3332
 
3286
3333
  declare class CreateFreelancerTimesheetDto {
@@ -3311,6 +3358,8 @@ declare class UpdateFreelancerTimesheetDto {
3311
3358
 
3312
3359
  declare const INVOICE_PATTERN: {
3313
3360
  createInvoice: string;
3361
+ generateWeeklyInvoice: string;
3362
+ generateHiringInvoiceOfFTE: string;
3314
3363
  fetchInvoicesForFreelancer: string;
3315
3364
  fetchInvoicesForClient: string;
3316
3365
  fetchInvoiceById: string;
@@ -3382,6 +3431,8 @@ declare const SIGNATURE_PATTERN: {
3382
3431
  declare const WALLET_PATTERN: {
3383
3432
  fetchConnectAccountDetails: string;
3384
3433
  fetchWalletTransactions: string;
3434
+ escrowFund: string;
3435
+ transferEscrowAmountToFreelancerFromClient: string;
3385
3436
  addTopupEscrowAmount: string;
3386
3437
  debitCommissionFromClientForFTEHiring: string;
3387
3438
  };
@@ -3606,4 +3657,4 @@ declare class RecommendationWeightageConfig extends BaseEntity {
3606
3657
  isActive: boolean;
3607
3658
  }
3608
3659
 
3609
- export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, AI_INTERVIEW_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminJobBasicInformationV2Dto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentStatusEnum, AiInterview, AiInterviewQuestionGenerateDto, AiInterviewRescheduleRequest, AiInterviewRescheduleRequestStatusEnum, AiInterviewStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, AssessmentRequestStatusEnum, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CALENDLY_PATTERN, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_CANDIDATE_PREFERENCE_PATTERN, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMMISSION_PATTERN, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, CONTRACT_PATTERN, COUNTRY_PATTERN, CalendlyMeetingLog, CandidateType, CaseStudyDto, CategoryEmum, CategoryEmumDto, ChatRMQAdapter, ChatTCPAdapter, City, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, CreateAIInterviewRescheduleRequestDto, CreateAdminRoleDto, CreateCheckoutSessionDto, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateDisputeDto, CreateF2FInterviewDirectDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateFreelancerTimesheetDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DISPUTE_PATTERN, Dispute, DisputeStatusEnum, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, EmploymentTypeV2, EscrowWallet, EscrowWalletTransaction, EscrowWalletTransactionForEnum, EscrowWalletTransactionTypeEnum, ExperienceDto, F2FInterview, F2FInterviewSchedule, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, F2fInterviewScheduleStatusEnum, F2fInterviewStatusEnum, FREELANCER_ASSESSMENT_REQUEST_PATTERN, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, Feature, ForgotPasswordDto, FreelancerAssessment, FreelancerAssessmentRequest, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerResume, FreelancerSkill, FreelancerSkillCategoryEnum, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, HIRING_PATTERN, HiredFreelancerNatureOfWorkEnum, Hiring, HiringCommissionTypeEnum, type IAddRatingPayload, type IAttachPermissionsToClientResponse, type IAttachPermissionsToCompanyMemberResponse, type IAttachPermissionsToCompanyRoleResponse, type IAttachPermissionsToFreelancerResponse, type IAttachPermissionsToSubAdminResponse, type ICreateClientPayload, type ICreateClientResponse, type ICreateCompanyMemberPayload, type ICreateCompanyMemberResponse, type ICreateCompanyRolePayload, type ICreateCompanyRoleResponse, type ICreateFreelancerPayload, type ICreateFreelancerResponse, type ICreateRatingResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteClientResponse, type IDeleteCompanyMemberResponse, type IDeleteCompanyRoleResponse, type IDeleteFreelancerResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchClientsResponse, type IFetchCmsQuery, type IFetchCompanyMemberByIdQuery, type IFetchCompanyMemberByIdResponse, type IFetchCompanyMemberQuery, type IFetchCompanyMembersResponse, type IFetchCompanyRoleByIdQuery, type IFetchCompanyRoleByIdResponse, type IFetchCompanyRoleQuery, type IFetchCompanyRolesResponse, type IFetchFreelancersResponse, type IFetchPlanResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, INTERVIEW_INVITE_PATTERN, INTERVIEW_PATTERN, INVOICE_PATTERN, type IToggleCompanyMemberVisibilityPayload, type IToggleCompanyMemberVisibilityResponse, type IToggleCompanyRoleVisibilityPayload, type IToggleCompanyRoleVisibilityResponse, type IUpdateClientAccountStatusPayload, type IUpdateClientAccountStatusResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateClientResponse, type IUpdateCompanyMemberPayload, type IUpdateCompanyMemberResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateFreelancerPayload, type IUpdateFreelancerResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, InitiatorTypeEnum, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewQuestionType, InterviewSkill, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_ADMIN_PATTERN, JOB_APPLICATION_PATTERN, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobBasicInformationV2Dto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationAdminDto, JobLocationDto, JobLocationEnum, JobLocationEnumDto, JobLocationEnumV2, JobLocationEnums, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, LLM_PATTERN, Lead, LoginDto, LoginViaOtpDto, LoginViaOtpScopeEnum, LogoutDto, McqStatusEnum, ModeOfHire, ModeOfWork, NOTIFICATION_PATTERN, NatureOfWork, NatureOfWorkDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, RESUME_PARSER_PATTERN, Rating, RatingTypeEnum, RecommendationWeightageConfig, RefreshDto, RefreshToken, RejectAIInterviewRescheduleRequestDto, ResetPasswordDto, ResetPasswordTokenValidationDto, ResultStatusEnum, SENSELOAF_PATTERN, SIGNATURE_PATTERN, SKILL_PATTERN, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$3 as ScopeEnum, SelectedAnswerTypeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SendLoginOtpDto, SendLoginOtpPurposeEnum, SendLoginOtpScopeEnum, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, State, Step, StepCompletedEnumV2, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInvoiceStatusDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum, WALLET_ADMIN_PATTERN, WALLET_PATTERN, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZOOM_PATTERN, ZoomMeetingLog, typeOfExperienceDtoEnumV2, typeOfExperienceEnum };
3660
+ export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, AI_INTERVIEW_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminJobBasicInformationV2Dto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentStatusEnum, AiInterview, AiInterviewQuestionGenerateDto, AiInterviewRescheduleRequest, AiInterviewRescheduleRequestStatusEnum, AiInterviewStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, AssessmentRequestStatusEnum, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CALENDLY_PATTERN, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_CANDIDATE_PREFERENCE_PATTERN, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMMISSION_PATTERN, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, CONTRACT_PATTERN, COUNTRY_PATTERN, CalendlyMeetingLog, CandidateType, CaseStudyDto, CategoryEmum, CategoryEmumDto, ChatRMQAdapter, ChatTCPAdapter, City, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, CreateAIInterviewRescheduleRequestDto, CreateAdminRoleDto, CreateCheckoutSessionDto, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateDisputeDto, CreateF2FInterviewDirectDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateFreelancerTimesheetDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DISPUTE_PATTERN, Dispute, DisputeStatusEnum, DocumentType, DocumentTypeEnum, DurationTypeEnum, EMAIL_PATTERN, EducationDto, EmploymentType, EmploymentTypeV2, EscrowWallet, EscrowWalletTransaction, EscrowWalletTransactionForEnum, EscrowWalletTransactionTypeEnum, ExperienceDto, F2FInterview, F2FInterviewSchedule, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, F2fInterviewScheduleStatusEnum, F2fInterviewStatusEnum, FREELANCER_ASSESSMENT_REQUEST_PATTERN, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, Feature, ForgotPasswordDto, FreelancerAssessment, FreelancerAssessmentRequest, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerResume, FreelancerSkill, FreelancerSkillCategoryEnum, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, HIRING_PATTERN, HiredFreelancerNatureOfWorkEnum, Hiring, HiringCommissionTypeEnum, type IAddRatingPayload, type IAttachPermissionsToClientResponse, type IAttachPermissionsToCompanyMemberResponse, type IAttachPermissionsToCompanyRoleResponse, type IAttachPermissionsToFreelancerResponse, type IAttachPermissionsToSubAdminResponse, type ICreateClientPayload, type ICreateClientResponse, type ICreateCompanyMemberPayload, type ICreateCompanyMemberResponse, type ICreateCompanyRolePayload, type ICreateCompanyRoleResponse, type ICreateFreelancerPayload, type ICreateFreelancerResponse, type ICreateRatingResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteClientResponse, type IDeleteCompanyMemberResponse, type IDeleteCompanyRoleResponse, type IDeleteFreelancerResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchClientsResponse, type IFetchCmsQuery, type IFetchCompanyMemberByIdQuery, type IFetchCompanyMemberByIdResponse, type IFetchCompanyMemberQuery, type IFetchCompanyMembersResponse, type IFetchCompanyRoleByIdQuery, type IFetchCompanyRoleByIdResponse, type IFetchCompanyRoleQuery, type IFetchCompanyRolesResponse, type IFetchFreelancersResponse, type IFetchPlanResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, INTERVIEW_INVITE_PATTERN, INTERVIEW_PATTERN, INVOICE_PATTERN, type IToggleCompanyMemberVisibilityPayload, type IToggleCompanyMemberVisibilityResponse, type IToggleCompanyRoleVisibilityPayload, type IToggleCompanyRoleVisibilityResponse, type IUpdateClientAccountStatusPayload, type IUpdateClientAccountStatusResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateClientResponse, type IUpdateCompanyMemberPayload, type IUpdateCompanyMemberResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateFreelancerPayload, type IUpdateFreelancerResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, InitiatorTypeEnum, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewQuestionType, InterviewSkill, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_APPLICATION_PATTERN, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobBasicInformationV2Dto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationAdminDto, JobLocationDto, JobLocationEnum, JobLocationEnumDto, JobLocationEnumV2, JobLocationEnums, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, LLM_PATTERN, Lead, LoginDto, LoginViaOtpDto, LoginViaOtpScopeEnum, LogoutDto, MAINTENANCE_PATTERN, McqStatusEnum, ModeOfHire, ModeOfWork, NOTIFICATION_PATTERN, NatureOfWork, NatureOfWorkDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, RESUME_PARSER_PATTERN, Rating, RatingTypeEnum, RecommendationWeightageConfig, RefreshDto, RefreshToken, RejectAIInterviewRescheduleRequestDto, ResetPasswordDto, ResetPasswordTokenValidationDto, ResultStatusEnum, SENSELOAF_PATTERN, SIGNATURE_PATTERN, SKILL_PATTERN, SMS_PATTERN, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$3 as ScopeEnum, SelectedAnswerTypeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SendLoginOtpDto, SendLoginOtpPurposeEnum, SendLoginOtpScopeEnum, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, State, Step, StepCompletedEnumV2, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInvoiceStatusDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum, WALLET_ADMIN_PATTERN, WALLET_PATTERN, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZOOM_PATTERN, ZoomMeetingLog, typeOfExperienceDtoEnumV2, typeOfExperienceEnum };
package/dist/index.d.ts CHANGED
@@ -144,6 +144,7 @@ declare const ONBOARDING_PATTERN: {
144
144
  handleFreelancerDeveloperPreference: string;
145
145
  handleFreelancerProfileQuestion: string;
146
146
  handleFreelancerWorkShowcase: string;
147
+ verifyOnboardingToken: string;
147
148
  handleClientAccountCreation: string;
148
149
  handleClientProfileQuestion: string;
149
150
  changeFreelancerPassword: string;
@@ -234,6 +235,10 @@ declare class ClientCreateAccountDto {
234
235
  onBoardedBy: string;
235
236
  }
236
237
 
238
+ declare const MAINTENANCE_PATTERN: {
239
+ truncateData: string;
240
+ };
241
+
237
242
  declare const RESUME_PARSER_PATTERN: {
238
243
  handleResumeParsing: string;
239
244
  handleResumeParsingByUrl: string;
@@ -243,6 +248,8 @@ declare const RESUME_PARSER_PATTERN: {
243
248
 
244
249
  declare const SUBADMIN_PATTERN: {
245
250
  fetchSubAdmins: string;
251
+ exportUsersForGetStream: string;
252
+ handleDailyExport: string;
246
253
  fetchDeletedSubAdmins: string;
247
254
  fetchSubAdminDropdown: string;
248
255
  findSubAdminById: string;
@@ -368,6 +375,12 @@ declare const CLIENT_PROFILE_PATTERN: {
368
375
  fetchClientServiceAgreementStatus: string;
369
376
  fetchRecommendedFreelancers: string;
370
377
  fetchRecommendedFreelancersV2: string;
378
+ fetchRecommendedFreelancersDropdownV2: string;
379
+ clientDataAlteration: string;
380
+ fetchFreelancersForComparison: string;
381
+ deleteClientProfilePic: string;
382
+ fetchFreelancerInfoForChat: string;
383
+ fetchClientAndFreelancerDetailsForChatChannelCreation: string;
371
384
  };
372
385
 
373
386
  declare class UpdateCompanyProfileDto {
@@ -500,6 +513,7 @@ declare const JOB_PATTERN: {
500
513
  fetchJobDescription: string;
501
514
  updateJobDescription: string;
502
515
  updateJobStatus: string;
516
+ closeJob: string;
503
517
  searchJobsByRoleAndSkills: string;
504
518
  handleBulkRecommendationAdjustment: string;
505
519
  refreshJobFreelancerRecommendationView: string;
@@ -518,16 +532,11 @@ declare const JOB_PATTERN: {
518
532
  fetchRecommendedFreelancersForJob: string;
519
533
  fetchRecommendedFreelancersForJobV2: string;
520
534
  handleJobViwedCountIncrement: string;
535
+ fetchJobByIdForTimesheet: string;
521
536
  jobDataSetup: string;
522
537
  fetchJobsForComparison: string;
523
538
  fetchJobSkillDropdownForClient: string;
524
539
  };
525
- declare const JOB_ADMIN_PATTERN: {
526
- adminFetchJobByIdV2: string;
527
- adminExportJobsToCSV: string;
528
- adminFetchJobDescription: string;
529
- adminUpdateJobDescription: string;
530
- };
531
540
  declare const JOB_APPLICATION_PATTERN: {
532
541
  fetchJobApplicationCountAsPerStatusByJobId: string;
533
542
  fetchJobApplicationsByJobId: string;
@@ -690,8 +699,11 @@ declare const PROFILE_PATTERN: {
690
699
  fetchAppliedJobsOfFreelancer: string;
691
700
  fetchAppliedJobsDropdownForFreelancer: string;
692
701
  countOfActiveFreelancers: string;
702
+ findUsersByUuids: string;
693
703
  markFollowedOnLinkedIn: string;
694
704
  fetchFreelancerResumeByUuId: string;
705
+ fetchClientByIdForContract: string;
706
+ fetchFreelancerByIdForContract: string;
695
707
  freelancerDataSetup: string;
696
708
  freelancerEmailAndMobileMasking: string;
697
709
  fetchClientInfoForChat: string;
@@ -809,6 +821,27 @@ declare const NOTIFICATION_PATTERN: {
809
821
  handleBusinessAccountSetPasswordNotification: string;
810
822
  handleFreelancerAccountSetPasswordNotification: string;
811
823
  handleSendBulkInterviewInvites: string;
824
+ handleFreelancerAccountCreatedNotification: string;
825
+ handleSetPasswordLinkNotification: string;
826
+ handleLeadNotificationToAdmin: string;
827
+ handleDailyFreelancerReportToStakeHolders: string;
828
+ handleAiAssessmentLinkNotification: string;
829
+ handleRecordingProcessingErrorNotification: string;
830
+ handleResumeParserErrorNotification: string;
831
+ };
832
+ declare const SMS_PATTERN: {
833
+ sendTest: string;
834
+ queueStats: string;
835
+ cleanQueue: string;
836
+ status: string;
837
+ accountInfo: string;
838
+ };
839
+ declare const EMAIL_PATTERN: {
840
+ sendTest: string;
841
+ send: string;
842
+ sendTemplate: string;
843
+ getQueueStats: string;
844
+ cleanQueue: string;
812
845
  };
813
846
 
814
847
  declare const RATING_PATTERN: {
@@ -2887,6 +2920,10 @@ declare const ADMIN_JOB_PATTERN: {
2887
2920
  adminDeleteJob: string;
2888
2921
  adminCountJob: string;
2889
2922
  adminFetchGraphCount: string;
2923
+ adminFetchJobByIdV2: string;
2924
+ adminExportJobsToCSV: string;
2925
+ adminFetchJobDescription: string;
2926
+ adminUpdateJobDescription: string;
2890
2927
  };
2891
2928
 
2892
2929
  declare enum JobLocationEnumDto {
@@ -3039,6 +3076,7 @@ declare const ADMIN_ROLE_PATTERN: {
3039
3076
  adminUpdateRole: string;
3040
3077
  adminDeleteRole: string;
3041
3078
  attachPermissionsToRole: string;
3079
+ fetchAdminRolePermissions: string;
3042
3080
  };
3043
3081
 
3044
3082
  declare class CreateAdminRoleDto {
@@ -3128,6 +3166,7 @@ declare const INTERVIEW_PATTERN: {
3128
3166
  updateInterviewSetting: string;
3129
3167
  markInterviewAsPublished: string;
3130
3168
  deleteInterview: string;
3169
+ fetchInterviewCountAsPerStatus: string;
3131
3170
  };
3132
3171
 
3133
3172
  declare enum CandidateType {
@@ -3281,6 +3320,14 @@ declare const TIMESHEET_CLIENT_PATTERN: {
3281
3320
  fetchAllSubmittedTimesheetsForClient: string;
3282
3321
  fetchAllSendBackTimesheetsForClient: string;
3283
3322
  fetchAllPendingApprovalTimesheetsForClient: string;
3323
+ fetchAllApprovedTimesheetsForClient: string;
3324
+ fetchFreelancerWeeklyCardSummeryForClient: string;
3325
+ fetchFreelancerCardSummeryByTimesheetLineIdForClient: string;
3326
+ fetchFreelancerTimesheetsByDateRangeForClient: string;
3327
+ sendBackFreelancerTimesheetForClient: string;
3328
+ fetchSubmissionHistoryForClient: string;
3329
+ fetchFreelancerDropDownForClient: string;
3330
+ createDefaultTimesheetLineOnContractSigned: string;
3284
3331
  };
3285
3332
 
3286
3333
  declare class CreateFreelancerTimesheetDto {
@@ -3311,6 +3358,8 @@ declare class UpdateFreelancerTimesheetDto {
3311
3358
 
3312
3359
  declare const INVOICE_PATTERN: {
3313
3360
  createInvoice: string;
3361
+ generateWeeklyInvoice: string;
3362
+ generateHiringInvoiceOfFTE: string;
3314
3363
  fetchInvoicesForFreelancer: string;
3315
3364
  fetchInvoicesForClient: string;
3316
3365
  fetchInvoiceById: string;
@@ -3382,6 +3431,8 @@ declare const SIGNATURE_PATTERN: {
3382
3431
  declare const WALLET_PATTERN: {
3383
3432
  fetchConnectAccountDetails: string;
3384
3433
  fetchWalletTransactions: string;
3434
+ escrowFund: string;
3435
+ transferEscrowAmountToFreelancerFromClient: string;
3385
3436
  addTopupEscrowAmount: string;
3386
3437
  debitCommissionFromClientForFTEHiring: string;
3387
3438
  };
@@ -3606,4 +3657,4 @@ declare class RecommendationWeightageConfig extends BaseEntity {
3606
3657
  isActive: boolean;
3607
3658
  }
3608
3659
 
3609
- export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, AI_INTERVIEW_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminJobBasicInformationV2Dto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentStatusEnum, AiInterview, AiInterviewQuestionGenerateDto, AiInterviewRescheduleRequest, AiInterviewRescheduleRequestStatusEnum, AiInterviewStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, AssessmentRequestStatusEnum, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CALENDLY_PATTERN, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_CANDIDATE_PREFERENCE_PATTERN, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMMISSION_PATTERN, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, CONTRACT_PATTERN, COUNTRY_PATTERN, CalendlyMeetingLog, CandidateType, CaseStudyDto, CategoryEmum, CategoryEmumDto, ChatRMQAdapter, ChatTCPAdapter, City, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, CreateAIInterviewRescheduleRequestDto, CreateAdminRoleDto, CreateCheckoutSessionDto, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateDisputeDto, CreateF2FInterviewDirectDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateFreelancerTimesheetDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DISPUTE_PATTERN, Dispute, DisputeStatusEnum, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, EmploymentTypeV2, EscrowWallet, EscrowWalletTransaction, EscrowWalletTransactionForEnum, EscrowWalletTransactionTypeEnum, ExperienceDto, F2FInterview, F2FInterviewSchedule, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, F2fInterviewScheduleStatusEnum, F2fInterviewStatusEnum, FREELANCER_ASSESSMENT_REQUEST_PATTERN, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, Feature, ForgotPasswordDto, FreelancerAssessment, FreelancerAssessmentRequest, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerResume, FreelancerSkill, FreelancerSkillCategoryEnum, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, HIRING_PATTERN, HiredFreelancerNatureOfWorkEnum, Hiring, HiringCommissionTypeEnum, type IAddRatingPayload, type IAttachPermissionsToClientResponse, type IAttachPermissionsToCompanyMemberResponse, type IAttachPermissionsToCompanyRoleResponse, type IAttachPermissionsToFreelancerResponse, type IAttachPermissionsToSubAdminResponse, type ICreateClientPayload, type ICreateClientResponse, type ICreateCompanyMemberPayload, type ICreateCompanyMemberResponse, type ICreateCompanyRolePayload, type ICreateCompanyRoleResponse, type ICreateFreelancerPayload, type ICreateFreelancerResponse, type ICreateRatingResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteClientResponse, type IDeleteCompanyMemberResponse, type IDeleteCompanyRoleResponse, type IDeleteFreelancerResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchClientsResponse, type IFetchCmsQuery, type IFetchCompanyMemberByIdQuery, type IFetchCompanyMemberByIdResponse, type IFetchCompanyMemberQuery, type IFetchCompanyMembersResponse, type IFetchCompanyRoleByIdQuery, type IFetchCompanyRoleByIdResponse, type IFetchCompanyRoleQuery, type IFetchCompanyRolesResponse, type IFetchFreelancersResponse, type IFetchPlanResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, INTERVIEW_INVITE_PATTERN, INTERVIEW_PATTERN, INVOICE_PATTERN, type IToggleCompanyMemberVisibilityPayload, type IToggleCompanyMemberVisibilityResponse, type IToggleCompanyRoleVisibilityPayload, type IToggleCompanyRoleVisibilityResponse, type IUpdateClientAccountStatusPayload, type IUpdateClientAccountStatusResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateClientResponse, type IUpdateCompanyMemberPayload, type IUpdateCompanyMemberResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateFreelancerPayload, type IUpdateFreelancerResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, InitiatorTypeEnum, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewQuestionType, InterviewSkill, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_ADMIN_PATTERN, JOB_APPLICATION_PATTERN, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobBasicInformationV2Dto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationAdminDto, JobLocationDto, JobLocationEnum, JobLocationEnumDto, JobLocationEnumV2, JobLocationEnums, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, LLM_PATTERN, Lead, LoginDto, LoginViaOtpDto, LoginViaOtpScopeEnum, LogoutDto, McqStatusEnum, ModeOfHire, ModeOfWork, NOTIFICATION_PATTERN, NatureOfWork, NatureOfWorkDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, RESUME_PARSER_PATTERN, Rating, RatingTypeEnum, RecommendationWeightageConfig, RefreshDto, RefreshToken, RejectAIInterviewRescheduleRequestDto, ResetPasswordDto, ResetPasswordTokenValidationDto, ResultStatusEnum, SENSELOAF_PATTERN, SIGNATURE_PATTERN, SKILL_PATTERN, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$3 as ScopeEnum, SelectedAnswerTypeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SendLoginOtpDto, SendLoginOtpPurposeEnum, SendLoginOtpScopeEnum, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, State, Step, StepCompletedEnumV2, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInvoiceStatusDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum, WALLET_ADMIN_PATTERN, WALLET_PATTERN, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZOOM_PATTERN, ZoomMeetingLog, typeOfExperienceDtoEnumV2, typeOfExperienceEnum };
3660
+ export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, AI_INTERVIEW_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminJobBasicInformationV2Dto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentStatusEnum, AiInterview, AiInterviewQuestionGenerateDto, AiInterviewRescheduleRequest, AiInterviewRescheduleRequestStatusEnum, AiInterviewStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, AssessmentRequestStatusEnum, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CALENDLY_PATTERN, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_CANDIDATE_PREFERENCE_PATTERN, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMMISSION_PATTERN, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, CONTRACT_PATTERN, COUNTRY_PATTERN, CalendlyMeetingLog, CandidateType, CaseStudyDto, CategoryEmum, CategoryEmumDto, ChatRMQAdapter, ChatTCPAdapter, City, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, CreateAIInterviewRescheduleRequestDto, CreateAdminRoleDto, CreateCheckoutSessionDto, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateDisputeDto, CreateF2FInterviewDirectDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateFreelancerTimesheetDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DISPUTE_PATTERN, Dispute, DisputeStatusEnum, DocumentType, DocumentTypeEnum, DurationTypeEnum, EMAIL_PATTERN, EducationDto, EmploymentType, EmploymentTypeV2, EscrowWallet, EscrowWalletTransaction, EscrowWalletTransactionForEnum, EscrowWalletTransactionTypeEnum, ExperienceDto, F2FInterview, F2FInterviewSchedule, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, F2fInterviewScheduleStatusEnum, F2fInterviewStatusEnum, FREELANCER_ASSESSMENT_REQUEST_PATTERN, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, Feature, ForgotPasswordDto, FreelancerAssessment, FreelancerAssessmentRequest, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerResume, FreelancerSkill, FreelancerSkillCategoryEnum, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, HIRING_PATTERN, HiredFreelancerNatureOfWorkEnum, Hiring, HiringCommissionTypeEnum, type IAddRatingPayload, type IAttachPermissionsToClientResponse, type IAttachPermissionsToCompanyMemberResponse, type IAttachPermissionsToCompanyRoleResponse, type IAttachPermissionsToFreelancerResponse, type IAttachPermissionsToSubAdminResponse, type ICreateClientPayload, type ICreateClientResponse, type ICreateCompanyMemberPayload, type ICreateCompanyMemberResponse, type ICreateCompanyRolePayload, type ICreateCompanyRoleResponse, type ICreateFreelancerPayload, type ICreateFreelancerResponse, type ICreateRatingResponse, type ICreateSubAdminPayload, type ICreateSubAdminResponse, type IDeleteClientResponse, type IDeleteCompanyMemberResponse, type IDeleteCompanyRoleResponse, type IDeleteFreelancerResponse, type IDeleteSubAdminResponse, type IFetchClientProfileQuery, type IFetchClientProfileResponse, type IFetchClientsResponse, type IFetchCmsQuery, type IFetchCompanyMemberByIdQuery, type IFetchCompanyMemberByIdResponse, type IFetchCompanyMemberQuery, type IFetchCompanyMembersResponse, type IFetchCompanyRoleByIdQuery, type IFetchCompanyRoleByIdResponse, type IFetchCompanyRoleQuery, type IFetchCompanyRolesResponse, type IFetchFreelancersResponse, type IFetchPlanResponse, type IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, INTERVIEW_INVITE_PATTERN, INTERVIEW_PATTERN, INVOICE_PATTERN, type IToggleCompanyMemberVisibilityPayload, type IToggleCompanyMemberVisibilityResponse, type IToggleCompanyRoleVisibilityPayload, type IToggleCompanyRoleVisibilityResponse, type IUpdateClientAccountStatusPayload, type IUpdateClientAccountStatusResponse, type IUpdateClientLogoPayload, type IUpdateClientLogoResponse, type IUpdateClientPasswordPayload, type IUpdateClientPayload, type IUpdateClientProfilePayload, type IUpdateClientProfileResponse, type IUpdateClientResponse, type IUpdateCompanyMemberPayload, type IUpdateCompanyMemberResponse, type IUpdateCompanyRolePayload, type IUpdateCompanyRoleResponse, type IUpdateFreelancerPayload, type IUpdateFreelancerResponse, type IUpdateSubAdminAccountStatusPayload, type IUpdateSubAdminAccountStatusResponse, type IUpdateSubAdminPayload, type IUpdateSubAdminResponse, InitiatorTypeEnum, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewQuestionType, InterviewSkill, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_APPLICATION_PATTERN, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobBasicInformationV2Dto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationAdminDto, JobLocationDto, JobLocationEnum, JobLocationEnumDto, JobLocationEnumV2, JobLocationEnums, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, LLM_PATTERN, Lead, LoginDto, LoginViaOtpDto, LoginViaOtpScopeEnum, LogoutDto, MAINTENANCE_PATTERN, McqStatusEnum, ModeOfHire, ModeOfWork, NOTIFICATION_PATTERN, NatureOfWork, NatureOfWorkDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, RESUME_PARSER_PATTERN, Rating, RatingTypeEnum, RecommendationWeightageConfig, RefreshDto, RefreshToken, RejectAIInterviewRescheduleRequestDto, ResetPasswordDto, ResetPasswordTokenValidationDto, ResultStatusEnum, SENSELOAF_PATTERN, SIGNATURE_PATTERN, SKILL_PATTERN, SMS_PATTERN, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$3 as ScopeEnum, SelectedAnswerTypeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SendGuestOtpScopeEnum, SendLoginOtpDto, SendLoginOtpPurposeEnum, SendLoginOtpScopeEnum, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, State, Step, StepCompletedEnumV2, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateAdminRoleDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInvoiceStatusDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum, WALLET_ADMIN_PATTERN, WALLET_PATTERN, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZOOM_PATTERN, ZoomMeetingLog, typeOfExperienceDtoEnumV2, typeOfExperienceEnum };
package/dist/index.js CHANGED
@@ -128,6 +128,7 @@ __export(index_exports, {
128
128
  DocumentType: () => DocumentType,
129
129
  DocumentTypeEnum: () => DocumentTypeEnum,
130
130
  DurationTypeEnum: () => DurationTypeEnum,
131
+ EMAIL_PATTERN: () => EMAIL_PATTERN,
131
132
  EducationDto: () => EducationDto,
132
133
  EmploymentType: () => EmploymentType,
133
134
  EmploymentTypeV2: () => EmploymentTypeV2,
@@ -202,7 +203,6 @@ __export(index_exports, {
202
203
  InvoicePaymentStatusEnum: () => InvoicePaymentStatusEnum,
203
204
  InvoiceStatusEnum: () => InvoiceStatusEnum,
204
205
  InvoiceTypeEnum: () => InvoiceTypeEnum,
205
- JOB_ADMIN_PATTERN: () => JOB_ADMIN_PATTERN,
206
206
  JOB_APPLICATION_PATTERN: () => JOB_APPLICATION_PATTERN,
207
207
  JOB_PATTERN: () => JOB_PATTERN,
208
208
  JOB_ROLE_PATTERN: () => JOB_ROLE_PATTERN,
@@ -239,6 +239,7 @@ __export(index_exports, {
239
239
  LoginViaOtpDto: () => LoginViaOtpDto,
240
240
  LoginViaOtpScopeEnum: () => LoginViaOtpScopeEnum,
241
241
  LogoutDto: () => LogoutDto,
242
+ MAINTENANCE_PATTERN: () => MAINTENANCE_PATTERN,
242
243
  McqStatusEnum: () => McqStatusEnum,
243
244
  ModeOfHire: () => ModeOfHire,
244
245
  ModeOfWork: () => ModeOfWork,
@@ -276,6 +277,7 @@ __export(index_exports, {
276
277
  SENSELOAF_PATTERN: () => SENSELOAF_PATTERN,
277
278
  SIGNATURE_PATTERN: () => SIGNATURE_PATTERN,
278
279
  SKILL_PATTERN: () => SKILL_PATTERN,
280
+ SMS_PATTERN: () => SMS_PATTERN,
279
281
  STATE_PATTERN: () => STATE_PATTERN,
280
282
  STRIPE_PATTERN: () => STRIPE_PATTERN,
281
283
  SUBADMIN_PATTERN: () => SUBADMIN_PATTERN,
@@ -626,6 +628,7 @@ var ONBOARDING_PATTERN = {
626
628
  handleFreelancerDeveloperPreference: "handle.freelancer.developer.preference",
627
629
  handleFreelancerProfileQuestion: "handle.freelancer.profile.question",
628
630
  handleFreelancerWorkShowcase: "handle.freelancer.work.showcase",
631
+ verifyOnboardingToken: "verify.onboarding.token",
629
632
  handleClientAccountCreation: "handle.client.account.creation",
630
633
  handleClientProfileQuestion: "handle.client.profile.question",
631
634
  changeFreelancerPassword: "change.freelancer.password",
@@ -1048,6 +1051,11 @@ __decorateClass([
1048
1051
  (0, import_class_validator26.IsOptional)()
1049
1052
  ], ClientCreateAccountDto.prototype, "onBoardedBy", 2);
1050
1053
 
1054
+ // src/modules/maintenance/pattern/pattern.ts
1055
+ var MAINTENANCE_PATTERN = {
1056
+ truncateData: "truncate.data"
1057
+ };
1058
+
1051
1059
  // src/modules/resume-parser/pattern/pattern.ts
1052
1060
  var RESUME_PARSER_PATTERN = {
1053
1061
  handleResumeParsing: "handle.resume.parsing",
@@ -1059,6 +1067,8 @@ var RESUME_PARSER_PATTERN = {
1059
1067
  // src/modules/user/subadmin/pattern/pattern.ts
1060
1068
  var SUBADMIN_PATTERN = {
1061
1069
  fetchSubAdmins: "fetch.subadmins",
1070
+ exportUsersForGetStream: "export.users.for.get.stream",
1071
+ handleDailyExport: "handle.daily.export",
1062
1072
  fetchDeletedSubAdmins: "fetch.deleted.subadmins",
1063
1073
  fetchSubAdminDropdown: "fetch.subadmin.dropdown",
1064
1074
  findSubAdminById: "fetch.subadmin.by.id",
@@ -1156,7 +1166,13 @@ var CLIENT_PROFILE_PATTERN = {
1156
1166
  esignClientServiceAgreementForClient: "esign.client.service.agreement.for.client",
1157
1167
  fetchClientServiceAgreementStatus: "fetch.client.service.agreement.status",
1158
1168
  fetchRecommendedFreelancers: "fetch.recommended.freelancers",
1159
- fetchRecommendedFreelancersV2: "fetch.recommended.freelancers.v2"
1169
+ fetchRecommendedFreelancersV2: "fetch.recommended.freelancers.v2",
1170
+ fetchRecommendedFreelancersDropdownV2: "fetch.recommended.freelancers.dropdown.v2",
1171
+ clientDataAlteration: "client.data.alteration",
1172
+ fetchFreelancersForComparison: "fetch.freelancers.for.comparison",
1173
+ deleteClientProfilePic: "delete.client.profile.pic",
1174
+ fetchFreelancerInfoForChat: "fetch.freelancer.info.for.chat",
1175
+ fetchClientAndFreelancerDetailsForChatChannelCreation: "fetch.client.and.freelancer.details.for.chat.channel.creation"
1160
1176
  };
1161
1177
 
1162
1178
  // src/modules/user/client-profile/dto/update-client-profile.dto.ts
@@ -1291,6 +1307,7 @@ var JOB_PATTERN = {
1291
1307
  fetchJobDescription: "fetch.job.description",
1292
1308
  updateJobDescription: "update.job.description",
1293
1309
  updateJobStatus: "update.job.status",
1310
+ closeJob: "close.job",
1294
1311
  searchJobsByRoleAndSkills: "search.jobs.by.role.and.skills",
1295
1312
  handleBulkRecommendationAdjustment: "handle.bulk.recommendation.adjustment",
1296
1313
  refreshJobFreelancerRecommendationView: "refresh.job.freelancer.recommendation.view",
@@ -1309,16 +1326,11 @@ var JOB_PATTERN = {
1309
1326
  fetchRecommendedFreelancersForJob: "fetch.recommended.freelancers.for.job",
1310
1327
  fetchRecommendedFreelancersForJobV2: "fetch.recommended.freelancers.for.job.v2",
1311
1328
  handleJobViwedCountIncrement: "handle.job.viwed.count.increment",
1329
+ fetchJobByIdForTimesheet: "fetch.job.by.id.for.timesheet",
1312
1330
  jobDataSetup: "job.data.Setup",
1313
1331
  fetchJobsForComparison: "fetch.jobs.for.comparison",
1314
1332
  fetchJobSkillDropdownForClient: "fetch.job.skill.dropdown.for.client"
1315
1333
  };
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
1334
  var JOB_APPLICATION_PATTERN = {
1323
1335
  fetchJobApplicationCountAsPerStatusByJobId: "fetch.job.application.count.as.per.status.by.job.id",
1324
1336
  fetchJobApplicationsByJobId: "fetch.job.applications.by.job.id",
@@ -1774,8 +1786,11 @@ var PROFILE_PATTERN = {
1774
1786
  fetchAppliedJobsOfFreelancer: "fetch.applied.jobs.of.freelancer",
1775
1787
  fetchAppliedJobsDropdownForFreelancer: "fetch.applied.jobs.dropdown.for.freelancer",
1776
1788
  countOfActiveFreelancers: "count.of.active.freelancers",
1789
+ findUsersByUuids: "find.users.by.uuids",
1777
1790
  markFollowedOnLinkedIn: "mark.followed.on.linkedin",
1778
1791
  fetchFreelancerResumeByUuId: "fetch.freelancer.resume.by.uuid",
1792
+ fetchClientByIdForContract: "fetch.client.by.id.for.contract",
1793
+ fetchFreelancerByIdForContract: "fetch.freelancer.by.id.for.contract",
1779
1794
  freelancerDataSetup: "freelancer.data.setup",
1780
1795
  freelancerEmailAndMobileMasking: "freelancer.email.and.mobile.masking",
1781
1796
  fetchClientInfoForChat: "fetch.client.info.for.chat",
@@ -2042,7 +2057,28 @@ var NOTIFICATION_PATTERN = {
2042
2057
  handleBusinessAccountCreatedNotification: "handle.business.account.created.notification",
2043
2058
  handleBusinessAccountSetPasswordNotification: "handle.business.account.set.password.notification",
2044
2059
  handleFreelancerAccountSetPasswordNotification: "handle.freelancer.account.set.password.notification",
2045
- handleSendBulkInterviewInvites: "handle.send.bulk.interview.invites"
2060
+ handleSendBulkInterviewInvites: "handle.send.bulk.interview.invites",
2061
+ handleFreelancerAccountCreatedNotification: "handle.freelancer.account.created.notification",
2062
+ handleSetPasswordLinkNotification: "handle.set.password.link.notification",
2063
+ handleLeadNotificationToAdmin: "handle.lead.notification.to.admin",
2064
+ handleDailyFreelancerReportToStakeHolders: "handle.daily.freelancer.report.to.stake.holders",
2065
+ handleAiAssessmentLinkNotification: "handle.ai.assessment.link.notification",
2066
+ handleRecordingProcessingErrorNotification: "handle.recording.processing.error.notification",
2067
+ handleResumeParserErrorNotification: "handle.resume.parser.error.notification"
2068
+ };
2069
+ var SMS_PATTERN = {
2070
+ sendTest: "sms.send.test",
2071
+ queueStats: "sms.queue.stats",
2072
+ cleanQueue: "sms.clean.queue",
2073
+ status: "sms.status",
2074
+ accountInfo: "sms.account.info"
2075
+ };
2076
+ var EMAIL_PATTERN = {
2077
+ sendTest: "email.send.test",
2078
+ send: "email.send",
2079
+ sendTemplate: "email.send.template",
2080
+ getQueueStats: "email.get.queue.stats",
2081
+ cleanQueue: "email.clean.queue"
2046
2082
  };
2047
2083
 
2048
2084
  // src/modules/rating/pattern/pattern.ts
@@ -7467,7 +7503,11 @@ var ADMIN_JOB_PATTERN = {
7467
7503
  adminUpdateJobV2: "admin.update.job.v2",
7468
7504
  adminDeleteJob: "admin.delete.job",
7469
7505
  adminCountJob: "admin.count.job",
7470
- adminFetchGraphCount: "admin.fetch.graph.count"
7506
+ adminFetchGraphCount: "admin.fetch.graph.count",
7507
+ adminFetchJobByIdV2: "admin.fetch.job.by.id.v2",
7508
+ adminExportJobsToCSV: "admin.export.jobs.to.csv",
7509
+ adminFetchJobDescription: "admin.fetch.job.description",
7510
+ adminUpdateJobDescription: "admin.update.job.description"
7471
7511
  };
7472
7512
 
7473
7513
  // src/modules/job-admin/dto/admin-create-job-information.dto.ts
@@ -7924,7 +7964,8 @@ var ADMIN_ROLE_PATTERN = {
7924
7964
  adminCreateRole: "admin.create.role",
7925
7965
  adminUpdateRole: "admin.update.role",
7926
7966
  adminDeleteRole: "admin.delete.role",
7927
- attachPermissionsToRole: "attach.permissions.to.role"
7967
+ attachPermissionsToRole: "attach.permissions.to.role",
7968
+ fetchAdminRolePermissions: "fetch.admin.role.permissions"
7928
7969
  };
7929
7970
 
7930
7971
  // src/modules/admin-role/dto/create-admin-role.dto.ts
@@ -8042,7 +8083,8 @@ var INTERVIEW_PATTERN = {
8042
8083
  fetchInterviewSetting: "fetch.interview.setting",
8043
8084
  updateInterviewSetting: "update.interview.setting",
8044
8085
  markInterviewAsPublished: "mark.interview.as.published",
8045
- deleteInterview: "delete.interview"
8086
+ deleteInterview: "delete.interview",
8087
+ fetchInterviewCountAsPerStatus: "fetch.interview.count.as.per.status"
8046
8088
  };
8047
8089
 
8048
8090
  // src/modules/interview/dto/interview-invite.dto.ts
@@ -8311,7 +8353,15 @@ var TIMESHEET_CLIENT_PATTERN = {
8311
8353
  rejectFreelancerTimesheetForClient: "reject.freelancer.timesheet.for.client",
8312
8354
  fetchAllSubmittedTimesheetsForClient: "fetch.all.submitted.timesheets.for.client",
8313
8355
  fetchAllSendBackTimesheetsForClient: "fetch.all.send.back.timesheets.for.client",
8314
- fetchAllPendingApprovalTimesheetsForClient: "fetch.all.pending.approval.timesheets.for.client"
8356
+ fetchAllPendingApprovalTimesheetsForClient: "fetch.all.pending.approval.timesheets.for.client",
8357
+ fetchAllApprovedTimesheetsForClient: "fetch.all.approved.timesheets.for.client",
8358
+ fetchFreelancerWeeklyCardSummeryForClient: "fetch.freelancer.weekly.card.summery.for.client",
8359
+ fetchFreelancerCardSummeryByTimesheetLineIdForClient: "fetch.freelancer.card.summery.by.timesheet.line.id.for.client",
8360
+ fetchFreelancerTimesheetsByDateRangeForClient: "fetch.freelancer.timesheets.by.date.range.for.client",
8361
+ sendBackFreelancerTimesheetForClient: "send.back.freelancer.timesheet.for.client",
8362
+ fetchSubmissionHistoryForClient: "fetch.submission.history.for.client",
8363
+ fetchFreelancerDropDownForClient: "fetchfreelancer.dropdown.for.client",
8364
+ createDefaultTimesheetLineOnContractSigned: "create.default.timesheet.line.on.contract.signed"
8315
8365
  };
8316
8366
 
8317
8367
  // src/modules/timesheet/dto/create-freelancer-timesheet.dto.ts
@@ -8413,6 +8463,8 @@ __decorateClass([
8413
8463
  // src/modules/invoice/pattern/pattern.ts
8414
8464
  var INVOICE_PATTERN = {
8415
8465
  createInvoice: "invoice.create",
8466
+ generateWeeklyInvoice: "generate.weekly.invoice",
8467
+ generateHiringInvoiceOfFTE: "generate.hiring.invoice.of.fte",
8416
8468
  fetchInvoicesForFreelancer: "fetch.invoices.for.freelancer",
8417
8469
  fetchInvoicesForClient: "fetch.invoices.for.client",
8418
8470
  fetchInvoiceById: "fetch.invoice.by.id",
@@ -8544,6 +8596,8 @@ var SIGNATURE_PATTERN = {
8544
8596
  var WALLET_PATTERN = {
8545
8597
  fetchConnectAccountDetails: "fetch.connect.account.details",
8546
8598
  fetchWalletTransactions: "fetch.wallet.transactions",
8599
+ escrowFund: "escrow.fund",
8600
+ transferEscrowAmountToFreelancerFromClient: "transfer.escrow.amount.to.freelancer.from.client",
8547
8601
  addTopupEscrowAmount: "add.topup.escrow.amount",
8548
8602
  debitCommissionFromClientForFTEHiring: "debit.commission.from.client.for.fte.hiring"
8549
8603
  };
@@ -9644,6 +9698,7 @@ RecommendationWeightageConfig = __decorateClass([
9644
9698
  DocumentType,
9645
9699
  DocumentTypeEnum,
9646
9700
  DurationTypeEnum,
9701
+ EMAIL_PATTERN,
9647
9702
  EducationDto,
9648
9703
  EmploymentType,
9649
9704
  EmploymentTypeV2,
@@ -9718,7 +9773,6 @@ RecommendationWeightageConfig = __decorateClass([
9718
9773
  InvoicePaymentStatusEnum,
9719
9774
  InvoiceStatusEnum,
9720
9775
  InvoiceTypeEnum,
9721
- JOB_ADMIN_PATTERN,
9722
9776
  JOB_APPLICATION_PATTERN,
9723
9777
  JOB_PATTERN,
9724
9778
  JOB_ROLE_PATTERN,
@@ -9755,6 +9809,7 @@ RecommendationWeightageConfig = __decorateClass([
9755
9809
  LoginViaOtpDto,
9756
9810
  LoginViaOtpScopeEnum,
9757
9811
  LogoutDto,
9812
+ MAINTENANCE_PATTERN,
9758
9813
  McqStatusEnum,
9759
9814
  ModeOfHire,
9760
9815
  ModeOfWork,
@@ -9792,6 +9847,7 @@ RecommendationWeightageConfig = __decorateClass([
9792
9847
  SENSELOAF_PATTERN,
9793
9848
  SIGNATURE_PATTERN,
9794
9849
  SKILL_PATTERN,
9850
+ SMS_PATTERN,
9795
9851
  STATE_PATTERN,
9796
9852
  STRIPE_PATTERN,
9797
9853
  SUBADMIN_PATTERN,
package/dist/index.mjs CHANGED
@@ -297,6 +297,7 @@ var ONBOARDING_PATTERN = {
297
297
  handleFreelancerDeveloperPreference: "handle.freelancer.developer.preference",
298
298
  handleFreelancerProfileQuestion: "handle.freelancer.profile.question",
299
299
  handleFreelancerWorkShowcase: "handle.freelancer.work.showcase",
300
+ verifyOnboardingToken: "verify.onboarding.token",
300
301
  handleClientAccountCreation: "handle.client.account.creation",
301
302
  handleClientProfileQuestion: "handle.client.profile.question",
302
303
  changeFreelancerPassword: "change.freelancer.password",
@@ -758,6 +759,11 @@ __decorateClass([
758
759
  IsOptional8()
759
760
  ], ClientCreateAccountDto.prototype, "onBoardedBy", 2);
760
761
 
762
+ // src/modules/maintenance/pattern/pattern.ts
763
+ var MAINTENANCE_PATTERN = {
764
+ truncateData: "truncate.data"
765
+ };
766
+
761
767
  // src/modules/resume-parser/pattern/pattern.ts
762
768
  var RESUME_PARSER_PATTERN = {
763
769
  handleResumeParsing: "handle.resume.parsing",
@@ -769,6 +775,8 @@ var RESUME_PARSER_PATTERN = {
769
775
  // src/modules/user/subadmin/pattern/pattern.ts
770
776
  var SUBADMIN_PATTERN = {
771
777
  fetchSubAdmins: "fetch.subadmins",
778
+ exportUsersForGetStream: "export.users.for.get.stream",
779
+ handleDailyExport: "handle.daily.export",
772
780
  fetchDeletedSubAdmins: "fetch.deleted.subadmins",
773
781
  fetchSubAdminDropdown: "fetch.subadmin.dropdown",
774
782
  findSubAdminById: "fetch.subadmin.by.id",
@@ -868,7 +876,13 @@ var CLIENT_PROFILE_PATTERN = {
868
876
  esignClientServiceAgreementForClient: "esign.client.service.agreement.for.client",
869
877
  fetchClientServiceAgreementStatus: "fetch.client.service.agreement.status",
870
878
  fetchRecommendedFreelancers: "fetch.recommended.freelancers",
871
- fetchRecommendedFreelancersV2: "fetch.recommended.freelancers.v2"
879
+ fetchRecommendedFreelancersV2: "fetch.recommended.freelancers.v2",
880
+ fetchRecommendedFreelancersDropdownV2: "fetch.recommended.freelancers.dropdown.v2",
881
+ clientDataAlteration: "client.data.alteration",
882
+ fetchFreelancersForComparison: "fetch.freelancers.for.comparison",
883
+ deleteClientProfilePic: "delete.client.profile.pic",
884
+ fetchFreelancerInfoForChat: "fetch.freelancer.info.for.chat",
885
+ fetchClientAndFreelancerDetailsForChatChannelCreation: "fetch.client.and.freelancer.details.for.chat.channel.creation"
872
886
  };
873
887
 
874
888
  // src/modules/user/client-profile/dto/update-client-profile.dto.ts
@@ -1021,6 +1035,7 @@ var JOB_PATTERN = {
1021
1035
  fetchJobDescription: "fetch.job.description",
1022
1036
  updateJobDescription: "update.job.description",
1023
1037
  updateJobStatus: "update.job.status",
1038
+ closeJob: "close.job",
1024
1039
  searchJobsByRoleAndSkills: "search.jobs.by.role.and.skills",
1025
1040
  handleBulkRecommendationAdjustment: "handle.bulk.recommendation.adjustment",
1026
1041
  refreshJobFreelancerRecommendationView: "refresh.job.freelancer.recommendation.view",
@@ -1039,16 +1054,11 @@ var JOB_PATTERN = {
1039
1054
  fetchRecommendedFreelancersForJob: "fetch.recommended.freelancers.for.job",
1040
1055
  fetchRecommendedFreelancersForJobV2: "fetch.recommended.freelancers.for.job.v2",
1041
1056
  handleJobViwedCountIncrement: "handle.job.viwed.count.increment",
1057
+ fetchJobByIdForTimesheet: "fetch.job.by.id.for.timesheet",
1042
1058
  jobDataSetup: "job.data.Setup",
1043
1059
  fetchJobsForComparison: "fetch.jobs.for.comparison",
1044
1060
  fetchJobSkillDropdownForClient: "fetch.job.skill.dropdown.for.client"
1045
1061
  };
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
1062
  var JOB_APPLICATION_PATTERN = {
1053
1063
  fetchJobApplicationCountAsPerStatusByJobId: "fetch.job.application.count.as.per.status.by.job.id",
1054
1064
  fetchJobApplicationsByJobId: "fetch.job.applications.by.job.id",
@@ -1528,8 +1538,11 @@ var PROFILE_PATTERN = {
1528
1538
  fetchAppliedJobsOfFreelancer: "fetch.applied.jobs.of.freelancer",
1529
1539
  fetchAppliedJobsDropdownForFreelancer: "fetch.applied.jobs.dropdown.for.freelancer",
1530
1540
  countOfActiveFreelancers: "count.of.active.freelancers",
1541
+ findUsersByUuids: "find.users.by.uuids",
1531
1542
  markFollowedOnLinkedIn: "mark.followed.on.linkedin",
1532
1543
  fetchFreelancerResumeByUuId: "fetch.freelancer.resume.by.uuid",
1544
+ fetchClientByIdForContract: "fetch.client.by.id.for.contract",
1545
+ fetchFreelancerByIdForContract: "fetch.freelancer.by.id.for.contract",
1533
1546
  freelancerDataSetup: "freelancer.data.setup",
1534
1547
  freelancerEmailAndMobileMasking: "freelancer.email.and.mobile.masking",
1535
1548
  fetchClientInfoForChat: "fetch.client.info.for.chat",
@@ -1820,7 +1833,28 @@ var NOTIFICATION_PATTERN = {
1820
1833
  handleBusinessAccountCreatedNotification: "handle.business.account.created.notification",
1821
1834
  handleBusinessAccountSetPasswordNotification: "handle.business.account.set.password.notification",
1822
1835
  handleFreelancerAccountSetPasswordNotification: "handle.freelancer.account.set.password.notification",
1823
- handleSendBulkInterviewInvites: "handle.send.bulk.interview.invites"
1836
+ handleSendBulkInterviewInvites: "handle.send.bulk.interview.invites",
1837
+ handleFreelancerAccountCreatedNotification: "handle.freelancer.account.created.notification",
1838
+ handleSetPasswordLinkNotification: "handle.set.password.link.notification",
1839
+ handleLeadNotificationToAdmin: "handle.lead.notification.to.admin",
1840
+ handleDailyFreelancerReportToStakeHolders: "handle.daily.freelancer.report.to.stake.holders",
1841
+ handleAiAssessmentLinkNotification: "handle.ai.assessment.link.notification",
1842
+ handleRecordingProcessingErrorNotification: "handle.recording.processing.error.notification",
1843
+ handleResumeParserErrorNotification: "handle.resume.parser.error.notification"
1844
+ };
1845
+ var SMS_PATTERN = {
1846
+ sendTest: "sms.send.test",
1847
+ queueStats: "sms.queue.stats",
1848
+ cleanQueue: "sms.clean.queue",
1849
+ status: "sms.status",
1850
+ accountInfo: "sms.account.info"
1851
+ };
1852
+ var EMAIL_PATTERN = {
1853
+ sendTest: "email.send.test",
1854
+ send: "email.send",
1855
+ sendTemplate: "email.send.template",
1856
+ getQueueStats: "email.get.queue.stats",
1857
+ cleanQueue: "email.clean.queue"
1824
1858
  };
1825
1859
 
1826
1860
  // src/modules/rating/pattern/pattern.ts
@@ -7537,7 +7571,11 @@ var ADMIN_JOB_PATTERN = {
7537
7571
  adminUpdateJobV2: "admin.update.job.v2",
7538
7572
  adminDeleteJob: "admin.delete.job",
7539
7573
  adminCountJob: "admin.count.job",
7540
- adminFetchGraphCount: "admin.fetch.graph.count"
7574
+ adminFetchGraphCount: "admin.fetch.graph.count",
7575
+ adminFetchJobByIdV2: "admin.fetch.job.by.id.v2",
7576
+ adminExportJobsToCSV: "admin.export.jobs.to.csv",
7577
+ adminFetchJobDescription: "admin.fetch.job.description",
7578
+ adminUpdateJobDescription: "admin.update.job.description"
7541
7579
  };
7542
7580
 
7543
7581
  // src/modules/job-admin/dto/admin-create-job-information.dto.ts
@@ -8029,7 +8067,8 @@ var ADMIN_ROLE_PATTERN = {
8029
8067
  adminCreateRole: "admin.create.role",
8030
8068
  adminUpdateRole: "admin.update.role",
8031
8069
  adminDeleteRole: "admin.delete.role",
8032
- attachPermissionsToRole: "attach.permissions.to.role"
8070
+ attachPermissionsToRole: "attach.permissions.to.role",
8071
+ fetchAdminRolePermissions: "fetch.admin.role.permissions"
8033
8072
  };
8034
8073
 
8035
8074
  // src/modules/admin-role/dto/create-admin-role.dto.ts
@@ -8147,7 +8186,8 @@ var INTERVIEW_PATTERN = {
8147
8186
  fetchInterviewSetting: "fetch.interview.setting",
8148
8187
  updateInterviewSetting: "update.interview.setting",
8149
8188
  markInterviewAsPublished: "mark.interview.as.published",
8150
- deleteInterview: "delete.interview"
8189
+ deleteInterview: "delete.interview",
8190
+ fetchInterviewCountAsPerStatus: "fetch.interview.count.as.per.status"
8151
8191
  };
8152
8192
 
8153
8193
  // src/modules/interview/dto/interview-invite.dto.ts
@@ -8446,7 +8486,15 @@ var TIMESHEET_CLIENT_PATTERN = {
8446
8486
  rejectFreelancerTimesheetForClient: "reject.freelancer.timesheet.for.client",
8447
8487
  fetchAllSubmittedTimesheetsForClient: "fetch.all.submitted.timesheets.for.client",
8448
8488
  fetchAllSendBackTimesheetsForClient: "fetch.all.send.back.timesheets.for.client",
8449
- fetchAllPendingApprovalTimesheetsForClient: "fetch.all.pending.approval.timesheets.for.client"
8489
+ fetchAllPendingApprovalTimesheetsForClient: "fetch.all.pending.approval.timesheets.for.client",
8490
+ fetchAllApprovedTimesheetsForClient: "fetch.all.approved.timesheets.for.client",
8491
+ fetchFreelancerWeeklyCardSummeryForClient: "fetch.freelancer.weekly.card.summery.for.client",
8492
+ fetchFreelancerCardSummeryByTimesheetLineIdForClient: "fetch.freelancer.card.summery.by.timesheet.line.id.for.client",
8493
+ fetchFreelancerTimesheetsByDateRangeForClient: "fetch.freelancer.timesheets.by.date.range.for.client",
8494
+ sendBackFreelancerTimesheetForClient: "send.back.freelancer.timesheet.for.client",
8495
+ fetchSubmissionHistoryForClient: "fetch.submission.history.for.client",
8496
+ fetchFreelancerDropDownForClient: "fetchfreelancer.dropdown.for.client",
8497
+ createDefaultTimesheetLineOnContractSigned: "create.default.timesheet.line.on.contract.signed"
8450
8498
  };
8451
8499
 
8452
8500
  // src/modules/timesheet/dto/create-freelancer-timesheet.dto.ts
@@ -8564,6 +8612,8 @@ __decorateClass([
8564
8612
  // src/modules/invoice/pattern/pattern.ts
8565
8613
  var INVOICE_PATTERN = {
8566
8614
  createInvoice: "invoice.create",
8615
+ generateWeeklyInvoice: "generate.weekly.invoice",
8616
+ generateHiringInvoiceOfFTE: "generate.hiring.invoice.of.fte",
8567
8617
  fetchInvoicesForFreelancer: "fetch.invoices.for.freelancer",
8568
8618
  fetchInvoicesForClient: "fetch.invoices.for.client",
8569
8619
  fetchInvoiceById: "fetch.invoice.by.id",
@@ -8706,6 +8756,8 @@ var SIGNATURE_PATTERN = {
8706
8756
  var WALLET_PATTERN = {
8707
8757
  fetchConnectAccountDetails: "fetch.connect.account.details",
8708
8758
  fetchWalletTransactions: "fetch.wallet.transactions",
8759
+ escrowFund: "escrow.fund",
8760
+ transferEscrowAmountToFreelancerFromClient: "transfer.escrow.amount.to.freelancer.from.client",
8709
8761
  addTopupEscrowAmount: "add.topup.escrow.amount",
8710
8762
  debitCommissionFromClientForFTEHiring: "debit.commission.from.client.for.fte.hiring"
8711
8763
  };
@@ -9824,6 +9876,7 @@ export {
9824
9876
  DocumentType,
9825
9877
  DocumentTypeEnum,
9826
9878
  DurationTypeEnum,
9879
+ EMAIL_PATTERN,
9827
9880
  EducationDto,
9828
9881
  EmploymentType,
9829
9882
  EmploymentTypeV2,
@@ -9898,7 +9951,6 @@ export {
9898
9951
  InvoicePaymentStatusEnum,
9899
9952
  InvoiceStatusEnum,
9900
9953
  InvoiceTypeEnum,
9901
- JOB_ADMIN_PATTERN,
9902
9954
  JOB_APPLICATION_PATTERN,
9903
9955
  JOB_PATTERN,
9904
9956
  JOB_ROLE_PATTERN,
@@ -9935,6 +9987,7 @@ export {
9935
9987
  LoginViaOtpDto,
9936
9988
  LoginViaOtpScopeEnum,
9937
9989
  LogoutDto,
9990
+ MAINTENANCE_PATTERN,
9938
9991
  McqStatusEnum,
9939
9992
  ModeOfHire,
9940
9993
  ModeOfWork,
@@ -9972,6 +10025,7 @@ export {
9972
10025
  SENSELOAF_PATTERN,
9973
10026
  SIGNATURE_PATTERN,
9974
10027
  SKILL_PATTERN,
10028
+ SMS_PATTERN,
9975
10029
  STATE_PATTERN,
9976
10030
  STRIPE_PATTERN,
9977
10031
  SUBADMIN_PATTERN,
@@ -7,4 +7,5 @@ export declare const ADMIN_ROLE_PATTERN: {
7
7
  adminUpdateRole: string;
8
8
  adminDeleteRole: string;
9
9
  attachPermissionsToRole: string;
10
+ fetchAdminRolePermissions: string;
10
11
  };
@@ -1,6 +1,7 @@
1
1
  export * from './authentication';
2
2
  export * from './otp';
3
3
  export * from './onboarding';
4
+ export * from './maintenance';
4
5
  export * from './resume-parser';
5
6
  export * from './user/subadmin';
6
7
  export * from './user/client-profile';
@@ -65,4 +65,5 @@ export declare const INTERVIEW_PATTERN: {
65
65
  updateInterviewSetting: string;
66
66
  markInterviewAsPublished: string;
67
67
  deleteInterview: string;
68
+ fetchInterviewCountAsPerStatus: string;
68
69
  };
@@ -1,5 +1,7 @@
1
1
  export declare const INVOICE_PATTERN: {
2
2
  createInvoice: string;
3
+ generateWeeklyInvoice: string;
4
+ generateHiringInvoiceOfFTE: string;
3
5
  fetchInvoicesForFreelancer: string;
4
6
  fetchInvoicesForClient: string;
5
7
  fetchInvoiceById: string;
@@ -19,6 +19,7 @@ export declare const JOB_PATTERN: {
19
19
  fetchJobDescription: string;
20
20
  updateJobDescription: string;
21
21
  updateJobStatus: string;
22
+ closeJob: string;
22
23
  searchJobsByRoleAndSkills: string;
23
24
  handleBulkRecommendationAdjustment: string;
24
25
  refreshJobFreelancerRecommendationView: string;
@@ -37,16 +38,11 @@ export declare const JOB_PATTERN: {
37
38
  fetchRecommendedFreelancersForJob: string;
38
39
  fetchRecommendedFreelancersForJobV2: string;
39
40
  handleJobViwedCountIncrement: string;
41
+ fetchJobByIdForTimesheet: string;
40
42
  jobDataSetup: string;
41
43
  fetchJobsForComparison: string;
42
44
  fetchJobSkillDropdownForClient: string;
43
45
  };
44
- export declare const JOB_ADMIN_PATTERN: {
45
- adminFetchJobByIdV2: string;
46
- adminExportJobsToCSV: string;
47
- adminFetchJobDescription: string;
48
- adminUpdateJobDescription: string;
49
- };
50
46
  export declare const JOB_APPLICATION_PATTERN: {
51
47
  fetchJobApplicationCountAsPerStatusByJobId: string;
52
48
  fetchJobApplicationsByJobId: string;
@@ -8,4 +8,8 @@ export declare const ADMIN_JOB_PATTERN: {
8
8
  adminDeleteJob: string;
9
9
  adminCountJob: string;
10
10
  adminFetchGraphCount: string;
11
+ adminFetchJobByIdV2: string;
12
+ adminExportJobsToCSV: string;
13
+ adminFetchJobDescription: string;
14
+ adminUpdateJobDescription: string;
11
15
  };
@@ -0,0 +1 @@
1
+ export * from './pattern/pattern';
@@ -0,0 +1,3 @@
1
+ export declare const MAINTENANCE_PATTERN: {
2
+ truncateData: string;
3
+ };
@@ -5,4 +5,25 @@ export declare const NOTIFICATION_PATTERN: {
5
5
  handleBusinessAccountSetPasswordNotification: string;
6
6
  handleFreelancerAccountSetPasswordNotification: string;
7
7
  handleSendBulkInterviewInvites: string;
8
+ handleFreelancerAccountCreatedNotification: string;
9
+ handleSetPasswordLinkNotification: string;
10
+ handleLeadNotificationToAdmin: string;
11
+ handleDailyFreelancerReportToStakeHolders: string;
12
+ handleAiAssessmentLinkNotification: string;
13
+ handleRecordingProcessingErrorNotification: string;
14
+ handleResumeParserErrorNotification: string;
15
+ };
16
+ export declare const SMS_PATTERN: {
17
+ sendTest: string;
18
+ queueStats: string;
19
+ cleanQueue: string;
20
+ status: string;
21
+ accountInfo: string;
22
+ };
23
+ export declare const EMAIL_PATTERN: {
24
+ sendTest: string;
25
+ send: string;
26
+ sendTemplate: string;
27
+ getQueueStats: string;
28
+ cleanQueue: string;
8
29
  };
@@ -4,6 +4,7 @@ export declare const ONBOARDING_PATTERN: {
4
4
  handleFreelancerDeveloperPreference: string;
5
5
  handleFreelancerProfileQuestion: string;
6
6
  handleFreelancerWorkShowcase: string;
7
+ verifyOnboardingToken: string;
7
8
  handleClientAccountCreation: string;
8
9
  handleClientProfileQuestion: string;
9
10
  changeFreelancerPassword: string;
@@ -27,4 +27,12 @@ export declare const TIMESHEET_CLIENT_PATTERN: {
27
27
  fetchAllSubmittedTimesheetsForClient: string;
28
28
  fetchAllSendBackTimesheetsForClient: string;
29
29
  fetchAllPendingApprovalTimesheetsForClient: string;
30
+ fetchAllApprovedTimesheetsForClient: string;
31
+ fetchFreelancerWeeklyCardSummeryForClient: string;
32
+ fetchFreelancerCardSummeryByTimesheetLineIdForClient: string;
33
+ fetchFreelancerTimesheetsByDateRangeForClient: string;
34
+ sendBackFreelancerTimesheetForClient: string;
35
+ fetchSubmissionHistoryForClient: string;
36
+ fetchFreelancerDropDownForClient: string;
37
+ createDefaultTimesheetLineOnContractSigned: string;
30
38
  };
@@ -12,4 +12,10 @@ export declare const CLIENT_PROFILE_PATTERN: {
12
12
  fetchClientServiceAgreementStatus: string;
13
13
  fetchRecommendedFreelancers: string;
14
14
  fetchRecommendedFreelancersV2: string;
15
+ fetchRecommendedFreelancersDropdownV2: string;
16
+ clientDataAlteration: string;
17
+ fetchFreelancersForComparison: string;
18
+ deleteClientProfilePic: string;
19
+ fetchFreelancerInfoForChat: string;
20
+ fetchClientAndFreelancerDetailsForChatChannelCreation: string;
15
21
  };
@@ -22,8 +22,11 @@ export declare const PROFILE_PATTERN: {
22
22
  fetchAppliedJobsOfFreelancer: string;
23
23
  fetchAppliedJobsDropdownForFreelancer: string;
24
24
  countOfActiveFreelancers: string;
25
+ findUsersByUuids: string;
25
26
  markFollowedOnLinkedIn: string;
26
27
  fetchFreelancerResumeByUuId: string;
28
+ fetchClientByIdForContract: string;
29
+ fetchFreelancerByIdForContract: string;
27
30
  freelancerDataSetup: string;
28
31
  freelancerEmailAndMobileMasking: string;
29
32
  fetchClientInfoForChat: string;
@@ -1,5 +1,7 @@
1
1
  export declare const SUBADMIN_PATTERN: {
2
2
  fetchSubAdmins: string;
3
+ exportUsersForGetStream: string;
4
+ handleDailyExport: string;
3
5
  fetchDeletedSubAdmins: string;
4
6
  fetchSubAdminDropdown: string;
5
7
  findSubAdminById: string;
@@ -1,6 +1,8 @@
1
1
  export declare const WALLET_PATTERN: {
2
2
  fetchConnectAccountDetails: string;
3
3
  fetchWalletTransactions: string;
4
+ escrowFund: string;
5
+ transferEscrowAmountToFreelancerFromClient: string;
4
6
  addTopupEscrowAmount: string;
5
7
  debitCommissionFromClientForFTEHiring: string;
6
8
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.562",
3
+ "version": "1.0.566",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",