@experts_hub/shared 1.0.684 → 1.0.685
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 +100 -1
- package/dist/index.d.ts +100 -1
- package/dist/index.js +285 -0
- package/dist/index.mjs +290 -0
- package/dist/modules/index.d.ts +1 -0
- package/dist/modules/task/dto/add-client-remark.dto.d.ts +3 -0
- package/dist/modules/task/dto/create-task.dto.d.ts +35 -0
- package/dist/modules/task/dto/index.d.ts +6 -0
- package/dist/modules/task/dto/mark-task-as-completed.dto.d.ts +3 -0
- package/dist/modules/task/dto/task-uuid-param.dto.d.ts +3 -0
- package/dist/modules/task/dto/update-estimate-time.dto.d.ts +4 -0
- package/dist/modules/task/dto/update-task.dto.d.ts +35 -0
- package/dist/modules/task/index.d.ts +2 -0
- package/dist/modules/task/pattern/pattern.d.ts +11 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -4532,6 +4532,105 @@ declare class ArchiveSubmissionDto {
|
|
|
4532
4532
|
submissionId: number;
|
|
4533
4533
|
}
|
|
4534
4534
|
|
|
4535
|
+
declare const TASK_PATTERN: {
|
|
4536
|
+
createTask: string;
|
|
4537
|
+
fetchTaskForBusiness: string;
|
|
4538
|
+
fetchTaskForFreelancer: string;
|
|
4539
|
+
fetchTaskDetail: string;
|
|
4540
|
+
updateTask: string;
|
|
4541
|
+
deleteTask: string;
|
|
4542
|
+
addClientRemark: string;
|
|
4543
|
+
markTaskAsCompleted: string;
|
|
4544
|
+
updateEstimateTime: string;
|
|
4545
|
+
};
|
|
4546
|
+
|
|
4547
|
+
declare class TaskDeliverableDto$1 {
|
|
4548
|
+
name: string;
|
|
4549
|
+
description?: string;
|
|
4550
|
+
type?: string;
|
|
4551
|
+
}
|
|
4552
|
+
declare class TaskResourceDto$1 {
|
|
4553
|
+
name: string;
|
|
4554
|
+
description?: string;
|
|
4555
|
+
type?: string;
|
|
4556
|
+
url?: string;
|
|
4557
|
+
}
|
|
4558
|
+
declare class TaskChecklistItemDto$1 {
|
|
4559
|
+
item: string;
|
|
4560
|
+
notes?: string;
|
|
4561
|
+
}
|
|
4562
|
+
declare class TaskSubtaskDto$1 {
|
|
4563
|
+
name: string;
|
|
4564
|
+
status?: string;
|
|
4565
|
+
description?: string;
|
|
4566
|
+
}
|
|
4567
|
+
declare class CreateTaskDto {
|
|
4568
|
+
title: string;
|
|
4569
|
+
dueDate?: string;
|
|
4570
|
+
jobId?: string;
|
|
4571
|
+
freelancerId?: string;
|
|
4572
|
+
status?: string;
|
|
4573
|
+
description?: string;
|
|
4574
|
+
priority?: string;
|
|
4575
|
+
createdOn?: string;
|
|
4576
|
+
deliverables?: TaskDeliverableDto$1[];
|
|
4577
|
+
resources?: TaskResourceDto$1[];
|
|
4578
|
+
checklist?: TaskChecklistItemDto$1[];
|
|
4579
|
+
subtasks?: TaskSubtaskDto$1[];
|
|
4580
|
+
}
|
|
4581
|
+
|
|
4582
|
+
declare class TaskDeliverableDto {
|
|
4583
|
+
name: string;
|
|
4584
|
+
description?: string;
|
|
4585
|
+
type?: string;
|
|
4586
|
+
}
|
|
4587
|
+
declare class TaskResourceDto {
|
|
4588
|
+
name: string;
|
|
4589
|
+
description?: string;
|
|
4590
|
+
type?: string;
|
|
4591
|
+
url?: string;
|
|
4592
|
+
}
|
|
4593
|
+
declare class TaskChecklistItemDto {
|
|
4594
|
+
item: string;
|
|
4595
|
+
notes?: string;
|
|
4596
|
+
}
|
|
4597
|
+
declare class TaskSubtaskDto {
|
|
4598
|
+
name: string;
|
|
4599
|
+
status?: string;
|
|
4600
|
+
description?: string;
|
|
4601
|
+
}
|
|
4602
|
+
declare class UpdateTaskDto {
|
|
4603
|
+
title?: string;
|
|
4604
|
+
dueDate?: string;
|
|
4605
|
+
jobId?: string;
|
|
4606
|
+
freelancerId?: string;
|
|
4607
|
+
status?: string;
|
|
4608
|
+
description?: string;
|
|
4609
|
+
priority?: string;
|
|
4610
|
+
createdOn?: string;
|
|
4611
|
+
deliverables?: TaskDeliverableDto[];
|
|
4612
|
+
resources?: TaskResourceDto[];
|
|
4613
|
+
checklist?: TaskChecklistItemDto[];
|
|
4614
|
+
subtasks?: TaskSubtaskDto[];
|
|
4615
|
+
}
|
|
4616
|
+
|
|
4617
|
+
declare class TaskUuidParamDto {
|
|
4618
|
+
uuid: string;
|
|
4619
|
+
}
|
|
4620
|
+
|
|
4621
|
+
declare class AddClientRemarkDto {
|
|
4622
|
+
remark: string;
|
|
4623
|
+
}
|
|
4624
|
+
|
|
4625
|
+
declare class MarkTaskAsCompletedDto {
|
|
4626
|
+
status: string;
|
|
4627
|
+
}
|
|
4628
|
+
|
|
4629
|
+
declare class UpdateEstimateTimeDto {
|
|
4630
|
+
estimateHours: number;
|
|
4631
|
+
additionalWorkNote: string;
|
|
4632
|
+
}
|
|
4633
|
+
|
|
4535
4634
|
declare const UserTCPAdapter: () => MicroserviceOptions;
|
|
4536
4635
|
|
|
4537
4636
|
declare const JobTCPAdapter: () => MicroserviceOptions;
|
|
@@ -4810,4 +4909,4 @@ declare class SubscriptionFeature extends BaseEntity {
|
|
|
4810
4909
|
createSlug(): void;
|
|
4811
4910
|
}
|
|
4812
4911
|
|
|
4813
|
-
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, AI_INTERVIEW_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType$1 as AccountType, AddGlobalSettingDto, AddTopupEscrowAmountDto, AdminCreateJobInformationDto, AdminExportClientV2OptimisedDto, AdminExportFreelancerV2OptimisedDto, AdminFreelancerCreateAccountDto, AdminJobBasicInformationV2Dto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentCreationDto, AiAssessmentStatusEnum, AiInterview, AiInterviewLinkGenerationDto, AiInterviewQuestionGenerateDto, AiInterviewRescheduleRequest, AiInterviewRescheduleRequestStatusEnum, AiInterviewStatusEnum, AiInterviewTemplateGenerationDto, AiQuestionItemDto, AlertBuilder, AlertCategory, type AlertKeyComponents, AlertSeverity, AnswerTypeEnum, ApplicationStatusEnum, ApproveTimesheetsDto, ArchiveSubmissionDto, AssessmentAnswer, AssessmentRequestStatusEnum, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, BillingCycleEnum, 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, CaptureAiAssessmentResultDto, CaptureAiInterviewResultPublicDto, CaseStudyDto, CategoryEmum, ChangeJobApplicationStatusBulkDto, ChangeJobApplicationStatusDto, ChatRMQAdapter, ChatTCPAdapter, CheckResumeEligibilityDto, City, ClientAddFundDto, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientESignatureDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, ClientServiceAgreementUploadDto, CloseJobDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractStatusEnum, ContractSummary, ContractSummaryPreferredEngagementTypeEnum, ContractSummaryStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, CreateAIInterviewRescheduleRequestDto, CreateAdminRoleDto, CreateCheckoutSessionDto, CreateClientDto, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateDefaultTimesheetLineDto, CreateDisputeDto, CreateF2FInterviewDirectDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateFreelancerTimesheetDto, CreateHiringDto, CreateInAppNotificationDto, CreateInterviewBasicInformationDto, CreateInterviewQuestionsDto, CreateInterviewSkillsDto, CreateInvoiceDto, CreateJobApplicationDto, CreateJobViaAIDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, CreateUserSigningDto, CustomQuestionItemDto, DISPUTE_PATTERN, DOCUSEAL_PATTERN, DebitCommissionFteHiringDto, type DiscordAlertOptions, DiscordAlertService, type DiscordEmbed, type DiscordEmbedField, type DiscordEmbedFooter, DiscordTransport, type DiscordTransportOptions, type DiscordWebhookConfig, type DiscordWebhookPayload, Dispute, DisputeStatusEnum, DocuSeal, DocuSealMessageDto, DocuSealSubmitterDto, DocuSealTypeEnum, DocumentType, DurationTypeEnum, EMAIL_PATTERN, EducationDto, EscrowFundContractDto, EscrowWallet, EscrowWalletTransaction, EscrowWalletTransactionForEnum, EscrowWalletTransactionTypeEnum, EsignContractClientDto, EsignContractFreelancerDto, ExistingCandidateDto, 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, FetchClientInfoForChatDto, FetchFreelancerInfoForChatDto, ForgotPasswordDto, FreelancerAssessment, FreelancerAssessmentRequest, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerESignatureDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerResume, FreelancerSkill, FreelancerSkillCategoryEnum, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, GLOBAL_SETTING_PATTERN, GenerateContractDto, GetSubmissionDto, GetSubmitterDto, GetTemplateDto, GlobalSetting, 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 IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, INTERVIEW_INVITE_PATTERN, INTERVIEW_PATTERN, INVOICE_PATTERN, IN_APP_NOTIFICATION_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, InAppNotification, InitiatorTypeEnum, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewQuestionType, InterviewSkill, InterviewSkillItemDto, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_APPLICATION_PATTERN, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobApplicationStatus, JobBasicInformationDto, JobBasicInformationV2Dto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationAdminDto, JobLocationDto, JobLocationEnum$1 as JobLocationEnum, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, LLM_PATTERN, Lead, LoginDto, LoginUsingUuidDTO, LoginViaOtpDto, LogoutDto, MAINTENANCE_PATTERN, MarkCandidateStatusBulkDto, MarkCandidateStatusDto, McqStatusEnum, ModeOfHire, ModeOfWork, NOTIFICATION_PATTERN, NatureOfWork, NewCandidateDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, PlanFeature, PlanPricing, PlanPricingBillingCycleEnum, PlanTypeEnum, PreCheckoutCalculationDto, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, RESUME_PARSER_PATTERN, type RateLimitState, RateLimiter, Rating, RatingTypeEnum, RecommendationWeightageConfig, RecordAssessmentAnswerDto, RecordAssessmentAnswersDto, RecordingStatusEnum, RefreshDto, RefreshToken, RejectAIInterviewRescheduleRequestDto, RejectContractDto, RejectF2FInterviewRescheduleRequestDto, RemoveGlobalSettingDto, RequestPasswordChangeOtpForClientDto, RequestPasswordChangeOtpForFreelancerDto, ResetPasswordDto, ResetPasswordTokenValidationDto, ResetUserPasswordByAdminDto, ResubmitTimesheetDto, ResultStatusEnum, ResumeDataProcessingDto, ResumeParsingByUrlDto, SENSELOAF_PATTERN, SIGNATURE_PATTERN, SKILL_PATTERN, SMS_PATTERN, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, SaveSignatureDto, SelectedAnswerTypeEnum, SendAiAssessmentLinkDto, SendBackTimesheetsDto, SendGuestOtpDto, SendInterviewInviteDto, SendLoginOtpDto, SendNdaContractToFreelancerDto, SendOtpDto, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, SkipServiceAgreementFlowDto, SocialAuthDto, State, Step, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SubmitTimesheetDto, SubscriptionFeature, SystemPreference, SystemPreferenceDto, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, Task, TaskChecklistItem, TaskDeliverable, TaskDeliverableTypeEnum, TaskPriorityEnum, TaskResource, TaskResourceTypeEnum, TaskStatusEnum, TaskSubtask, TaskSubtaskStatusEnum, TestNotificationDto, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TransferFundsDto, TypeOfEmploymentEnum, UpdateAdminClientAccountStatusDto, UpdateAdminClientJobPostingRestrictionDto, UpdateAdminFreelancerAccountStatusDto, UpdateAdminRoleDto, UpdateAdminRoleStatusDto, UpdateAssessmentRequestStatusDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateCmsDto, UpdateCmsStatusDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInterviewBasicInformationDto, UpdateInterviewSettingDto, UpdateInterviewTypeInformationDto, UpdateInvoiceStatusDto, UpdateIsReadDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, ValidateEmailDto, ValidateEmailForLoginDto, ValidateMobileDto, VerifyGuestOtpDto, VerifyOnboardingTokenDto, VerifyOtpDto, VerifyPasswordChangeOtpForClientDto, VerifyPasswordChangeOtpForFreelancerDto, WALLET_ADMIN_PATTERN, WALLET_PATTERN, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZOOM_PATTERN, ZoomMeetingLog, createDiscordTransport, typeOfExperienceEnum };
|
|
4912
|
+
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, AI_INTERVIEW_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType$1 as AccountType, AddClientRemarkDto, AddGlobalSettingDto, AddTopupEscrowAmountDto, AdminCreateJobInformationDto, AdminExportClientV2OptimisedDto, AdminExportFreelancerV2OptimisedDto, AdminFreelancerCreateAccountDto, AdminJobBasicInformationV2Dto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentCreationDto, AiAssessmentStatusEnum, AiInterview, AiInterviewLinkGenerationDto, AiInterviewQuestionGenerateDto, AiInterviewRescheduleRequest, AiInterviewRescheduleRequestStatusEnum, AiInterviewStatusEnum, AiInterviewTemplateGenerationDto, AiQuestionItemDto, AlertBuilder, AlertCategory, type AlertKeyComponents, AlertSeverity, AnswerTypeEnum, ApplicationStatusEnum, ApproveTimesheetsDto, ArchiveSubmissionDto, AssessmentAnswer, AssessmentRequestStatusEnum, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, BillingCycleEnum, 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, CaptureAiAssessmentResultDto, CaptureAiInterviewResultPublicDto, CaseStudyDto, CategoryEmum, ChangeJobApplicationStatusBulkDto, ChangeJobApplicationStatusDto, ChatRMQAdapter, ChatTCPAdapter, CheckResumeEligibilityDto, City, ClientAddFundDto, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientESignatureDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, ClientServiceAgreementUploadDto, CloseJobDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractStatusEnum, ContractSummary, ContractSummaryPreferredEngagementTypeEnum, ContractSummaryStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, CreateAIInterviewRescheduleRequestDto, CreateAdminRoleDto, CreateCheckoutSessionDto, CreateClientDto, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateDefaultTimesheetLineDto, CreateDisputeDto, CreateF2FInterviewDirectDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateFreelancerTimesheetDto, CreateHiringDto, CreateInAppNotificationDto, CreateInterviewBasicInformationDto, CreateInterviewQuestionsDto, CreateInterviewSkillsDto, CreateInvoiceDto, CreateJobApplicationDto, CreateJobViaAIDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, CreateTaskDto, CreateUserSigningDto, CustomQuestionItemDto, DISPUTE_PATTERN, DOCUSEAL_PATTERN, DebitCommissionFteHiringDto, type DiscordAlertOptions, DiscordAlertService, type DiscordEmbed, type DiscordEmbedField, type DiscordEmbedFooter, DiscordTransport, type DiscordTransportOptions, type DiscordWebhookConfig, type DiscordWebhookPayload, Dispute, DisputeStatusEnum, DocuSeal, DocuSealMessageDto, DocuSealSubmitterDto, DocuSealTypeEnum, DocumentType, DurationTypeEnum, EMAIL_PATTERN, EducationDto, EscrowFundContractDto, EscrowWallet, EscrowWalletTransaction, EscrowWalletTransactionForEnum, EscrowWalletTransactionTypeEnum, EsignContractClientDto, EsignContractFreelancerDto, ExistingCandidateDto, 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, FetchClientInfoForChatDto, FetchFreelancerInfoForChatDto, ForgotPasswordDto, FreelancerAssessment, FreelancerAssessmentRequest, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerESignatureDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerResume, FreelancerSkill, FreelancerSkillCategoryEnum, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, GLOBAL_SETTING_PATTERN, GenerateContractDto, GetSubmissionDto, GetSubmitterDto, GetTemplateDto, GlobalSetting, 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 IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, INTERVIEW_INVITE_PATTERN, INTERVIEW_PATTERN, INVOICE_PATTERN, IN_APP_NOTIFICATION_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, InAppNotification, InitiatorTypeEnum, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewQuestionType, InterviewSkill, InterviewSkillItemDto, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_APPLICATION_PATTERN, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobApplicationStatus, JobBasicInformationDto, JobBasicInformationV2Dto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationAdminDto, JobLocationDto, JobLocationEnum$1 as JobLocationEnum, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, LLM_PATTERN, Lead, LoginDto, LoginUsingUuidDTO, LoginViaOtpDto, LogoutDto, MAINTENANCE_PATTERN, MarkCandidateStatusBulkDto, MarkCandidateStatusDto, MarkTaskAsCompletedDto, McqStatusEnum, ModeOfHire, ModeOfWork, NOTIFICATION_PATTERN, NatureOfWork, NewCandidateDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, PlanFeature, PlanPricing, PlanPricingBillingCycleEnum, PlanTypeEnum, PreCheckoutCalculationDto, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, RESUME_PARSER_PATTERN, type RateLimitState, RateLimiter, Rating, RatingTypeEnum, RecommendationWeightageConfig, RecordAssessmentAnswerDto, RecordAssessmentAnswersDto, RecordingStatusEnum, RefreshDto, RefreshToken, RejectAIInterviewRescheduleRequestDto, RejectContractDto, RejectF2FInterviewRescheduleRequestDto, RemoveGlobalSettingDto, RequestPasswordChangeOtpForClientDto, RequestPasswordChangeOtpForFreelancerDto, ResetPasswordDto, ResetPasswordTokenValidationDto, ResetUserPasswordByAdminDto, ResubmitTimesheetDto, ResultStatusEnum, ResumeDataProcessingDto, ResumeParsingByUrlDto, SENSELOAF_PATTERN, SIGNATURE_PATTERN, SKILL_PATTERN, SMS_PATTERN, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, SaveSignatureDto, SelectedAnswerTypeEnum, SendAiAssessmentLinkDto, SendBackTimesheetsDto, SendGuestOtpDto, SendInterviewInviteDto, SendLoginOtpDto, SendNdaContractToFreelancerDto, SendOtpDto, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, SkipServiceAgreementFlowDto, SocialAuthDto, State, Step, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SubmitTimesheetDto, SubscriptionFeature, SystemPreference, SystemPreferenceDto, TASK_PATTERN, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, Task, TaskChecklistItem, TaskDeliverable, TaskDeliverableTypeEnum, TaskPriorityEnum, TaskResource, TaskResourceTypeEnum, TaskStatusEnum, TaskSubtask, TaskSubtaskStatusEnum, TaskUuidParamDto, TestNotificationDto, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TransferFundsDto, TypeOfEmploymentEnum, UpdateAdminClientAccountStatusDto, UpdateAdminClientJobPostingRestrictionDto, UpdateAdminFreelancerAccountStatusDto, UpdateAdminRoleDto, UpdateAdminRoleStatusDto, UpdateAssessmentRequestStatusDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateCmsDto, UpdateCmsStatusDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateEstimateTimeDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInterviewBasicInformationDto, UpdateInterviewSettingDto, UpdateInterviewTypeInformationDto, UpdateInvoiceStatusDto, UpdateIsReadDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, UpdateTaskDto, User, UserRMQAdapter, UserTCPAdapter, ValidateEmailDto, ValidateEmailForLoginDto, ValidateMobileDto, VerifyGuestOtpDto, VerifyOnboardingTokenDto, VerifyOtpDto, VerifyPasswordChangeOtpForClientDto, VerifyPasswordChangeOtpForFreelancerDto, WALLET_ADMIN_PATTERN, WALLET_PATTERN, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZOOM_PATTERN, ZoomMeetingLog, createDiscordTransport, typeOfExperienceEnum };
|
package/dist/index.d.ts
CHANGED
|
@@ -4532,6 +4532,105 @@ declare class ArchiveSubmissionDto {
|
|
|
4532
4532
|
submissionId: number;
|
|
4533
4533
|
}
|
|
4534
4534
|
|
|
4535
|
+
declare const TASK_PATTERN: {
|
|
4536
|
+
createTask: string;
|
|
4537
|
+
fetchTaskForBusiness: string;
|
|
4538
|
+
fetchTaskForFreelancer: string;
|
|
4539
|
+
fetchTaskDetail: string;
|
|
4540
|
+
updateTask: string;
|
|
4541
|
+
deleteTask: string;
|
|
4542
|
+
addClientRemark: string;
|
|
4543
|
+
markTaskAsCompleted: string;
|
|
4544
|
+
updateEstimateTime: string;
|
|
4545
|
+
};
|
|
4546
|
+
|
|
4547
|
+
declare class TaskDeliverableDto$1 {
|
|
4548
|
+
name: string;
|
|
4549
|
+
description?: string;
|
|
4550
|
+
type?: string;
|
|
4551
|
+
}
|
|
4552
|
+
declare class TaskResourceDto$1 {
|
|
4553
|
+
name: string;
|
|
4554
|
+
description?: string;
|
|
4555
|
+
type?: string;
|
|
4556
|
+
url?: string;
|
|
4557
|
+
}
|
|
4558
|
+
declare class TaskChecklistItemDto$1 {
|
|
4559
|
+
item: string;
|
|
4560
|
+
notes?: string;
|
|
4561
|
+
}
|
|
4562
|
+
declare class TaskSubtaskDto$1 {
|
|
4563
|
+
name: string;
|
|
4564
|
+
status?: string;
|
|
4565
|
+
description?: string;
|
|
4566
|
+
}
|
|
4567
|
+
declare class CreateTaskDto {
|
|
4568
|
+
title: string;
|
|
4569
|
+
dueDate?: string;
|
|
4570
|
+
jobId?: string;
|
|
4571
|
+
freelancerId?: string;
|
|
4572
|
+
status?: string;
|
|
4573
|
+
description?: string;
|
|
4574
|
+
priority?: string;
|
|
4575
|
+
createdOn?: string;
|
|
4576
|
+
deliverables?: TaskDeliverableDto$1[];
|
|
4577
|
+
resources?: TaskResourceDto$1[];
|
|
4578
|
+
checklist?: TaskChecklistItemDto$1[];
|
|
4579
|
+
subtasks?: TaskSubtaskDto$1[];
|
|
4580
|
+
}
|
|
4581
|
+
|
|
4582
|
+
declare class TaskDeliverableDto {
|
|
4583
|
+
name: string;
|
|
4584
|
+
description?: string;
|
|
4585
|
+
type?: string;
|
|
4586
|
+
}
|
|
4587
|
+
declare class TaskResourceDto {
|
|
4588
|
+
name: string;
|
|
4589
|
+
description?: string;
|
|
4590
|
+
type?: string;
|
|
4591
|
+
url?: string;
|
|
4592
|
+
}
|
|
4593
|
+
declare class TaskChecklistItemDto {
|
|
4594
|
+
item: string;
|
|
4595
|
+
notes?: string;
|
|
4596
|
+
}
|
|
4597
|
+
declare class TaskSubtaskDto {
|
|
4598
|
+
name: string;
|
|
4599
|
+
status?: string;
|
|
4600
|
+
description?: string;
|
|
4601
|
+
}
|
|
4602
|
+
declare class UpdateTaskDto {
|
|
4603
|
+
title?: string;
|
|
4604
|
+
dueDate?: string;
|
|
4605
|
+
jobId?: string;
|
|
4606
|
+
freelancerId?: string;
|
|
4607
|
+
status?: string;
|
|
4608
|
+
description?: string;
|
|
4609
|
+
priority?: string;
|
|
4610
|
+
createdOn?: string;
|
|
4611
|
+
deliverables?: TaskDeliverableDto[];
|
|
4612
|
+
resources?: TaskResourceDto[];
|
|
4613
|
+
checklist?: TaskChecklistItemDto[];
|
|
4614
|
+
subtasks?: TaskSubtaskDto[];
|
|
4615
|
+
}
|
|
4616
|
+
|
|
4617
|
+
declare class TaskUuidParamDto {
|
|
4618
|
+
uuid: string;
|
|
4619
|
+
}
|
|
4620
|
+
|
|
4621
|
+
declare class AddClientRemarkDto {
|
|
4622
|
+
remark: string;
|
|
4623
|
+
}
|
|
4624
|
+
|
|
4625
|
+
declare class MarkTaskAsCompletedDto {
|
|
4626
|
+
status: string;
|
|
4627
|
+
}
|
|
4628
|
+
|
|
4629
|
+
declare class UpdateEstimateTimeDto {
|
|
4630
|
+
estimateHours: number;
|
|
4631
|
+
additionalWorkNote: string;
|
|
4632
|
+
}
|
|
4633
|
+
|
|
4535
4634
|
declare const UserTCPAdapter: () => MicroserviceOptions;
|
|
4536
4635
|
|
|
4537
4636
|
declare const JobTCPAdapter: () => MicroserviceOptions;
|
|
@@ -4810,4 +4909,4 @@ declare class SubscriptionFeature extends BaseEntity {
|
|
|
4810
4909
|
createSlug(): void;
|
|
4811
4910
|
}
|
|
4812
4911
|
|
|
4813
|
-
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, AI_INTERVIEW_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType$1 as AccountType, AddGlobalSettingDto, AddTopupEscrowAmountDto, AdminCreateJobInformationDto, AdminExportClientV2OptimisedDto, AdminExportFreelancerV2OptimisedDto, AdminFreelancerCreateAccountDto, AdminJobBasicInformationV2Dto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentCreationDto, AiAssessmentStatusEnum, AiInterview, AiInterviewLinkGenerationDto, AiInterviewQuestionGenerateDto, AiInterviewRescheduleRequest, AiInterviewRescheduleRequestStatusEnum, AiInterviewStatusEnum, AiInterviewTemplateGenerationDto, AiQuestionItemDto, AlertBuilder, AlertCategory, type AlertKeyComponents, AlertSeverity, AnswerTypeEnum, ApplicationStatusEnum, ApproveTimesheetsDto, ArchiveSubmissionDto, AssessmentAnswer, AssessmentRequestStatusEnum, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, BillingCycleEnum, 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, CaptureAiAssessmentResultDto, CaptureAiInterviewResultPublicDto, CaseStudyDto, CategoryEmum, ChangeJobApplicationStatusBulkDto, ChangeJobApplicationStatusDto, ChatRMQAdapter, ChatTCPAdapter, CheckResumeEligibilityDto, City, ClientAddFundDto, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientESignatureDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, ClientServiceAgreementUploadDto, CloseJobDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractStatusEnum, ContractSummary, ContractSummaryPreferredEngagementTypeEnum, ContractSummaryStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, CreateAIInterviewRescheduleRequestDto, CreateAdminRoleDto, CreateCheckoutSessionDto, CreateClientDto, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateDefaultTimesheetLineDto, CreateDisputeDto, CreateF2FInterviewDirectDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateFreelancerTimesheetDto, CreateHiringDto, CreateInAppNotificationDto, CreateInterviewBasicInformationDto, CreateInterviewQuestionsDto, CreateInterviewSkillsDto, CreateInvoiceDto, CreateJobApplicationDto, CreateJobViaAIDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, CreateUserSigningDto, CustomQuestionItemDto, DISPUTE_PATTERN, DOCUSEAL_PATTERN, DebitCommissionFteHiringDto, type DiscordAlertOptions, DiscordAlertService, type DiscordEmbed, type DiscordEmbedField, type DiscordEmbedFooter, DiscordTransport, type DiscordTransportOptions, type DiscordWebhookConfig, type DiscordWebhookPayload, Dispute, DisputeStatusEnum, DocuSeal, DocuSealMessageDto, DocuSealSubmitterDto, DocuSealTypeEnum, DocumentType, DurationTypeEnum, EMAIL_PATTERN, EducationDto, EscrowFundContractDto, EscrowWallet, EscrowWalletTransaction, EscrowWalletTransactionForEnum, EscrowWalletTransactionTypeEnum, EsignContractClientDto, EsignContractFreelancerDto, ExistingCandidateDto, 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, FetchClientInfoForChatDto, FetchFreelancerInfoForChatDto, ForgotPasswordDto, FreelancerAssessment, FreelancerAssessmentRequest, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerESignatureDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerResume, FreelancerSkill, FreelancerSkillCategoryEnum, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, GLOBAL_SETTING_PATTERN, GenerateContractDto, GetSubmissionDto, GetSubmitterDto, GetTemplateDto, GlobalSetting, 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 IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, INTERVIEW_INVITE_PATTERN, INTERVIEW_PATTERN, INVOICE_PATTERN, IN_APP_NOTIFICATION_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, InAppNotification, InitiatorTypeEnum, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewQuestionType, InterviewSkill, InterviewSkillItemDto, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_APPLICATION_PATTERN, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobApplicationStatus, JobBasicInformationDto, JobBasicInformationV2Dto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationAdminDto, JobLocationDto, JobLocationEnum$1 as JobLocationEnum, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, LLM_PATTERN, Lead, LoginDto, LoginUsingUuidDTO, LoginViaOtpDto, LogoutDto, MAINTENANCE_PATTERN, MarkCandidateStatusBulkDto, MarkCandidateStatusDto, McqStatusEnum, ModeOfHire, ModeOfWork, NOTIFICATION_PATTERN, NatureOfWork, NewCandidateDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, PlanFeature, PlanPricing, PlanPricingBillingCycleEnum, PlanTypeEnum, PreCheckoutCalculationDto, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, RESUME_PARSER_PATTERN, type RateLimitState, RateLimiter, Rating, RatingTypeEnum, RecommendationWeightageConfig, RecordAssessmentAnswerDto, RecordAssessmentAnswersDto, RecordingStatusEnum, RefreshDto, RefreshToken, RejectAIInterviewRescheduleRequestDto, RejectContractDto, RejectF2FInterviewRescheduleRequestDto, RemoveGlobalSettingDto, RequestPasswordChangeOtpForClientDto, RequestPasswordChangeOtpForFreelancerDto, ResetPasswordDto, ResetPasswordTokenValidationDto, ResetUserPasswordByAdminDto, ResubmitTimesheetDto, ResultStatusEnum, ResumeDataProcessingDto, ResumeParsingByUrlDto, SENSELOAF_PATTERN, SIGNATURE_PATTERN, SKILL_PATTERN, SMS_PATTERN, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, SaveSignatureDto, SelectedAnswerTypeEnum, SendAiAssessmentLinkDto, SendBackTimesheetsDto, SendGuestOtpDto, SendInterviewInviteDto, SendLoginOtpDto, SendNdaContractToFreelancerDto, SendOtpDto, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, SkipServiceAgreementFlowDto, SocialAuthDto, State, Step, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SubmitTimesheetDto, SubscriptionFeature, SystemPreference, SystemPreferenceDto, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, Task, TaskChecklistItem, TaskDeliverable, TaskDeliverableTypeEnum, TaskPriorityEnum, TaskResource, TaskResourceTypeEnum, TaskStatusEnum, TaskSubtask, TaskSubtaskStatusEnum, TestNotificationDto, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TransferFundsDto, TypeOfEmploymentEnum, UpdateAdminClientAccountStatusDto, UpdateAdminClientJobPostingRestrictionDto, UpdateAdminFreelancerAccountStatusDto, UpdateAdminRoleDto, UpdateAdminRoleStatusDto, UpdateAssessmentRequestStatusDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateCmsDto, UpdateCmsStatusDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInterviewBasicInformationDto, UpdateInterviewSettingDto, UpdateInterviewTypeInformationDto, UpdateInvoiceStatusDto, UpdateIsReadDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, ValidateEmailDto, ValidateEmailForLoginDto, ValidateMobileDto, VerifyGuestOtpDto, VerifyOnboardingTokenDto, VerifyOtpDto, VerifyPasswordChangeOtpForClientDto, VerifyPasswordChangeOtpForFreelancerDto, WALLET_ADMIN_PATTERN, WALLET_PATTERN, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZOOM_PATTERN, ZoomMeetingLog, createDiscordTransport, typeOfExperienceEnum };
|
|
4912
|
+
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, AI_INTERVIEW_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType$1 as AccountType, AddClientRemarkDto, AddGlobalSettingDto, AddTopupEscrowAmountDto, AdminCreateJobInformationDto, AdminExportClientV2OptimisedDto, AdminExportFreelancerV2OptimisedDto, AdminFreelancerCreateAccountDto, AdminJobBasicInformationV2Dto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentCreationDto, AiAssessmentStatusEnum, AiInterview, AiInterviewLinkGenerationDto, AiInterviewQuestionGenerateDto, AiInterviewRescheduleRequest, AiInterviewRescheduleRequestStatusEnum, AiInterviewStatusEnum, AiInterviewTemplateGenerationDto, AiQuestionItemDto, AlertBuilder, AlertCategory, type AlertKeyComponents, AlertSeverity, AnswerTypeEnum, ApplicationStatusEnum, ApproveTimesheetsDto, ArchiveSubmissionDto, AssessmentAnswer, AssessmentRequestStatusEnum, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, AttachPermissionsToRoleDto, BANK_PATTERN, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, BillingCycleEnum, 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, CaptureAiAssessmentResultDto, CaptureAiInterviewResultPublicDto, CaseStudyDto, CategoryEmum, ChangeJobApplicationStatusBulkDto, ChangeJobApplicationStatusDto, ChatRMQAdapter, ChatTCPAdapter, CheckResumeEligibilityDto, City, ClientAddFundDto, ClientCandidatePreference, ClientCandidatePreferenceEnum, ClientChangePasswordDto, ClientCreateAccountDto, ClientESignatureDto, ClientFreelancerRecommendation, ClientProfileQuestionDto, ClientServiceAgreementUploadDto, CloseJobDto, Cms, Commission, CommissionTypeEnum, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Contract, ContractRMQAdapter, ContractStatusEnum, ContractSummary, ContractSummaryPreferredEngagementTypeEnum, ContractSummaryStatusEnum, ContractTCPAdapter, ContractTypeEnum, Country, CreateAIInterviewRescheduleRequestDto, CreateAdminRoleDto, CreateCheckoutSessionDto, CreateClientDto, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateDefaultTimesheetLineDto, CreateDisputeDto, CreateF2FInterviewDirectDto, CreateF2FInterviewDto, CreateF2FInterviewRescheduleRequestDto, CreateFreelancerDto, CreateFreelancerTimesheetDto, CreateHiringDto, CreateInAppNotificationDto, CreateInterviewBasicInformationDto, CreateInterviewQuestionsDto, CreateInterviewSkillsDto, CreateInvoiceDto, CreateJobApplicationDto, CreateJobViaAIDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, CreateTaskDto, CreateUserSigningDto, CustomQuestionItemDto, DISPUTE_PATTERN, DOCUSEAL_PATTERN, DebitCommissionFteHiringDto, type DiscordAlertOptions, DiscordAlertService, type DiscordEmbed, type DiscordEmbedField, type DiscordEmbedFooter, DiscordTransport, type DiscordTransportOptions, type DiscordWebhookConfig, type DiscordWebhookPayload, Dispute, DisputeStatusEnum, DocuSeal, DocuSealMessageDto, DocuSealSubmitterDto, DocuSealTypeEnum, DocumentType, DurationTypeEnum, EMAIL_PATTERN, EducationDto, EscrowFundContractDto, EscrowWallet, EscrowWalletTransaction, EscrowWalletTransactionForEnum, EscrowWalletTransactionTypeEnum, EsignContractClientDto, EsignContractFreelancerDto, ExistingCandidateDto, 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, FetchClientInfoForChatDto, FetchFreelancerInfoForChatDto, ForgotPasswordDto, FreelancerAssessment, FreelancerAssessmentRequest, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerESignatureDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerInitiateMcqAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerResume, FreelancerSkill, FreelancerSkillCategoryEnum, FreelancerSkillDto, FreelancerSkipAiAssessmentDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, GLOBAL_SETTING_PATTERN, GenerateContractDto, GetSubmissionDto, GetSubmitterDto, GetTemplateDto, GlobalSetting, 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 IFetchQuestionQuery, type IFetchQuestionResponse, type IFetchRatingResponse, type IFetchSubAdminByIdQuery, type IFetchSubAdminByIdResponse, type IFetchSubAdminQuery, type IFetchSubAdminResponse, INTERVIEW_INVITE_PATTERN, INTERVIEW_PATTERN, INVOICE_PATTERN, IN_APP_NOTIFICATION_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, InAppNotification, InitiatorTypeEnum, Interview, InterviewInvite, InterviewInviteDto, InterviewInviteStatusEnum, InterviewQuestion, InterviewQuestionType, InterviewSkill, InterviewSkillItemDto, InterviewStatusEnum, Invoice, InvoicePaymentStatusEnum, InvoiceStatusEnum, InvoiceTypeEnum, JOB_APPLICATION_PATTERN, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobApplicationStatus, JobBasicInformationDto, JobBasicInformationV2Dto, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationAdminDto, JobLocationDto, JobLocationEnum$1 as JobLocationEnum, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, LLM_PATTERN, Lead, LoginDto, LoginUsingUuidDTO, LoginViaOtpDto, LogoutDto, MAINTENANCE_PATTERN, MarkCandidateStatusBulkDto, MarkCandidateStatusDto, MarkTaskAsCompletedDto, McqStatusEnum, ModeOfHire, ModeOfWork, NOTIFICATION_PATTERN, NatureOfWork, NewCandidateDto, NotificationRMQAdapter, NotificationTCPAdapter, ONBOARDING_PATTERN, ONBOARDING_QUESTION_PATTERN, OTP_PATTERN, OnboardingStepEnum, Otp, PERMISSION_PATTERN, PLAN_PATTERN, PROFILE_PATTERN, Permission, Plan, PlanFeature, PlanPricing, PlanPricingBillingCycleEnum, PlanTypeEnum, PreCheckoutCalculationDto, ProjectDto, Provider, Question, QuestionFor, QuestionForEnum, RATING_PATTERN, RESUME_PARSER_PATTERN, type RateLimitState, RateLimiter, Rating, RatingTypeEnum, RecommendationWeightageConfig, RecordAssessmentAnswerDto, RecordAssessmentAnswersDto, RecordingStatusEnum, RefreshDto, RefreshToken, RejectAIInterviewRescheduleRequestDto, RejectContractDto, RejectF2FInterviewRescheduleRequestDto, RemoveGlobalSettingDto, RequestPasswordChangeOtpForClientDto, RequestPasswordChangeOtpForFreelancerDto, ResetPasswordDto, ResetPasswordTokenValidationDto, ResetUserPasswordByAdminDto, ResubmitTimesheetDto, ResultStatusEnum, ResumeDataProcessingDto, ResumeParsingByUrlDto, SENSELOAF_PATTERN, SIGNATURE_PATTERN, SKILL_PATTERN, SMS_PATTERN, STATE_PATTERN, STRIPE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, SaveSignatureDto, SelectedAnswerTypeEnum, SendAiAssessmentLinkDto, SendBackTimesheetsDto, SendGuestOtpDto, SendInterviewInviteDto, SendLoginOtpDto, SendNdaContractToFreelancerDto, SendOtpDto, SenseloafLog, SequenceGenerator, SetPasswordDto, SignContractForClientDto, SignContractForFreelancerDto, Signature, Skill, SkillCatalog, SkipServiceAgreementFlowDto, SocialAuthDto, State, Step, StripeLog, StripeTransaction, StripeTransactionStatusEnum, StripeTransactionTypeEnum, SubmitTimesheetDto, SubscriptionFeature, SystemPreference, SystemPreferenceDto, TASK_PATTERN, TIMESHEET_CLIENT_PATTERN, TIMESHEET_FREELANCER_PATTERN, Task, TaskChecklistItem, TaskDeliverable, TaskDeliverableTypeEnum, TaskPriorityEnum, TaskResource, TaskResourceTypeEnum, TaskStatusEnum, TaskSubtask, TaskSubtaskStatusEnum, TaskUuidParamDto, TestNotificationDto, Timesheet, TimesheetLine, TimesheetLineHistory, TimesheetLineHistoryStatusEnum, TimesheetLineStatusEnum, TimesheetLogs, TimesheetStatusEnum, TimesheetSubmissionActionEnum, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TransferFundsDto, TypeOfEmploymentEnum, UpdateAdminClientAccountStatusDto, UpdateAdminClientJobPostingRestrictionDto, UpdateAdminFreelancerAccountStatusDto, UpdateAdminRoleDto, UpdateAdminRoleStatusDto, UpdateAssessmentRequestStatusDto, UpdateClientAccountStatusDto, UpdateClientDto, UpdateCmsDto, UpdateCmsStatusDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateEstimateTimeDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateFreelancerTimesheetDto, UpdateInterviewBasicInformationDto, UpdateInterviewSettingDto, UpdateInterviewTypeInformationDto, UpdateInvoiceStatusDto, UpdateIsReadDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, UpdateTaskDto, User, UserRMQAdapter, UserTCPAdapter, ValidateEmailDto, ValidateEmailForLoginDto, ValidateMobileDto, VerifyGuestOtpDto, VerifyOnboardingTokenDto, VerifyOtpDto, VerifyPasswordChangeOtpForClientDto, VerifyPasswordChangeOtpForFreelancerDto, WALLET_ADMIN_PATTERN, WALLET_PATTERN, Wallet, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZOOM_PATTERN, ZoomMeetingLog, createDiscordTransport, typeOfExperienceEnum };
|
package/dist/index.js
CHANGED
|
@@ -46,6 +46,7 @@ __export(index_exports, {
|
|
|
46
46
|
AUTHENTICATION_PATTERN: () => AUTHENTICATION_PATTERN,
|
|
47
47
|
AccountStatus: () => AccountStatus,
|
|
48
48
|
AccountType: () => AccountType2,
|
|
49
|
+
AddClientRemarkDto: () => AddClientRemarkDto,
|
|
49
50
|
AddGlobalSettingDto: () => AddGlobalSettingDto,
|
|
50
51
|
AddTopupEscrowAmountDto: () => AddTopupEscrowAmountDto,
|
|
51
52
|
AdminCreateJobInformationDto: () => AdminCreateJobInformationDto,
|
|
@@ -163,6 +164,7 @@ __export(index_exports, {
|
|
|
163
164
|
CreateQuestionDto: () => CreateQuestionDto,
|
|
164
165
|
CreateRatingDto: () => CreateRatingDto,
|
|
165
166
|
CreateSubAdminDto: () => CreateSubAdminDto,
|
|
167
|
+
CreateTaskDto: () => CreateTaskDto,
|
|
166
168
|
CreateUserSigningDto: () => CreateUserSigningDto,
|
|
167
169
|
CustomQuestionItemDto: () => CustomQuestionItemDto,
|
|
168
170
|
DISPUTE_PATTERN: () => DISPUTE_PATTERN,
|
|
@@ -303,6 +305,7 @@ __export(index_exports, {
|
|
|
303
305
|
MAINTENANCE_PATTERN: () => MAINTENANCE_PATTERN,
|
|
304
306
|
MarkCandidateStatusBulkDto: () => MarkCandidateStatusBulkDto,
|
|
305
307
|
MarkCandidateStatusDto: () => MarkCandidateStatusDto,
|
|
308
|
+
MarkTaskAsCompletedDto: () => MarkTaskAsCompletedDto,
|
|
306
309
|
McqStatusEnum: () => McqStatusEnum,
|
|
307
310
|
ModeOfHire: () => ModeOfHire,
|
|
308
311
|
ModeOfWork: () => ModeOfWork,
|
|
@@ -392,6 +395,7 @@ __export(index_exports, {
|
|
|
392
395
|
SubscriptionFeature: () => SubscriptionFeature,
|
|
393
396
|
SystemPreference: () => SystemPreference,
|
|
394
397
|
SystemPreferenceDto: () => SystemPreferenceDto,
|
|
398
|
+
TASK_PATTERN: () => TASK_PATTERN,
|
|
395
399
|
TIMESHEET_CLIENT_PATTERN: () => TIMESHEET_CLIENT_PATTERN,
|
|
396
400
|
TIMESHEET_FREELANCER_PATTERN: () => TIMESHEET_FREELANCER_PATTERN,
|
|
397
401
|
Task: () => Task,
|
|
@@ -404,6 +408,7 @@ __export(index_exports, {
|
|
|
404
408
|
TaskStatusEnum: () => TaskStatusEnum,
|
|
405
409
|
TaskSubtask: () => TaskSubtask,
|
|
406
410
|
TaskSubtaskStatusEnum: () => TaskSubtaskStatusEnum,
|
|
411
|
+
TaskUuidParamDto: () => TaskUuidParamDto,
|
|
407
412
|
TestNotificationDto: () => TestNotificationDto,
|
|
408
413
|
Timesheet: () => Timesheet,
|
|
409
414
|
TimesheetLine: () => TimesheetLine,
|
|
@@ -430,6 +435,7 @@ __export(index_exports, {
|
|
|
430
435
|
UpdateCompanyMemberDto: () => UpdateCompanyMemberDto,
|
|
431
436
|
UpdateCompanyProfileDto: () => UpdateCompanyProfileDto,
|
|
432
437
|
UpdateCompanyRoleDto: () => UpdateCompanyRoleDto,
|
|
438
|
+
UpdateEstimateTimeDto: () => UpdateEstimateTimeDto,
|
|
433
439
|
UpdateFreelancerDto: () => UpdateFreelancerDto,
|
|
434
440
|
UpdateFreelancerProfileDto: () => UpdateFreelancerProfileDto,
|
|
435
441
|
UpdateFreelancerTimesheetDto: () => UpdateFreelancerTimesheetDto,
|
|
@@ -440,6 +446,7 @@ __export(index_exports, {
|
|
|
440
446
|
UpdateIsReadDto: () => UpdateIsReadDto,
|
|
441
447
|
UpdateSubAdminAccountStatusDto: () => UpdateSubAdminAccountStatusDto,
|
|
442
448
|
UpdateSubAdminDto: () => UpdateSubAdminDto,
|
|
449
|
+
UpdateTaskDto: () => UpdateTaskDto,
|
|
443
450
|
User: () => User,
|
|
444
451
|
UserRMQAdapter: () => UserRMQAdapter,
|
|
445
452
|
UserTCPAdapter: () => UserTCPAdapter,
|
|
@@ -12757,6 +12764,277 @@ __decorateClass([
|
|
|
12757
12764
|
(0, import_class_transformer36.Type)(() => Number)
|
|
12758
12765
|
], ArchiveSubmissionDto.prototype, "submissionId", 2);
|
|
12759
12766
|
|
|
12767
|
+
// src/modules/task/pattern/pattern.ts
|
|
12768
|
+
var TASK_PATTERN = {
|
|
12769
|
+
createTask: "create.task",
|
|
12770
|
+
fetchTaskForBusiness: "fetch.task.for.business",
|
|
12771
|
+
fetchTaskForFreelancer: "fetch.task.for.freelancer",
|
|
12772
|
+
fetchTaskDetail: "fetch.task.detail",
|
|
12773
|
+
updateTask: "update.task",
|
|
12774
|
+
deleteTask: "delete.task",
|
|
12775
|
+
addClientRemark: "task.client.remark",
|
|
12776
|
+
markTaskAsCompleted: "task.client.mark.as.completed",
|
|
12777
|
+
updateEstimateTime: "task.freelancer.update.estimate.time"
|
|
12778
|
+
};
|
|
12779
|
+
|
|
12780
|
+
// src/modules/task/dto/create-task.dto.ts
|
|
12781
|
+
var import_class_validator166 = require("class-validator");
|
|
12782
|
+
var import_class_transformer37 = require("class-transformer");
|
|
12783
|
+
var TaskDeliverableDto = class {
|
|
12784
|
+
};
|
|
12785
|
+
__decorateClass([
|
|
12786
|
+
(0, import_class_validator166.IsString)()
|
|
12787
|
+
], TaskDeliverableDto.prototype, "name", 2);
|
|
12788
|
+
__decorateClass([
|
|
12789
|
+
(0, import_class_validator166.IsOptional)(),
|
|
12790
|
+
(0, import_class_validator166.IsString)()
|
|
12791
|
+
], TaskDeliverableDto.prototype, "description", 2);
|
|
12792
|
+
__decorateClass([
|
|
12793
|
+
(0, import_class_validator166.IsOptional)(),
|
|
12794
|
+
(0, import_class_validator166.IsString)()
|
|
12795
|
+
], TaskDeliverableDto.prototype, "type", 2);
|
|
12796
|
+
var TaskResourceDto = class {
|
|
12797
|
+
};
|
|
12798
|
+
__decorateClass([
|
|
12799
|
+
(0, import_class_validator166.IsString)()
|
|
12800
|
+
], TaskResourceDto.prototype, "name", 2);
|
|
12801
|
+
__decorateClass([
|
|
12802
|
+
(0, import_class_validator166.IsOptional)(),
|
|
12803
|
+
(0, import_class_validator166.IsString)()
|
|
12804
|
+
], TaskResourceDto.prototype, "description", 2);
|
|
12805
|
+
__decorateClass([
|
|
12806
|
+
(0, import_class_validator166.IsOptional)(),
|
|
12807
|
+
(0, import_class_validator166.IsString)()
|
|
12808
|
+
], TaskResourceDto.prototype, "type", 2);
|
|
12809
|
+
__decorateClass([
|
|
12810
|
+
(0, import_class_validator166.IsOptional)(),
|
|
12811
|
+
(0, import_class_validator166.IsString)()
|
|
12812
|
+
], TaskResourceDto.prototype, "url", 2);
|
|
12813
|
+
var TaskChecklistItemDto = class {
|
|
12814
|
+
};
|
|
12815
|
+
__decorateClass([
|
|
12816
|
+
(0, import_class_validator166.IsString)()
|
|
12817
|
+
], TaskChecklistItemDto.prototype, "item", 2);
|
|
12818
|
+
__decorateClass([
|
|
12819
|
+
(0, import_class_validator166.IsOptional)(),
|
|
12820
|
+
(0, import_class_validator166.IsString)()
|
|
12821
|
+
], TaskChecklistItemDto.prototype, "notes", 2);
|
|
12822
|
+
var TaskSubtaskDto = class {
|
|
12823
|
+
};
|
|
12824
|
+
__decorateClass([
|
|
12825
|
+
(0, import_class_validator166.IsString)()
|
|
12826
|
+
], TaskSubtaskDto.prototype, "name", 2);
|
|
12827
|
+
__decorateClass([
|
|
12828
|
+
(0, import_class_validator166.IsOptional)(),
|
|
12829
|
+
(0, import_class_validator166.IsString)()
|
|
12830
|
+
], TaskSubtaskDto.prototype, "status", 2);
|
|
12831
|
+
__decorateClass([
|
|
12832
|
+
(0, import_class_validator166.IsOptional)(),
|
|
12833
|
+
(0, import_class_validator166.IsString)()
|
|
12834
|
+
], TaskSubtaskDto.prototype, "description", 2);
|
|
12835
|
+
var CreateTaskDto = class {
|
|
12836
|
+
};
|
|
12837
|
+
__decorateClass([
|
|
12838
|
+
(0, import_class_validator166.IsString)()
|
|
12839
|
+
], CreateTaskDto.prototype, "title", 2);
|
|
12840
|
+
__decorateClass([
|
|
12841
|
+
(0, import_class_validator166.IsDateString)()
|
|
12842
|
+
], CreateTaskDto.prototype, "dueDate", 2);
|
|
12843
|
+
__decorateClass([
|
|
12844
|
+
(0, import_class_validator166.IsString)()
|
|
12845
|
+
], CreateTaskDto.prototype, "jobId", 2);
|
|
12846
|
+
__decorateClass([
|
|
12847
|
+
(0, import_class_validator166.IsString)()
|
|
12848
|
+
], CreateTaskDto.prototype, "freelancerId", 2);
|
|
12849
|
+
__decorateClass([
|
|
12850
|
+
(0, import_class_validator166.IsString)()
|
|
12851
|
+
], CreateTaskDto.prototype, "status", 2);
|
|
12852
|
+
__decorateClass([
|
|
12853
|
+
(0, import_class_validator166.IsOptional)(),
|
|
12854
|
+
(0, import_class_validator166.IsString)()
|
|
12855
|
+
], CreateTaskDto.prototype, "description", 2);
|
|
12856
|
+
__decorateClass([
|
|
12857
|
+
(0, import_class_validator166.IsString)()
|
|
12858
|
+
], CreateTaskDto.prototype, "priority", 2);
|
|
12859
|
+
__decorateClass([
|
|
12860
|
+
(0, import_class_validator166.IsDateString)()
|
|
12861
|
+
], CreateTaskDto.prototype, "createdOn", 2);
|
|
12862
|
+
__decorateClass([
|
|
12863
|
+
(0, import_class_validator166.IsOptional)(),
|
|
12864
|
+
(0, import_class_validator166.IsArray)(),
|
|
12865
|
+
(0, import_class_validator166.ValidateNested)({ each: true }),
|
|
12866
|
+
(0, import_class_transformer37.Type)(() => TaskDeliverableDto)
|
|
12867
|
+
], CreateTaskDto.prototype, "deliverables", 2);
|
|
12868
|
+
__decorateClass([
|
|
12869
|
+
(0, import_class_validator166.IsOptional)(),
|
|
12870
|
+
(0, import_class_validator166.IsArray)(),
|
|
12871
|
+
(0, import_class_validator166.ValidateNested)({ each: true }),
|
|
12872
|
+
(0, import_class_transformer37.Type)(() => TaskResourceDto)
|
|
12873
|
+
], CreateTaskDto.prototype, "resources", 2);
|
|
12874
|
+
__decorateClass([
|
|
12875
|
+
(0, import_class_validator166.IsOptional)(),
|
|
12876
|
+
(0, import_class_validator166.IsArray)(),
|
|
12877
|
+
(0, import_class_validator166.ValidateNested)({ each: true }),
|
|
12878
|
+
(0, import_class_transformer37.Type)(() => TaskChecklistItemDto)
|
|
12879
|
+
], CreateTaskDto.prototype, "checklist", 2);
|
|
12880
|
+
__decorateClass([
|
|
12881
|
+
(0, import_class_validator166.IsOptional)(),
|
|
12882
|
+
(0, import_class_validator166.IsArray)(),
|
|
12883
|
+
(0, import_class_validator166.ValidateNested)({ each: true }),
|
|
12884
|
+
(0, import_class_transformer37.Type)(() => TaskSubtaskDto)
|
|
12885
|
+
], CreateTaskDto.prototype, "subtasks", 2);
|
|
12886
|
+
|
|
12887
|
+
// src/modules/task/dto/update-task.dto.ts
|
|
12888
|
+
var import_class_validator167 = require("class-validator");
|
|
12889
|
+
var import_class_transformer38 = require("class-transformer");
|
|
12890
|
+
var TaskDeliverableDto2 = class {
|
|
12891
|
+
};
|
|
12892
|
+
__decorateClass([
|
|
12893
|
+
(0, import_class_validator167.IsString)()
|
|
12894
|
+
], TaskDeliverableDto2.prototype, "name", 2);
|
|
12895
|
+
__decorateClass([
|
|
12896
|
+
(0, import_class_validator167.IsOptional)(),
|
|
12897
|
+
(0, import_class_validator167.IsString)()
|
|
12898
|
+
], TaskDeliverableDto2.prototype, "description", 2);
|
|
12899
|
+
__decorateClass([
|
|
12900
|
+
(0, import_class_validator167.IsOptional)(),
|
|
12901
|
+
(0, import_class_validator167.IsString)()
|
|
12902
|
+
], TaskDeliverableDto2.prototype, "type", 2);
|
|
12903
|
+
var TaskResourceDto2 = class {
|
|
12904
|
+
};
|
|
12905
|
+
__decorateClass([
|
|
12906
|
+
(0, import_class_validator167.IsString)()
|
|
12907
|
+
], TaskResourceDto2.prototype, "name", 2);
|
|
12908
|
+
__decorateClass([
|
|
12909
|
+
(0, import_class_validator167.IsOptional)(),
|
|
12910
|
+
(0, import_class_validator167.IsString)()
|
|
12911
|
+
], TaskResourceDto2.prototype, "description", 2);
|
|
12912
|
+
__decorateClass([
|
|
12913
|
+
(0, import_class_validator167.IsOptional)(),
|
|
12914
|
+
(0, import_class_validator167.IsString)()
|
|
12915
|
+
], TaskResourceDto2.prototype, "type", 2);
|
|
12916
|
+
__decorateClass([
|
|
12917
|
+
(0, import_class_validator167.IsOptional)(),
|
|
12918
|
+
(0, import_class_validator167.IsString)()
|
|
12919
|
+
], TaskResourceDto2.prototype, "url", 2);
|
|
12920
|
+
var TaskChecklistItemDto2 = class {
|
|
12921
|
+
};
|
|
12922
|
+
__decorateClass([
|
|
12923
|
+
(0, import_class_validator167.IsString)()
|
|
12924
|
+
], TaskChecklistItemDto2.prototype, "item", 2);
|
|
12925
|
+
__decorateClass([
|
|
12926
|
+
(0, import_class_validator167.IsOptional)(),
|
|
12927
|
+
(0, import_class_validator167.IsString)()
|
|
12928
|
+
], TaskChecklistItemDto2.prototype, "notes", 2);
|
|
12929
|
+
var TaskSubtaskDto2 = class {
|
|
12930
|
+
};
|
|
12931
|
+
__decorateClass([
|
|
12932
|
+
(0, import_class_validator167.IsString)()
|
|
12933
|
+
], TaskSubtaskDto2.prototype, "name", 2);
|
|
12934
|
+
__decorateClass([
|
|
12935
|
+
(0, import_class_validator167.IsOptional)(),
|
|
12936
|
+
(0, import_class_validator167.IsString)()
|
|
12937
|
+
], TaskSubtaskDto2.prototype, "status", 2);
|
|
12938
|
+
__decorateClass([
|
|
12939
|
+
(0, import_class_validator167.IsOptional)(),
|
|
12940
|
+
(0, import_class_validator167.IsString)()
|
|
12941
|
+
], TaskSubtaskDto2.prototype, "description", 2);
|
|
12942
|
+
var UpdateTaskDto = class {
|
|
12943
|
+
};
|
|
12944
|
+
__decorateClass([
|
|
12945
|
+
(0, import_class_validator167.IsOptional)(),
|
|
12946
|
+
(0, import_class_validator167.IsString)()
|
|
12947
|
+
], UpdateTaskDto.prototype, "title", 2);
|
|
12948
|
+
__decorateClass([
|
|
12949
|
+
(0, import_class_validator167.IsOptional)(),
|
|
12950
|
+
(0, import_class_validator167.IsDateString)()
|
|
12951
|
+
], UpdateTaskDto.prototype, "dueDate", 2);
|
|
12952
|
+
__decorateClass([
|
|
12953
|
+
(0, import_class_validator167.IsOptional)(),
|
|
12954
|
+
(0, import_class_validator167.IsString)()
|
|
12955
|
+
], UpdateTaskDto.prototype, "jobId", 2);
|
|
12956
|
+
__decorateClass([
|
|
12957
|
+
(0, import_class_validator167.IsOptional)(),
|
|
12958
|
+
(0, import_class_validator167.IsString)()
|
|
12959
|
+
], UpdateTaskDto.prototype, "freelancerId", 2);
|
|
12960
|
+
__decorateClass([
|
|
12961
|
+
(0, import_class_validator167.IsOptional)(),
|
|
12962
|
+
(0, import_class_validator167.IsString)()
|
|
12963
|
+
], UpdateTaskDto.prototype, "status", 2);
|
|
12964
|
+
__decorateClass([
|
|
12965
|
+
(0, import_class_validator167.IsOptional)(),
|
|
12966
|
+
(0, import_class_validator167.IsString)()
|
|
12967
|
+
], UpdateTaskDto.prototype, "description", 2);
|
|
12968
|
+
__decorateClass([
|
|
12969
|
+
(0, import_class_validator167.IsOptional)(),
|
|
12970
|
+
(0, import_class_validator167.IsString)()
|
|
12971
|
+
], UpdateTaskDto.prototype, "priority", 2);
|
|
12972
|
+
__decorateClass([
|
|
12973
|
+
(0, import_class_validator167.IsOptional)(),
|
|
12974
|
+
(0, import_class_validator167.IsDateString)()
|
|
12975
|
+
], UpdateTaskDto.prototype, "createdOn", 2);
|
|
12976
|
+
__decorateClass([
|
|
12977
|
+
(0, import_class_validator167.IsOptional)(),
|
|
12978
|
+
(0, import_class_validator167.IsArray)(),
|
|
12979
|
+
(0, import_class_validator167.ValidateNested)({ each: true }),
|
|
12980
|
+
(0, import_class_transformer38.Type)(() => TaskDeliverableDto2)
|
|
12981
|
+
], UpdateTaskDto.prototype, "deliverables", 2);
|
|
12982
|
+
__decorateClass([
|
|
12983
|
+
(0, import_class_validator167.IsOptional)(),
|
|
12984
|
+
(0, import_class_validator167.IsArray)(),
|
|
12985
|
+
(0, import_class_validator167.ValidateNested)({ each: true }),
|
|
12986
|
+
(0, import_class_transformer38.Type)(() => TaskResourceDto2)
|
|
12987
|
+
], UpdateTaskDto.prototype, "resources", 2);
|
|
12988
|
+
__decorateClass([
|
|
12989
|
+
(0, import_class_validator167.IsOptional)(),
|
|
12990
|
+
(0, import_class_validator167.IsArray)(),
|
|
12991
|
+
(0, import_class_validator167.ValidateNested)({ each: true }),
|
|
12992
|
+
(0, import_class_transformer38.Type)(() => TaskChecklistItemDto2)
|
|
12993
|
+
], UpdateTaskDto.prototype, "checklist", 2);
|
|
12994
|
+
__decorateClass([
|
|
12995
|
+
(0, import_class_validator167.IsOptional)(),
|
|
12996
|
+
(0, import_class_validator167.IsArray)(),
|
|
12997
|
+
(0, import_class_validator167.ValidateNested)({ each: true }),
|
|
12998
|
+
(0, import_class_transformer38.Type)(() => TaskSubtaskDto2)
|
|
12999
|
+
], UpdateTaskDto.prototype, "subtasks", 2);
|
|
13000
|
+
|
|
13001
|
+
// src/modules/task/dto/task-uuid-param.dto.ts
|
|
13002
|
+
var import_class_validator168 = require("class-validator");
|
|
13003
|
+
var TaskUuidParamDto = class {
|
|
13004
|
+
};
|
|
13005
|
+
__decorateClass([
|
|
13006
|
+
(0, import_class_validator168.IsString)()
|
|
13007
|
+
], TaskUuidParamDto.prototype, "uuid", 2);
|
|
13008
|
+
|
|
13009
|
+
// src/modules/task/dto/add-client-remark.dto.ts
|
|
13010
|
+
var import_class_validator169 = require("class-validator");
|
|
13011
|
+
var AddClientRemarkDto = class {
|
|
13012
|
+
};
|
|
13013
|
+
__decorateClass([
|
|
13014
|
+
(0, import_class_validator169.IsString)()
|
|
13015
|
+
], AddClientRemarkDto.prototype, "remark", 2);
|
|
13016
|
+
|
|
13017
|
+
// src/modules/task/dto/mark-task-as-completed.dto.ts
|
|
13018
|
+
var import_class_validator170 = require("class-validator");
|
|
13019
|
+
var MarkTaskAsCompletedDto = class {
|
|
13020
|
+
};
|
|
13021
|
+
__decorateClass([
|
|
13022
|
+
(0, import_class_validator170.IsString)()
|
|
13023
|
+
], MarkTaskAsCompletedDto.prototype, "status", 2);
|
|
13024
|
+
|
|
13025
|
+
// src/modules/task/dto/update-estimate-time.dto.ts
|
|
13026
|
+
var import_class_transformer39 = require("class-transformer");
|
|
13027
|
+
var import_class_validator171 = require("class-validator");
|
|
13028
|
+
var UpdateEstimateTimeDto = class {
|
|
13029
|
+
};
|
|
13030
|
+
__decorateClass([
|
|
13031
|
+
(0, import_class_transformer39.Type)(() => Number),
|
|
13032
|
+
(0, import_class_validator171.IsNumber)()
|
|
13033
|
+
], UpdateEstimateTimeDto.prototype, "estimateHours", 2);
|
|
13034
|
+
__decorateClass([
|
|
13035
|
+
(0, import_class_validator171.IsString)()
|
|
13036
|
+
], UpdateEstimateTimeDto.prototype, "additionalWorkNote", 2);
|
|
13037
|
+
|
|
12760
13038
|
// src/adapters/tcp/user.tcp.adapter.ts
|
|
12761
13039
|
var import_dotenv = require("dotenv");
|
|
12762
13040
|
var import_microservices = require("@nestjs/microservices");
|
|
@@ -14016,6 +14294,7 @@ SubscriptionFeature = __decorateClass([
|
|
|
14016
14294
|
AUTHENTICATION_PATTERN,
|
|
14017
14295
|
AccountStatus,
|
|
14018
14296
|
AccountType,
|
|
14297
|
+
AddClientRemarkDto,
|
|
14019
14298
|
AddGlobalSettingDto,
|
|
14020
14299
|
AddTopupEscrowAmountDto,
|
|
14021
14300
|
AdminCreateJobInformationDto,
|
|
@@ -14133,6 +14412,7 @@ SubscriptionFeature = __decorateClass([
|
|
|
14133
14412
|
CreateQuestionDto,
|
|
14134
14413
|
CreateRatingDto,
|
|
14135
14414
|
CreateSubAdminDto,
|
|
14415
|
+
CreateTaskDto,
|
|
14136
14416
|
CreateUserSigningDto,
|
|
14137
14417
|
CustomQuestionItemDto,
|
|
14138
14418
|
DISPUTE_PATTERN,
|
|
@@ -14273,6 +14553,7 @@ SubscriptionFeature = __decorateClass([
|
|
|
14273
14553
|
MAINTENANCE_PATTERN,
|
|
14274
14554
|
MarkCandidateStatusBulkDto,
|
|
14275
14555
|
MarkCandidateStatusDto,
|
|
14556
|
+
MarkTaskAsCompletedDto,
|
|
14276
14557
|
McqStatusEnum,
|
|
14277
14558
|
ModeOfHire,
|
|
14278
14559
|
ModeOfWork,
|
|
@@ -14362,6 +14643,7 @@ SubscriptionFeature = __decorateClass([
|
|
|
14362
14643
|
SubscriptionFeature,
|
|
14363
14644
|
SystemPreference,
|
|
14364
14645
|
SystemPreferenceDto,
|
|
14646
|
+
TASK_PATTERN,
|
|
14365
14647
|
TIMESHEET_CLIENT_PATTERN,
|
|
14366
14648
|
TIMESHEET_FREELANCER_PATTERN,
|
|
14367
14649
|
Task,
|
|
@@ -14374,6 +14656,7 @@ SubscriptionFeature = __decorateClass([
|
|
|
14374
14656
|
TaskStatusEnum,
|
|
14375
14657
|
TaskSubtask,
|
|
14376
14658
|
TaskSubtaskStatusEnum,
|
|
14659
|
+
TaskUuidParamDto,
|
|
14377
14660
|
TestNotificationDto,
|
|
14378
14661
|
Timesheet,
|
|
14379
14662
|
TimesheetLine,
|
|
@@ -14400,6 +14683,7 @@ SubscriptionFeature = __decorateClass([
|
|
|
14400
14683
|
UpdateCompanyMemberDto,
|
|
14401
14684
|
UpdateCompanyProfileDto,
|
|
14402
14685
|
UpdateCompanyRoleDto,
|
|
14686
|
+
UpdateEstimateTimeDto,
|
|
14403
14687
|
UpdateFreelancerDto,
|
|
14404
14688
|
UpdateFreelancerProfileDto,
|
|
14405
14689
|
UpdateFreelancerTimesheetDto,
|
|
@@ -14410,6 +14694,7 @@ SubscriptionFeature = __decorateClass([
|
|
|
14410
14694
|
UpdateIsReadDto,
|
|
14411
14695
|
UpdateSubAdminAccountStatusDto,
|
|
14412
14696
|
UpdateSubAdminDto,
|
|
14697
|
+
UpdateTaskDto,
|
|
14413
14698
|
User,
|
|
14414
14699
|
UserRMQAdapter,
|
|
14415
14700
|
UserTCPAdapter,
|
package/dist/index.mjs
CHANGED
|
@@ -12893,6 +12893,289 @@ __decorateClass([
|
|
|
12893
12893
|
Type31(() => Number)
|
|
12894
12894
|
], ArchiveSubmissionDto.prototype, "submissionId", 2);
|
|
12895
12895
|
|
|
12896
|
+
// src/modules/task/pattern/pattern.ts
|
|
12897
|
+
var TASK_PATTERN = {
|
|
12898
|
+
createTask: "create.task",
|
|
12899
|
+
fetchTaskForBusiness: "fetch.task.for.business",
|
|
12900
|
+
fetchTaskForFreelancer: "fetch.task.for.freelancer",
|
|
12901
|
+
fetchTaskDetail: "fetch.task.detail",
|
|
12902
|
+
updateTask: "update.task",
|
|
12903
|
+
deleteTask: "delete.task",
|
|
12904
|
+
addClientRemark: "task.client.remark",
|
|
12905
|
+
markTaskAsCompleted: "task.client.mark.as.completed",
|
|
12906
|
+
updateEstimateTime: "task.freelancer.update.estimate.time"
|
|
12907
|
+
};
|
|
12908
|
+
|
|
12909
|
+
// src/modules/task/dto/create-task.dto.ts
|
|
12910
|
+
import {
|
|
12911
|
+
IsArray as IsArray31,
|
|
12912
|
+
IsDateString as IsDateString12,
|
|
12913
|
+
IsOptional as IsOptional88,
|
|
12914
|
+
IsString as IsString94,
|
|
12915
|
+
ValidateNested as ValidateNested13
|
|
12916
|
+
} from "class-validator";
|
|
12917
|
+
import { Type as Type32 } from "class-transformer";
|
|
12918
|
+
var TaskDeliverableDto = class {
|
|
12919
|
+
};
|
|
12920
|
+
__decorateClass([
|
|
12921
|
+
IsString94()
|
|
12922
|
+
], TaskDeliverableDto.prototype, "name", 2);
|
|
12923
|
+
__decorateClass([
|
|
12924
|
+
IsOptional88(),
|
|
12925
|
+
IsString94()
|
|
12926
|
+
], TaskDeliverableDto.prototype, "description", 2);
|
|
12927
|
+
__decorateClass([
|
|
12928
|
+
IsOptional88(),
|
|
12929
|
+
IsString94()
|
|
12930
|
+
], TaskDeliverableDto.prototype, "type", 2);
|
|
12931
|
+
var TaskResourceDto = class {
|
|
12932
|
+
};
|
|
12933
|
+
__decorateClass([
|
|
12934
|
+
IsString94()
|
|
12935
|
+
], TaskResourceDto.prototype, "name", 2);
|
|
12936
|
+
__decorateClass([
|
|
12937
|
+
IsOptional88(),
|
|
12938
|
+
IsString94()
|
|
12939
|
+
], TaskResourceDto.prototype, "description", 2);
|
|
12940
|
+
__decorateClass([
|
|
12941
|
+
IsOptional88(),
|
|
12942
|
+
IsString94()
|
|
12943
|
+
], TaskResourceDto.prototype, "type", 2);
|
|
12944
|
+
__decorateClass([
|
|
12945
|
+
IsOptional88(),
|
|
12946
|
+
IsString94()
|
|
12947
|
+
], TaskResourceDto.prototype, "url", 2);
|
|
12948
|
+
var TaskChecklistItemDto = class {
|
|
12949
|
+
};
|
|
12950
|
+
__decorateClass([
|
|
12951
|
+
IsString94()
|
|
12952
|
+
], TaskChecklistItemDto.prototype, "item", 2);
|
|
12953
|
+
__decorateClass([
|
|
12954
|
+
IsOptional88(),
|
|
12955
|
+
IsString94()
|
|
12956
|
+
], TaskChecklistItemDto.prototype, "notes", 2);
|
|
12957
|
+
var TaskSubtaskDto = class {
|
|
12958
|
+
};
|
|
12959
|
+
__decorateClass([
|
|
12960
|
+
IsString94()
|
|
12961
|
+
], TaskSubtaskDto.prototype, "name", 2);
|
|
12962
|
+
__decorateClass([
|
|
12963
|
+
IsOptional88(),
|
|
12964
|
+
IsString94()
|
|
12965
|
+
], TaskSubtaskDto.prototype, "status", 2);
|
|
12966
|
+
__decorateClass([
|
|
12967
|
+
IsOptional88(),
|
|
12968
|
+
IsString94()
|
|
12969
|
+
], TaskSubtaskDto.prototype, "description", 2);
|
|
12970
|
+
var CreateTaskDto = class {
|
|
12971
|
+
};
|
|
12972
|
+
__decorateClass([
|
|
12973
|
+
IsString94()
|
|
12974
|
+
], CreateTaskDto.prototype, "title", 2);
|
|
12975
|
+
__decorateClass([
|
|
12976
|
+
IsDateString12()
|
|
12977
|
+
], CreateTaskDto.prototype, "dueDate", 2);
|
|
12978
|
+
__decorateClass([
|
|
12979
|
+
IsString94()
|
|
12980
|
+
], CreateTaskDto.prototype, "jobId", 2);
|
|
12981
|
+
__decorateClass([
|
|
12982
|
+
IsString94()
|
|
12983
|
+
], CreateTaskDto.prototype, "freelancerId", 2);
|
|
12984
|
+
__decorateClass([
|
|
12985
|
+
IsString94()
|
|
12986
|
+
], CreateTaskDto.prototype, "status", 2);
|
|
12987
|
+
__decorateClass([
|
|
12988
|
+
IsOptional88(),
|
|
12989
|
+
IsString94()
|
|
12990
|
+
], CreateTaskDto.prototype, "description", 2);
|
|
12991
|
+
__decorateClass([
|
|
12992
|
+
IsString94()
|
|
12993
|
+
], CreateTaskDto.prototype, "priority", 2);
|
|
12994
|
+
__decorateClass([
|
|
12995
|
+
IsDateString12()
|
|
12996
|
+
], CreateTaskDto.prototype, "createdOn", 2);
|
|
12997
|
+
__decorateClass([
|
|
12998
|
+
IsOptional88(),
|
|
12999
|
+
IsArray31(),
|
|
13000
|
+
ValidateNested13({ each: true }),
|
|
13001
|
+
Type32(() => TaskDeliverableDto)
|
|
13002
|
+
], CreateTaskDto.prototype, "deliverables", 2);
|
|
13003
|
+
__decorateClass([
|
|
13004
|
+
IsOptional88(),
|
|
13005
|
+
IsArray31(),
|
|
13006
|
+
ValidateNested13({ each: true }),
|
|
13007
|
+
Type32(() => TaskResourceDto)
|
|
13008
|
+
], CreateTaskDto.prototype, "resources", 2);
|
|
13009
|
+
__decorateClass([
|
|
13010
|
+
IsOptional88(),
|
|
13011
|
+
IsArray31(),
|
|
13012
|
+
ValidateNested13({ each: true }),
|
|
13013
|
+
Type32(() => TaskChecklistItemDto)
|
|
13014
|
+
], CreateTaskDto.prototype, "checklist", 2);
|
|
13015
|
+
__decorateClass([
|
|
13016
|
+
IsOptional88(),
|
|
13017
|
+
IsArray31(),
|
|
13018
|
+
ValidateNested13({ each: true }),
|
|
13019
|
+
Type32(() => TaskSubtaskDto)
|
|
13020
|
+
], CreateTaskDto.prototype, "subtasks", 2);
|
|
13021
|
+
|
|
13022
|
+
// src/modules/task/dto/update-task.dto.ts
|
|
13023
|
+
import {
|
|
13024
|
+
IsArray as IsArray32,
|
|
13025
|
+
IsDateString as IsDateString13,
|
|
13026
|
+
IsOptional as IsOptional89,
|
|
13027
|
+
IsString as IsString95,
|
|
13028
|
+
ValidateNested as ValidateNested14
|
|
13029
|
+
} from "class-validator";
|
|
13030
|
+
import { Type as Type33 } from "class-transformer";
|
|
13031
|
+
var TaskDeliverableDto2 = class {
|
|
13032
|
+
};
|
|
13033
|
+
__decorateClass([
|
|
13034
|
+
IsString95()
|
|
13035
|
+
], TaskDeliverableDto2.prototype, "name", 2);
|
|
13036
|
+
__decorateClass([
|
|
13037
|
+
IsOptional89(),
|
|
13038
|
+
IsString95()
|
|
13039
|
+
], TaskDeliverableDto2.prototype, "description", 2);
|
|
13040
|
+
__decorateClass([
|
|
13041
|
+
IsOptional89(),
|
|
13042
|
+
IsString95()
|
|
13043
|
+
], TaskDeliverableDto2.prototype, "type", 2);
|
|
13044
|
+
var TaskResourceDto2 = class {
|
|
13045
|
+
};
|
|
13046
|
+
__decorateClass([
|
|
13047
|
+
IsString95()
|
|
13048
|
+
], TaskResourceDto2.prototype, "name", 2);
|
|
13049
|
+
__decorateClass([
|
|
13050
|
+
IsOptional89(),
|
|
13051
|
+
IsString95()
|
|
13052
|
+
], TaskResourceDto2.prototype, "description", 2);
|
|
13053
|
+
__decorateClass([
|
|
13054
|
+
IsOptional89(),
|
|
13055
|
+
IsString95()
|
|
13056
|
+
], TaskResourceDto2.prototype, "type", 2);
|
|
13057
|
+
__decorateClass([
|
|
13058
|
+
IsOptional89(),
|
|
13059
|
+
IsString95()
|
|
13060
|
+
], TaskResourceDto2.prototype, "url", 2);
|
|
13061
|
+
var TaskChecklistItemDto2 = class {
|
|
13062
|
+
};
|
|
13063
|
+
__decorateClass([
|
|
13064
|
+
IsString95()
|
|
13065
|
+
], TaskChecklistItemDto2.prototype, "item", 2);
|
|
13066
|
+
__decorateClass([
|
|
13067
|
+
IsOptional89(),
|
|
13068
|
+
IsString95()
|
|
13069
|
+
], TaskChecklistItemDto2.prototype, "notes", 2);
|
|
13070
|
+
var TaskSubtaskDto2 = class {
|
|
13071
|
+
};
|
|
13072
|
+
__decorateClass([
|
|
13073
|
+
IsString95()
|
|
13074
|
+
], TaskSubtaskDto2.prototype, "name", 2);
|
|
13075
|
+
__decorateClass([
|
|
13076
|
+
IsOptional89(),
|
|
13077
|
+
IsString95()
|
|
13078
|
+
], TaskSubtaskDto2.prototype, "status", 2);
|
|
13079
|
+
__decorateClass([
|
|
13080
|
+
IsOptional89(),
|
|
13081
|
+
IsString95()
|
|
13082
|
+
], TaskSubtaskDto2.prototype, "description", 2);
|
|
13083
|
+
var UpdateTaskDto = class {
|
|
13084
|
+
};
|
|
13085
|
+
__decorateClass([
|
|
13086
|
+
IsOptional89(),
|
|
13087
|
+
IsString95()
|
|
13088
|
+
], UpdateTaskDto.prototype, "title", 2);
|
|
13089
|
+
__decorateClass([
|
|
13090
|
+
IsOptional89(),
|
|
13091
|
+
IsDateString13()
|
|
13092
|
+
], UpdateTaskDto.prototype, "dueDate", 2);
|
|
13093
|
+
__decorateClass([
|
|
13094
|
+
IsOptional89(),
|
|
13095
|
+
IsString95()
|
|
13096
|
+
], UpdateTaskDto.prototype, "jobId", 2);
|
|
13097
|
+
__decorateClass([
|
|
13098
|
+
IsOptional89(),
|
|
13099
|
+
IsString95()
|
|
13100
|
+
], UpdateTaskDto.prototype, "freelancerId", 2);
|
|
13101
|
+
__decorateClass([
|
|
13102
|
+
IsOptional89(),
|
|
13103
|
+
IsString95()
|
|
13104
|
+
], UpdateTaskDto.prototype, "status", 2);
|
|
13105
|
+
__decorateClass([
|
|
13106
|
+
IsOptional89(),
|
|
13107
|
+
IsString95()
|
|
13108
|
+
], UpdateTaskDto.prototype, "description", 2);
|
|
13109
|
+
__decorateClass([
|
|
13110
|
+
IsOptional89(),
|
|
13111
|
+
IsString95()
|
|
13112
|
+
], UpdateTaskDto.prototype, "priority", 2);
|
|
13113
|
+
__decorateClass([
|
|
13114
|
+
IsOptional89(),
|
|
13115
|
+
IsDateString13()
|
|
13116
|
+
], UpdateTaskDto.prototype, "createdOn", 2);
|
|
13117
|
+
__decorateClass([
|
|
13118
|
+
IsOptional89(),
|
|
13119
|
+
IsArray32(),
|
|
13120
|
+
ValidateNested14({ each: true }),
|
|
13121
|
+
Type33(() => TaskDeliverableDto2)
|
|
13122
|
+
], UpdateTaskDto.prototype, "deliverables", 2);
|
|
13123
|
+
__decorateClass([
|
|
13124
|
+
IsOptional89(),
|
|
13125
|
+
IsArray32(),
|
|
13126
|
+
ValidateNested14({ each: true }),
|
|
13127
|
+
Type33(() => TaskResourceDto2)
|
|
13128
|
+
], UpdateTaskDto.prototype, "resources", 2);
|
|
13129
|
+
__decorateClass([
|
|
13130
|
+
IsOptional89(),
|
|
13131
|
+
IsArray32(),
|
|
13132
|
+
ValidateNested14({ each: true }),
|
|
13133
|
+
Type33(() => TaskChecklistItemDto2)
|
|
13134
|
+
], UpdateTaskDto.prototype, "checklist", 2);
|
|
13135
|
+
__decorateClass([
|
|
13136
|
+
IsOptional89(),
|
|
13137
|
+
IsArray32(),
|
|
13138
|
+
ValidateNested14({ each: true }),
|
|
13139
|
+
Type33(() => TaskSubtaskDto2)
|
|
13140
|
+
], UpdateTaskDto.prototype, "subtasks", 2);
|
|
13141
|
+
|
|
13142
|
+
// src/modules/task/dto/task-uuid-param.dto.ts
|
|
13143
|
+
import { IsString as IsString96 } from "class-validator";
|
|
13144
|
+
var TaskUuidParamDto = class {
|
|
13145
|
+
};
|
|
13146
|
+
__decorateClass([
|
|
13147
|
+
IsString96()
|
|
13148
|
+
], TaskUuidParamDto.prototype, "uuid", 2);
|
|
13149
|
+
|
|
13150
|
+
// src/modules/task/dto/add-client-remark.dto.ts
|
|
13151
|
+
import { IsString as IsString97 } from "class-validator";
|
|
13152
|
+
var AddClientRemarkDto = class {
|
|
13153
|
+
};
|
|
13154
|
+
__decorateClass([
|
|
13155
|
+
IsString97()
|
|
13156
|
+
], AddClientRemarkDto.prototype, "remark", 2);
|
|
13157
|
+
|
|
13158
|
+
// src/modules/task/dto/mark-task-as-completed.dto.ts
|
|
13159
|
+
import { IsString as IsString98 } from "class-validator";
|
|
13160
|
+
var MarkTaskAsCompletedDto = class {
|
|
13161
|
+
};
|
|
13162
|
+
__decorateClass([
|
|
13163
|
+
IsString98()
|
|
13164
|
+
], MarkTaskAsCompletedDto.prototype, "status", 2);
|
|
13165
|
+
|
|
13166
|
+
// src/modules/task/dto/update-estimate-time.dto.ts
|
|
13167
|
+
import { Type as Type34 } from "class-transformer";
|
|
13168
|
+
import { IsNumber as IsNumber47, IsString as IsString99 } from "class-validator";
|
|
13169
|
+
var UpdateEstimateTimeDto = class {
|
|
13170
|
+
};
|
|
13171
|
+
__decorateClass([
|
|
13172
|
+
Type34(() => Number),
|
|
13173
|
+
IsNumber47()
|
|
13174
|
+
], UpdateEstimateTimeDto.prototype, "estimateHours", 2);
|
|
13175
|
+
__decorateClass([
|
|
13176
|
+
IsString99()
|
|
13177
|
+
], UpdateEstimateTimeDto.prototype, "additionalWorkNote", 2);
|
|
13178
|
+
|
|
12896
13179
|
// src/adapters/tcp/user.tcp.adapter.ts
|
|
12897
13180
|
import { config } from "dotenv";
|
|
12898
13181
|
import { Transport as Transport2 } from "@nestjs/microservices";
|
|
@@ -14206,6 +14489,7 @@ export {
|
|
|
14206
14489
|
AUTHENTICATION_PATTERN,
|
|
14207
14490
|
AccountStatus,
|
|
14208
14491
|
AccountType2 as AccountType,
|
|
14492
|
+
AddClientRemarkDto,
|
|
14209
14493
|
AddGlobalSettingDto,
|
|
14210
14494
|
AddTopupEscrowAmountDto,
|
|
14211
14495
|
AdminCreateJobInformationDto,
|
|
@@ -14323,6 +14607,7 @@ export {
|
|
|
14323
14607
|
CreateQuestionDto,
|
|
14324
14608
|
CreateRatingDto,
|
|
14325
14609
|
CreateSubAdminDto,
|
|
14610
|
+
CreateTaskDto,
|
|
14326
14611
|
CreateUserSigningDto,
|
|
14327
14612
|
CustomQuestionItemDto,
|
|
14328
14613
|
DISPUTE_PATTERN,
|
|
@@ -14463,6 +14748,7 @@ export {
|
|
|
14463
14748
|
MAINTENANCE_PATTERN,
|
|
14464
14749
|
MarkCandidateStatusBulkDto,
|
|
14465
14750
|
MarkCandidateStatusDto,
|
|
14751
|
+
MarkTaskAsCompletedDto,
|
|
14466
14752
|
McqStatusEnum,
|
|
14467
14753
|
ModeOfHire,
|
|
14468
14754
|
ModeOfWork,
|
|
@@ -14552,6 +14838,7 @@ export {
|
|
|
14552
14838
|
SubscriptionFeature,
|
|
14553
14839
|
SystemPreference,
|
|
14554
14840
|
SystemPreferenceDto,
|
|
14841
|
+
TASK_PATTERN,
|
|
14555
14842
|
TIMESHEET_CLIENT_PATTERN,
|
|
14556
14843
|
TIMESHEET_FREELANCER_PATTERN,
|
|
14557
14844
|
Task,
|
|
@@ -14564,6 +14851,7 @@ export {
|
|
|
14564
14851
|
TaskStatusEnum,
|
|
14565
14852
|
TaskSubtask,
|
|
14566
14853
|
TaskSubtaskStatusEnum,
|
|
14854
|
+
TaskUuidParamDto,
|
|
14567
14855
|
TestNotificationDto,
|
|
14568
14856
|
Timesheet,
|
|
14569
14857
|
TimesheetLine,
|
|
@@ -14590,6 +14878,7 @@ export {
|
|
|
14590
14878
|
UpdateCompanyMemberDto,
|
|
14591
14879
|
UpdateCompanyProfileDto,
|
|
14592
14880
|
UpdateCompanyRoleDto,
|
|
14881
|
+
UpdateEstimateTimeDto,
|
|
14593
14882
|
UpdateFreelancerDto,
|
|
14594
14883
|
UpdateFreelancerProfileDto,
|
|
14595
14884
|
UpdateFreelancerTimesheetDto,
|
|
@@ -14600,6 +14889,7 @@ export {
|
|
|
14600
14889
|
UpdateIsReadDto,
|
|
14601
14890
|
UpdateSubAdminAccountStatusDto,
|
|
14602
14891
|
UpdateSubAdminDto,
|
|
14892
|
+
UpdateTaskDto,
|
|
14603
14893
|
User,
|
|
14604
14894
|
UserRMQAdapter,
|
|
14605
14895
|
UserTCPAdapter,
|
package/dist/modules/index.d.ts
CHANGED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
declare class TaskDeliverableDto {
|
|
2
|
+
name: string;
|
|
3
|
+
description?: string;
|
|
4
|
+
type?: string;
|
|
5
|
+
}
|
|
6
|
+
declare class TaskResourceDto {
|
|
7
|
+
name: string;
|
|
8
|
+
description?: string;
|
|
9
|
+
type?: string;
|
|
10
|
+
url?: string;
|
|
11
|
+
}
|
|
12
|
+
declare class TaskChecklistItemDto {
|
|
13
|
+
item: string;
|
|
14
|
+
notes?: string;
|
|
15
|
+
}
|
|
16
|
+
declare class TaskSubtaskDto {
|
|
17
|
+
name: string;
|
|
18
|
+
status?: string;
|
|
19
|
+
description?: string;
|
|
20
|
+
}
|
|
21
|
+
export declare class CreateTaskDto {
|
|
22
|
+
title: string;
|
|
23
|
+
dueDate?: string;
|
|
24
|
+
jobId?: string;
|
|
25
|
+
freelancerId?: string;
|
|
26
|
+
status?: string;
|
|
27
|
+
description?: string;
|
|
28
|
+
priority?: string;
|
|
29
|
+
createdOn?: string;
|
|
30
|
+
deliverables?: TaskDeliverableDto[];
|
|
31
|
+
resources?: TaskResourceDto[];
|
|
32
|
+
checklist?: TaskChecklistItemDto[];
|
|
33
|
+
subtasks?: TaskSubtaskDto[];
|
|
34
|
+
}
|
|
35
|
+
export {};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
declare class TaskDeliverableDto {
|
|
2
|
+
name: string;
|
|
3
|
+
description?: string;
|
|
4
|
+
type?: string;
|
|
5
|
+
}
|
|
6
|
+
declare class TaskResourceDto {
|
|
7
|
+
name: string;
|
|
8
|
+
description?: string;
|
|
9
|
+
type?: string;
|
|
10
|
+
url?: string;
|
|
11
|
+
}
|
|
12
|
+
declare class TaskChecklistItemDto {
|
|
13
|
+
item: string;
|
|
14
|
+
notes?: string;
|
|
15
|
+
}
|
|
16
|
+
declare class TaskSubtaskDto {
|
|
17
|
+
name: string;
|
|
18
|
+
status?: string;
|
|
19
|
+
description?: string;
|
|
20
|
+
}
|
|
21
|
+
export declare class UpdateTaskDto {
|
|
22
|
+
title?: string;
|
|
23
|
+
dueDate?: string;
|
|
24
|
+
jobId?: string;
|
|
25
|
+
freelancerId?: string;
|
|
26
|
+
status?: string;
|
|
27
|
+
description?: string;
|
|
28
|
+
priority?: string;
|
|
29
|
+
createdOn?: string;
|
|
30
|
+
deliverables?: TaskDeliverableDto[];
|
|
31
|
+
resources?: TaskResourceDto[];
|
|
32
|
+
checklist?: TaskChecklistItemDto[];
|
|
33
|
+
subtasks?: TaskSubtaskDto[];
|
|
34
|
+
}
|
|
35
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare const TASK_PATTERN: {
|
|
2
|
+
createTask: string;
|
|
3
|
+
fetchTaskForBusiness: string;
|
|
4
|
+
fetchTaskForFreelancer: string;
|
|
5
|
+
fetchTaskDetail: string;
|
|
6
|
+
updateTask: string;
|
|
7
|
+
deleteTask: string;
|
|
8
|
+
addClientRemark: string;
|
|
9
|
+
markTaskAsCompleted: string;
|
|
10
|
+
updateEstimateTime: string;
|
|
11
|
+
};
|