@experts_hub/shared 1.0.554 → 1.0.558
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/entities/ai-interview-reschedule-request.entity.d.ts +1 -0
- package/dist/entities/ai-interview.entity.d.ts +1 -0
- package/dist/index.d.mts +14 -3
- package/dist/index.d.ts +14 -3
- package/dist/index.js +38 -8
- package/dist/index.mjs +60 -27
- package/dist/modules/freelancer-admin/dto/create-freelancer.dto.d.ts +7 -0
- package/dist/modules/freelancer-admin/dto/update-freelancer.dto.d.ts +2 -0
- package/dist/modules/user/freelancer-profile/dto/update-freelancer-profile.dto.d.ts +3 -2
- package/package.json +1 -1
|
@@ -13,6 +13,7 @@ export declare class AiInterviewRescheduleRequest extends BaseEntity {
|
|
|
13
13
|
client: User;
|
|
14
14
|
aiInterviewId: number;
|
|
15
15
|
aiInterview: AiInterview;
|
|
16
|
+
interviewId: number;
|
|
16
17
|
rescheduledDate: Date;
|
|
17
18
|
status: AiInterviewRescheduleRequestStatusEnum;
|
|
18
19
|
clientRejectReason: string;
|
package/dist/index.d.mts
CHANGED
|
@@ -604,7 +604,7 @@ declare class FreelancerChangePasswordDto {
|
|
|
604
604
|
newPassword: string;
|
|
605
605
|
}
|
|
606
606
|
|
|
607
|
-
declare enum NatureOfWorkDto {
|
|
607
|
+
declare enum NatureOfWorkDto$1 {
|
|
608
608
|
FREELANCE = "FREELANCE",
|
|
609
609
|
FTE = "FTE",
|
|
610
610
|
BOTH = "BOTH"
|
|
@@ -628,7 +628,7 @@ declare class UpdateFreelancerProfileDto {
|
|
|
628
628
|
expectedHourlyCompensation: string;
|
|
629
629
|
expectedAnnualCompensation: string;
|
|
630
630
|
numberOfHours?: number;
|
|
631
|
-
natureOfWork: NatureOfWorkDto;
|
|
631
|
+
natureOfWork: NatureOfWorkDto$1;
|
|
632
632
|
modeOfWork: ModeOfWorkDto;
|
|
633
633
|
portfolioLink?: string;
|
|
634
634
|
address: string;
|
|
@@ -1042,6 +1042,7 @@ declare class AiInterviewRescheduleRequest extends BaseEntity {
|
|
|
1042
1042
|
client: User;
|
|
1043
1043
|
aiInterviewId: number;
|
|
1044
1044
|
aiInterview: AiInterview;
|
|
1045
|
+
interviewId: number;
|
|
1045
1046
|
rescheduledDate: Date;
|
|
1046
1047
|
status: AiInterviewRescheduleRequestStatusEnum;
|
|
1047
1048
|
clientRejectReason: string;
|
|
@@ -1092,6 +1093,7 @@ declare class AiInterview extends BaseEntity {
|
|
|
1092
1093
|
interviewInsight: string;
|
|
1093
1094
|
isF2fInterviewScheduled: boolean;
|
|
1094
1095
|
isContractSent: boolean;
|
|
1096
|
+
attempts: number;
|
|
1095
1097
|
rescheduleRequests: AiInterviewRescheduleRequest[];
|
|
1096
1098
|
}
|
|
1097
1099
|
|
|
@@ -2422,6 +2424,11 @@ declare const ADMIN_FREELANCER_PATTERN: {
|
|
|
2422
2424
|
fetchFreelancerGraphCount: string;
|
|
2423
2425
|
};
|
|
2424
2426
|
|
|
2427
|
+
declare enum NatureOfWorkDto {
|
|
2428
|
+
FREELANCE = "FREELANCE",
|
|
2429
|
+
FTE = "FTE",
|
|
2430
|
+
BOTH = "BOTH"
|
|
2431
|
+
}
|
|
2425
2432
|
declare enum NatureOfWorkEnum$1 {
|
|
2426
2433
|
FTE = "FTE",
|
|
2427
2434
|
FREELANCE = "FREELANCE",
|
|
@@ -2442,6 +2449,8 @@ declare class CreateFreelancerDto {
|
|
|
2442
2449
|
developer: boolean;
|
|
2443
2450
|
natureOfWork: NatureOfWorkEnum$1;
|
|
2444
2451
|
expectedHourlyCompensation: number;
|
|
2452
|
+
expectedAnnualCompensation: string;
|
|
2453
|
+
numberOfHours?: number;
|
|
2445
2454
|
modeOfWork: ModeOfWorkEnum$1;
|
|
2446
2455
|
isImmediateJoiner: boolean;
|
|
2447
2456
|
availabilityToJoin: string;
|
|
@@ -2471,6 +2480,8 @@ declare class UpdateFreelancerDto {
|
|
|
2471
2480
|
developer?: boolean;
|
|
2472
2481
|
natureOfWork?: NatureOfWorkEnum;
|
|
2473
2482
|
expectedHourlyCompensation?: number;
|
|
2483
|
+
expectedAnnualCompensation: string;
|
|
2484
|
+
numberOfHours?: number;
|
|
2474
2485
|
modeOfWork?: ModeOfWorkEnum;
|
|
2475
2486
|
isImmediateJoiner?: boolean;
|
|
2476
2487
|
availabilityToJoin?: string;
|
|
@@ -3323,4 +3334,4 @@ declare class RecommendationWeightageConfig extends BaseEntity {
|
|
|
3323
3334
|
isActive: boolean;
|
|
3324
3335
|
}
|
|
3325
3336
|
|
|
3326
|
-
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_PROFILE_PATTERN, CMS_PATTERNS, 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, DisputeStatusEnum, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, EmploymentTypeV2, EscrowWallet, EscrowWalletTransaction, EscrowWalletTransactionForEnum, EscrowWalletTransactionTypeEnum, ExperienceDto, F2FInterview, F2FInterviewSchedule, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, F2fInterviewScheduleStatusEnum, F2fInterviewStatusEnum, 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, 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, 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_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, Lead, LoginDto, LoginViaOtpDto, LoginViaOtpScopeEnum, LogoutDto, McqStatusEnum, ModeOfHire, ModeOfWork,
|
|
3337
|
+
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_PROFILE_PATTERN, CMS_PATTERNS, 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, DisputeStatusEnum, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, EmploymentTypeV2, EscrowWallet, EscrowWalletTransaction, EscrowWalletTransactionForEnum, EscrowWalletTransactionTypeEnum, ExperienceDto, F2FInterview, F2FInterviewSchedule, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, F2fInterviewScheduleStatusEnum, F2fInterviewStatusEnum, 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, 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, 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_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, 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, 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, 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, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZoomMeetingLog, typeOfExperienceDtoEnumV2, typeOfExperienceEnum };
|
package/dist/index.d.ts
CHANGED
|
@@ -604,7 +604,7 @@ declare class FreelancerChangePasswordDto {
|
|
|
604
604
|
newPassword: string;
|
|
605
605
|
}
|
|
606
606
|
|
|
607
|
-
declare enum NatureOfWorkDto {
|
|
607
|
+
declare enum NatureOfWorkDto$1 {
|
|
608
608
|
FREELANCE = "FREELANCE",
|
|
609
609
|
FTE = "FTE",
|
|
610
610
|
BOTH = "BOTH"
|
|
@@ -628,7 +628,7 @@ declare class UpdateFreelancerProfileDto {
|
|
|
628
628
|
expectedHourlyCompensation: string;
|
|
629
629
|
expectedAnnualCompensation: string;
|
|
630
630
|
numberOfHours?: number;
|
|
631
|
-
natureOfWork: NatureOfWorkDto;
|
|
631
|
+
natureOfWork: NatureOfWorkDto$1;
|
|
632
632
|
modeOfWork: ModeOfWorkDto;
|
|
633
633
|
portfolioLink?: string;
|
|
634
634
|
address: string;
|
|
@@ -1042,6 +1042,7 @@ declare class AiInterviewRescheduleRequest extends BaseEntity {
|
|
|
1042
1042
|
client: User;
|
|
1043
1043
|
aiInterviewId: number;
|
|
1044
1044
|
aiInterview: AiInterview;
|
|
1045
|
+
interviewId: number;
|
|
1045
1046
|
rescheduledDate: Date;
|
|
1046
1047
|
status: AiInterviewRescheduleRequestStatusEnum;
|
|
1047
1048
|
clientRejectReason: string;
|
|
@@ -1092,6 +1093,7 @@ declare class AiInterview extends BaseEntity {
|
|
|
1092
1093
|
interviewInsight: string;
|
|
1093
1094
|
isF2fInterviewScheduled: boolean;
|
|
1094
1095
|
isContractSent: boolean;
|
|
1096
|
+
attempts: number;
|
|
1095
1097
|
rescheduleRequests: AiInterviewRescheduleRequest[];
|
|
1096
1098
|
}
|
|
1097
1099
|
|
|
@@ -2422,6 +2424,11 @@ declare const ADMIN_FREELANCER_PATTERN: {
|
|
|
2422
2424
|
fetchFreelancerGraphCount: string;
|
|
2423
2425
|
};
|
|
2424
2426
|
|
|
2427
|
+
declare enum NatureOfWorkDto {
|
|
2428
|
+
FREELANCE = "FREELANCE",
|
|
2429
|
+
FTE = "FTE",
|
|
2430
|
+
BOTH = "BOTH"
|
|
2431
|
+
}
|
|
2425
2432
|
declare enum NatureOfWorkEnum$1 {
|
|
2426
2433
|
FTE = "FTE",
|
|
2427
2434
|
FREELANCE = "FREELANCE",
|
|
@@ -2442,6 +2449,8 @@ declare class CreateFreelancerDto {
|
|
|
2442
2449
|
developer: boolean;
|
|
2443
2450
|
natureOfWork: NatureOfWorkEnum$1;
|
|
2444
2451
|
expectedHourlyCompensation: number;
|
|
2452
|
+
expectedAnnualCompensation: string;
|
|
2453
|
+
numberOfHours?: number;
|
|
2445
2454
|
modeOfWork: ModeOfWorkEnum$1;
|
|
2446
2455
|
isImmediateJoiner: boolean;
|
|
2447
2456
|
availabilityToJoin: string;
|
|
@@ -2471,6 +2480,8 @@ declare class UpdateFreelancerDto {
|
|
|
2471
2480
|
developer?: boolean;
|
|
2472
2481
|
natureOfWork?: NatureOfWorkEnum;
|
|
2473
2482
|
expectedHourlyCompensation?: number;
|
|
2483
|
+
expectedAnnualCompensation: string;
|
|
2484
|
+
numberOfHours?: number;
|
|
2474
2485
|
modeOfWork?: ModeOfWorkEnum;
|
|
2475
2486
|
isImmediateJoiner?: boolean;
|
|
2476
2487
|
availabilityToJoin?: string;
|
|
@@ -3323,4 +3334,4 @@ declare class RecommendationWeightageConfig extends BaseEntity {
|
|
|
3323
3334
|
isActive: boolean;
|
|
3324
3335
|
}
|
|
3325
3336
|
|
|
3326
|
-
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_PROFILE_PATTERN, CMS_PATTERNS, 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, DisputeStatusEnum, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, EmploymentTypeV2, EscrowWallet, EscrowWalletTransaction, EscrowWalletTransactionForEnum, EscrowWalletTransactionTypeEnum, ExperienceDto, F2FInterview, F2FInterviewSchedule, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, F2fInterviewScheduleStatusEnum, F2fInterviewStatusEnum, 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, 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, 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_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, Lead, LoginDto, LoginViaOtpDto, LoginViaOtpScopeEnum, LogoutDto, McqStatusEnum, ModeOfHire, ModeOfWork,
|
|
3337
|
+
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_PROFILE_PATTERN, CMS_PATTERNS, 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, DisputeStatusEnum, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, EmploymentTypeV2, EscrowWallet, EscrowWalletTransaction, EscrowWalletTransactionForEnum, EscrowWalletTransactionTypeEnum, ExperienceDto, F2FInterview, F2FInterviewSchedule, F2F_INTERVIEW_PATTERN, F2fInterviewRescheduleRequest, F2fInterviewRescheduleRequestStatusEnum, F2fInterviewScheduleStatusEnum, F2fInterviewStatusEnum, 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, 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, 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_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, 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, 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, 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, WalletAccountTypeEnum, WalletOnboardingStatusEnum, WalletTransaction, WalletTransactionStatusEnum, WalletTransactionTypeEnum, ZoomMeetingLog, typeOfExperienceDtoEnumV2, typeOfExperienceEnum };
|
package/dist/index.js
CHANGED
|
@@ -233,10 +233,9 @@ __export(index_exports, {
|
|
|
233
233
|
McqStatusEnum: () => McqStatusEnum,
|
|
234
234
|
ModeOfHire: () => ModeOfHire,
|
|
235
235
|
ModeOfWork: () => ModeOfWork,
|
|
236
|
-
ModeOfWorkDto: () => ModeOfWorkDto,
|
|
237
236
|
NOTIFICATION_PATTERN: () => NOTIFICATION_PATTERN,
|
|
238
237
|
NatureOfWork: () => NatureOfWork,
|
|
239
|
-
NatureOfWorkDto: () =>
|
|
238
|
+
NatureOfWorkDto: () => NatureOfWorkDto2,
|
|
240
239
|
NotificationRMQAdapter: () => NotificationRMQAdapter,
|
|
241
240
|
NotificationTCPAdapter: () => NotificationTCPAdapter,
|
|
242
241
|
ONBOARDING_PATTERN: () => ONBOARDING_PATTERN,
|
|
@@ -1666,11 +1665,11 @@ __decorateClass([
|
|
|
1666
1665
|
|
|
1667
1666
|
// src/modules/user/freelancer-profile/dto/update-freelancer-profile.dto.ts
|
|
1668
1667
|
var import_class_validator40 = require("class-validator");
|
|
1669
|
-
var NatureOfWorkDto = /* @__PURE__ */ ((
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
return
|
|
1668
|
+
var NatureOfWorkDto = /* @__PURE__ */ ((NatureOfWorkDto3) => {
|
|
1669
|
+
NatureOfWorkDto3["FREELANCE"] = "FREELANCE";
|
|
1670
|
+
NatureOfWorkDto3["FTE"] = "FTE";
|
|
1671
|
+
NatureOfWorkDto3["BOTH"] = "BOTH";
|
|
1672
|
+
return NatureOfWorkDto3;
|
|
1674
1673
|
})(NatureOfWorkDto || {});
|
|
1675
1674
|
var ModeOfWorkDto = /* @__PURE__ */ ((ModeOfWorkDto2) => {
|
|
1676
1675
|
ModeOfWorkDto2["ONSITE"] = "ONSITE";
|
|
@@ -3094,6 +3093,9 @@ __decorateClass([
|
|
|
3094
3093
|
(0, import_typeorm15.ManyToOne)(() => AiInterview, (aiInterview) => aiInterview.rescheduleRequests),
|
|
3095
3094
|
(0, import_typeorm15.JoinColumn)({ name: "aiinterview_id" })
|
|
3096
3095
|
], AiInterviewRescheduleRequest.prototype, "aiInterview", 2);
|
|
3096
|
+
__decorateClass([
|
|
3097
|
+
(0, import_typeorm15.Column)({ name: "interview_id", type: "integer", nullable: true })
|
|
3098
|
+
], AiInterviewRescheduleRequest.prototype, "interviewId", 2);
|
|
3097
3099
|
__decorateClass([
|
|
3098
3100
|
(0, import_typeorm15.Column)({ name: "rescheduled_date", type: "timestamp with time zone", nullable: true })
|
|
3099
3101
|
], AiInterviewRescheduleRequest.prototype, "rescheduledDate", 2);
|
|
@@ -3233,6 +3235,9 @@ __decorateClass([
|
|
|
3233
3235
|
__decorateClass([
|
|
3234
3236
|
(0, import_typeorm16.Column)({ name: "is_contract_sent", type: "boolean", default: false })
|
|
3235
3237
|
], AiInterview.prototype, "isContractSent", 2);
|
|
3238
|
+
__decorateClass([
|
|
3239
|
+
(0, import_typeorm16.Column)({ name: "attempts", type: "integer", nullable: true })
|
|
3240
|
+
], AiInterview.prototype, "attempts", 2);
|
|
3236
3241
|
__decorateClass([
|
|
3237
3242
|
(0, import_typeorm16.OneToMany)(() => AiInterviewRescheduleRequest, (aiInterviewRescheduleRequest) => aiInterviewRescheduleRequest.aiInterview)
|
|
3238
3243
|
], AiInterview.prototype, "rescheduleRequests", 2);
|
|
@@ -6779,6 +6784,12 @@ var ADMIN_FREELANCER_PATTERN = {
|
|
|
6779
6784
|
// src/modules/freelancer-admin/dto/create-freelancer.dto.ts
|
|
6780
6785
|
var import_class_validator54 = require("class-validator");
|
|
6781
6786
|
var import_class_transformer9 = require("class-transformer");
|
|
6787
|
+
var NatureOfWorkDto2 = /* @__PURE__ */ ((NatureOfWorkDto3) => {
|
|
6788
|
+
NatureOfWorkDto3["FREELANCE"] = "FREELANCE";
|
|
6789
|
+
NatureOfWorkDto3["FTE"] = "FTE";
|
|
6790
|
+
NatureOfWorkDto3["BOTH"] = "BOTH";
|
|
6791
|
+
return NatureOfWorkDto3;
|
|
6792
|
+
})(NatureOfWorkDto2 || {});
|
|
6782
6793
|
var NatureOfWorkEnum = /* @__PURE__ */ ((NatureOfWorkEnum3) => {
|
|
6783
6794
|
NatureOfWorkEnum3["FTE"] = "FTE";
|
|
6784
6795
|
NatureOfWorkEnum3["FREELANCE"] = "FREELANCE";
|
|
@@ -6834,6 +6845,15 @@ __decorateClass([
|
|
|
6834
6845
|
(0, import_class_validator54.Min)(0, { message: "Expected hourly compensation must be 0 or more" }),
|
|
6835
6846
|
(0, import_class_transformer9.Type)(() => Number)
|
|
6836
6847
|
], CreateFreelancerDto.prototype, "expectedHourlyCompensation", 2);
|
|
6848
|
+
__decorateClass([
|
|
6849
|
+
(0, import_class_validator54.ValidateIf)((dto) => dto.NatureOfWorkDto === "BOTH" /* BOTH */),
|
|
6850
|
+
(0, import_class_validator54.IsNotEmpty)({ message: "Please enter expected annual compensation." })
|
|
6851
|
+
], CreateFreelancerDto.prototype, "expectedAnnualCompensation", 2);
|
|
6852
|
+
__decorateClass([
|
|
6853
|
+
(0, import_class_validator54.ValidateIf)((dto) => dto.NatureOfWorkDto === "FREELANCE" /* FREELANCE */),
|
|
6854
|
+
(0, import_class_validator54.IsInt)({ message: "Please enter valid weekly availability hours (integer)." }),
|
|
6855
|
+
(0, import_class_validator54.IsNotEmpty)({ message: "Please enter weekly availability hours" })
|
|
6856
|
+
], CreateFreelancerDto.prototype, "numberOfHours", 2);
|
|
6837
6857
|
__decorateClass([
|
|
6838
6858
|
(0, import_class_validator54.IsEnum)(ModeOfWorkEnum, {
|
|
6839
6859
|
message: `Mode of work must be one of: ${Object.values(ModeOfWorkEnum).join(
|
|
@@ -6932,6 +6952,17 @@ __decorateClass([
|
|
|
6932
6952
|
(0, import_class_validator55.Min)(0, { message: "Expected hourly compensation must be 0 or more" }),
|
|
6933
6953
|
(0, import_class_transformer10.Type)(() => Number)
|
|
6934
6954
|
], UpdateFreelancerDto.prototype, "expectedHourlyCompensation", 2);
|
|
6955
|
+
__decorateClass([
|
|
6956
|
+
(0, import_class_validator55.IsOptional)(),
|
|
6957
|
+
(0, import_class_validator55.ValidateIf)((dto) => dto.NatureOfWorkDto === "BOTH" /* BOTH */),
|
|
6958
|
+
(0, import_class_validator55.IsNotEmpty)({ message: "Please enter expected annual compensation." })
|
|
6959
|
+
], UpdateFreelancerDto.prototype, "expectedAnnualCompensation", 2);
|
|
6960
|
+
__decorateClass([
|
|
6961
|
+
(0, import_class_validator55.IsOptional)(),
|
|
6962
|
+
(0, import_class_validator55.ValidateIf)((dto) => dto.NatureOfWorkDto === "FREELANCE" /* FREELANCE */),
|
|
6963
|
+
(0, import_class_validator55.IsInt)({ message: "Please enter valid weekly availability hours (integer)." }),
|
|
6964
|
+
(0, import_class_validator55.IsNotEmpty)({ message: "Please enter weekly availability hours" })
|
|
6965
|
+
], UpdateFreelancerDto.prototype, "numberOfHours", 2);
|
|
6935
6966
|
__decorateClass([
|
|
6936
6967
|
(0, import_class_validator55.IsOptional)(),
|
|
6937
6968
|
(0, import_class_validator55.IsEnum)(ModeOfWorkEnum2, {
|
|
@@ -9349,7 +9380,6 @@ RecommendationWeightageConfig = __decorateClass([
|
|
|
9349
9380
|
McqStatusEnum,
|
|
9350
9381
|
ModeOfHire,
|
|
9351
9382
|
ModeOfWork,
|
|
9352
|
-
ModeOfWorkDto,
|
|
9353
9383
|
NOTIFICATION_PATTERN,
|
|
9354
9384
|
NatureOfWork,
|
|
9355
9385
|
NatureOfWorkDto,
|
package/dist/index.mjs
CHANGED
|
@@ -1450,11 +1450,11 @@ import {
|
|
|
1450
1450
|
ValidateIf as ValidateIf5,
|
|
1451
1451
|
IsInt
|
|
1452
1452
|
} from "class-validator";
|
|
1453
|
-
var NatureOfWorkDto = /* @__PURE__ */ ((
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
return
|
|
1453
|
+
var NatureOfWorkDto = /* @__PURE__ */ ((NatureOfWorkDto3) => {
|
|
1454
|
+
NatureOfWorkDto3["FREELANCE"] = "FREELANCE";
|
|
1455
|
+
NatureOfWorkDto3["FTE"] = "FTE";
|
|
1456
|
+
NatureOfWorkDto3["BOTH"] = "BOTH";
|
|
1457
|
+
return NatureOfWorkDto3;
|
|
1458
1458
|
})(NatureOfWorkDto || {});
|
|
1459
1459
|
var ModeOfWorkDto = /* @__PURE__ */ ((ModeOfWorkDto2) => {
|
|
1460
1460
|
ModeOfWorkDto2["ONSITE"] = "ONSITE";
|
|
@@ -2974,6 +2974,9 @@ __decorateClass([
|
|
|
2974
2974
|
ManyToOne13(() => AiInterview, (aiInterview) => aiInterview.rescheduleRequests),
|
|
2975
2975
|
JoinColumn13({ name: "aiinterview_id" })
|
|
2976
2976
|
], AiInterviewRescheduleRequest.prototype, "aiInterview", 2);
|
|
2977
|
+
__decorateClass([
|
|
2978
|
+
Column15({ name: "interview_id", type: "integer", nullable: true })
|
|
2979
|
+
], AiInterviewRescheduleRequest.prototype, "interviewId", 2);
|
|
2977
2980
|
__decorateClass([
|
|
2978
2981
|
Column15({ name: "rescheduled_date", type: "timestamp with time zone", nullable: true })
|
|
2979
2982
|
], AiInterviewRescheduleRequest.prototype, "rescheduledDate", 2);
|
|
@@ -3113,6 +3116,9 @@ __decorateClass([
|
|
|
3113
3116
|
__decorateClass([
|
|
3114
3117
|
Column16({ name: "is_contract_sent", type: "boolean", default: false })
|
|
3115
3118
|
], AiInterview.prototype, "isContractSent", 2);
|
|
3119
|
+
__decorateClass([
|
|
3120
|
+
Column16({ name: "attempts", type: "integer", nullable: true })
|
|
3121
|
+
], AiInterview.prototype, "attempts", 2);
|
|
3116
3122
|
__decorateClass([
|
|
3117
3123
|
OneToMany6(() => AiInterviewRescheduleRequest, (aiInterviewRescheduleRequest) => aiInterviewRescheduleRequest.aiInterview)
|
|
3118
3124
|
], AiInterview.prototype, "rescheduleRequests", 2);
|
|
@@ -6825,9 +6831,16 @@ import {
|
|
|
6825
6831
|
IsNotEmpty as IsNotEmpty45,
|
|
6826
6832
|
MinLength as MinLength12,
|
|
6827
6833
|
Matches as Matches9,
|
|
6828
|
-
ValidateIf as ValidateIf7
|
|
6834
|
+
ValidateIf as ValidateIf7,
|
|
6835
|
+
IsInt as IsInt7
|
|
6829
6836
|
} from "class-validator";
|
|
6830
6837
|
import { Type as Type8 } from "class-transformer";
|
|
6838
|
+
var NatureOfWorkDto2 = /* @__PURE__ */ ((NatureOfWorkDto3) => {
|
|
6839
|
+
NatureOfWorkDto3["FREELANCE"] = "FREELANCE";
|
|
6840
|
+
NatureOfWorkDto3["FTE"] = "FTE";
|
|
6841
|
+
NatureOfWorkDto3["BOTH"] = "BOTH";
|
|
6842
|
+
return NatureOfWorkDto3;
|
|
6843
|
+
})(NatureOfWorkDto2 || {});
|
|
6831
6844
|
var NatureOfWorkEnum = /* @__PURE__ */ ((NatureOfWorkEnum3) => {
|
|
6832
6845
|
NatureOfWorkEnum3["FTE"] = "FTE";
|
|
6833
6846
|
NatureOfWorkEnum3["FREELANCE"] = "FREELANCE";
|
|
@@ -6883,6 +6896,15 @@ __decorateClass([
|
|
|
6883
6896
|
Min4(0, { message: "Expected hourly compensation must be 0 or more" }),
|
|
6884
6897
|
Type8(() => Number)
|
|
6885
6898
|
], CreateFreelancerDto.prototype, "expectedHourlyCompensation", 2);
|
|
6899
|
+
__decorateClass([
|
|
6900
|
+
ValidateIf7((dto) => dto.NatureOfWorkDto === "BOTH" /* BOTH */),
|
|
6901
|
+
IsNotEmpty45({ message: "Please enter expected annual compensation." })
|
|
6902
|
+
], CreateFreelancerDto.prototype, "expectedAnnualCompensation", 2);
|
|
6903
|
+
__decorateClass([
|
|
6904
|
+
ValidateIf7((dto) => dto.NatureOfWorkDto === "FREELANCE" /* FREELANCE */),
|
|
6905
|
+
IsInt7({ message: "Please enter valid weekly availability hours (integer)." }),
|
|
6906
|
+
IsNotEmpty45({ message: "Please enter weekly availability hours" })
|
|
6907
|
+
], CreateFreelancerDto.prototype, "numberOfHours", 2);
|
|
6886
6908
|
__decorateClass([
|
|
6887
6909
|
IsEnum17(ModeOfWorkEnum, {
|
|
6888
6910
|
message: `Mode of work must be one of: ${Object.values(ModeOfWorkEnum).join(
|
|
@@ -6933,7 +6955,8 @@ import {
|
|
|
6933
6955
|
MinLength as MinLength13,
|
|
6934
6956
|
Matches as Matches10,
|
|
6935
6957
|
IsNotEmpty as IsNotEmpty46,
|
|
6936
|
-
ValidateIf as ValidateIf8
|
|
6958
|
+
ValidateIf as ValidateIf8,
|
|
6959
|
+
IsInt as IsInt8
|
|
6937
6960
|
} from "class-validator";
|
|
6938
6961
|
import { Transform as Transform2, Type as Type9 } from "class-transformer";
|
|
6939
6962
|
var NatureOfWorkEnum2 = /* @__PURE__ */ ((NatureOfWorkEnum3) => {
|
|
@@ -6995,6 +7018,17 @@ __decorateClass([
|
|
|
6995
7018
|
Min5(0, { message: "Expected hourly compensation must be 0 or more" }),
|
|
6996
7019
|
Type9(() => Number)
|
|
6997
7020
|
], UpdateFreelancerDto.prototype, "expectedHourlyCompensation", 2);
|
|
7021
|
+
__decorateClass([
|
|
7022
|
+
IsOptional28(),
|
|
7023
|
+
ValidateIf8((dto) => dto.NatureOfWorkDto === "BOTH" /* BOTH */),
|
|
7024
|
+
IsNotEmpty46({ message: "Please enter expected annual compensation." })
|
|
7025
|
+
], UpdateFreelancerDto.prototype, "expectedAnnualCompensation", 2);
|
|
7026
|
+
__decorateClass([
|
|
7027
|
+
IsOptional28(),
|
|
7028
|
+
ValidateIf8((dto) => dto.NatureOfWorkDto === "FREELANCE" /* FREELANCE */),
|
|
7029
|
+
IsInt8({ message: "Please enter valid weekly availability hours (integer)." }),
|
|
7030
|
+
IsNotEmpty46({ message: "Please enter weekly availability hours" })
|
|
7031
|
+
], UpdateFreelancerDto.prototype, "numberOfHours", 2);
|
|
6998
7032
|
__decorateClass([
|
|
6999
7033
|
IsOptional28(),
|
|
7000
7034
|
IsEnum18(ModeOfWorkEnum2, {
|
|
@@ -7331,7 +7365,7 @@ import { Type as Type10 } from "class-transformer";
|
|
|
7331
7365
|
import {
|
|
7332
7366
|
IsString as IsString34,
|
|
7333
7367
|
IsEnum as IsEnum22,
|
|
7334
|
-
IsInt as
|
|
7368
|
+
IsInt as IsInt9,
|
|
7335
7369
|
IsOptional as IsOptional34,
|
|
7336
7370
|
IsArray as IsArray12,
|
|
7337
7371
|
IsDateString as IsDateString4,
|
|
@@ -7368,7 +7402,7 @@ __decorateClass([
|
|
|
7368
7402
|
IsString34({ each: true, message: "Each skill must be a valid string." })
|
|
7369
7403
|
], AdminCreateJobInformationDto.prototype, "skills", 2);
|
|
7370
7404
|
__decorateClass([
|
|
7371
|
-
|
|
7405
|
+
IsInt9({ message: "Openings must be a valid integer." }),
|
|
7372
7406
|
Min6(1, { message: "There must be at least one opening." })
|
|
7373
7407
|
], AdminCreateJobInformationDto.prototype, "openings", 2);
|
|
7374
7408
|
__decorateClass([
|
|
@@ -7423,18 +7457,18 @@ __decorateClass([
|
|
|
7423
7457
|
], AdminCreateJobInformationDto.prototype, "additionalComment", 2);
|
|
7424
7458
|
__decorateClass([
|
|
7425
7459
|
IsOptional34(),
|
|
7426
|
-
|
|
7460
|
+
IsInt9({ message: "Country ID must be a valid integer." })
|
|
7427
7461
|
], AdminCreateJobInformationDto.prototype, "countryId", 2);
|
|
7428
7462
|
__decorateClass([
|
|
7429
7463
|
IsOptional34(),
|
|
7430
|
-
|
|
7464
|
+
IsInt9({ message: "State ID must be a valid integer." })
|
|
7431
7465
|
], AdminCreateJobInformationDto.prototype, "stateId", 2);
|
|
7432
7466
|
__decorateClass([
|
|
7433
7467
|
IsOptional34(),
|
|
7434
|
-
|
|
7468
|
+
IsInt9({ message: "City ID must be a valid integer." })
|
|
7435
7469
|
], AdminCreateJobInformationDto.prototype, "cityId", 2);
|
|
7436
7470
|
__decorateClass([
|
|
7437
|
-
|
|
7471
|
+
IsInt9({ message: "Client ID must be a valid integer." })
|
|
7438
7472
|
], AdminCreateJobInformationDto.prototype, "clientId", 2);
|
|
7439
7473
|
|
|
7440
7474
|
// src/modules/job-admin/dto/admin-update-job-information.dto.ts
|
|
@@ -7442,7 +7476,7 @@ import { Type as Type11 } from "class-transformer";
|
|
|
7442
7476
|
import {
|
|
7443
7477
|
IsString as IsString35,
|
|
7444
7478
|
IsEnum as IsEnum23,
|
|
7445
|
-
IsInt as
|
|
7479
|
+
IsInt as IsInt10,
|
|
7446
7480
|
IsOptional as IsOptional35,
|
|
7447
7481
|
IsArray as IsArray13,
|
|
7448
7482
|
IsDateString as IsDateString5,
|
|
@@ -7479,7 +7513,7 @@ __decorateClass([
|
|
|
7479
7513
|
IsString35({ each: true, message: "Each skill must be a valid string." })
|
|
7480
7514
|
], AdminUpdateJobInformationDto.prototype, "skills", 2);
|
|
7481
7515
|
__decorateClass([
|
|
7482
|
-
|
|
7516
|
+
IsInt10({ message: "Openings must be a valid integer." }),
|
|
7483
7517
|
Min7(1, { message: "There must be at least one opening." })
|
|
7484
7518
|
], AdminUpdateJobInformationDto.prototype, "openings", 2);
|
|
7485
7519
|
__decorateClass([
|
|
@@ -7534,18 +7568,18 @@ __decorateClass([
|
|
|
7534
7568
|
], AdminUpdateJobInformationDto.prototype, "additionalComment", 2);
|
|
7535
7569
|
__decorateClass([
|
|
7536
7570
|
IsOptional35(),
|
|
7537
|
-
|
|
7571
|
+
IsInt10({ message: "Country ID must be a valid integer." })
|
|
7538
7572
|
], AdminUpdateJobInformationDto.prototype, "countryId", 2);
|
|
7539
7573
|
__decorateClass([
|
|
7540
7574
|
IsOptional35(),
|
|
7541
|
-
|
|
7575
|
+
IsInt10({ message: "State ID must be a valid integer." })
|
|
7542
7576
|
], AdminUpdateJobInformationDto.prototype, "stateId", 2);
|
|
7543
7577
|
__decorateClass([
|
|
7544
7578
|
IsOptional35(),
|
|
7545
|
-
|
|
7579
|
+
IsInt10({ message: "City ID must be a valid integer." })
|
|
7546
7580
|
], AdminUpdateJobInformationDto.prototype, "cityId", 2);
|
|
7547
7581
|
__decorateClass([
|
|
7548
|
-
|
|
7582
|
+
IsInt10({ message: "Client ID must be a valid integer." })
|
|
7549
7583
|
], AdminUpdateJobInformationDto.prototype, "clientId", 2);
|
|
7550
7584
|
|
|
7551
7585
|
// src/modules/job-admin/dto/admin-job-basic-information-v2.dto.ts
|
|
@@ -7561,7 +7595,7 @@ import {
|
|
|
7561
7595
|
ValidateIf as ValidateIf9,
|
|
7562
7596
|
MaxLength as MaxLength20,
|
|
7563
7597
|
Max as Max4,
|
|
7564
|
-
IsInt as
|
|
7598
|
+
IsInt as IsInt11
|
|
7565
7599
|
} from "class-validator";
|
|
7566
7600
|
import { Type as Type12 } from "class-transformer";
|
|
7567
7601
|
var JobLocationAdminEnumDto = /* @__PURE__ */ ((JobLocationAdminEnumDto2) => {
|
|
@@ -7608,7 +7642,7 @@ __decorateClass([
|
|
|
7608
7642
|
Type12(() => Boolean)
|
|
7609
7643
|
], AdminJobBasicInformationV2Dto.prototype, "isDraft", 2);
|
|
7610
7644
|
__decorateClass([
|
|
7611
|
-
|
|
7645
|
+
IsInt11({ message: "Client ID must be a valid integer." })
|
|
7612
7646
|
], AdminJobBasicInformationV2Dto.prototype, "clientId", 2);
|
|
7613
7647
|
__decorateClass([
|
|
7614
7648
|
IsNotEmpty55({ message: "Please enter job role" }),
|
|
@@ -8125,7 +8159,7 @@ var TIMESHEET_CLIENT_PATTERN = {
|
|
|
8125
8159
|
// src/modules/timesheet/dto/create-freelancer-timesheet.dto.ts
|
|
8126
8160
|
import {
|
|
8127
8161
|
IsDateString as IsDateString7,
|
|
8128
|
-
IsInt as
|
|
8162
|
+
IsInt as IsInt12,
|
|
8129
8163
|
IsNotEmpty as IsNotEmpty67,
|
|
8130
8164
|
IsOptional as IsOptional43,
|
|
8131
8165
|
IsString as IsString47,
|
|
@@ -8160,7 +8194,7 @@ __decorateClass([
|
|
|
8160
8194
|
], CreateFreelancerTimesheetDto.prototype, "endTime", 2);
|
|
8161
8195
|
__decorateClass([
|
|
8162
8196
|
IsOptional43(),
|
|
8163
|
-
|
|
8197
|
+
IsInt12()
|
|
8164
8198
|
], CreateFreelancerTimesheetDto.prototype, "taskId", 2);
|
|
8165
8199
|
__decorateClass([
|
|
8166
8200
|
IsOptional43(),
|
|
@@ -8181,7 +8215,7 @@ __decorateClass([
|
|
|
8181
8215
|
// src/modules/timesheet/dto/update-freelancer-timesheet.dto.ts
|
|
8182
8216
|
import {
|
|
8183
8217
|
IsDateString as IsDateString8,
|
|
8184
|
-
IsInt as
|
|
8218
|
+
IsInt as IsInt13,
|
|
8185
8219
|
IsNotEmpty as IsNotEmpty68,
|
|
8186
8220
|
IsOptional as IsOptional44,
|
|
8187
8221
|
IsString as IsString48,
|
|
@@ -8216,7 +8250,7 @@ __decorateClass([
|
|
|
8216
8250
|
], UpdateFreelancerTimesheetDto.prototype, "endTime", 2);
|
|
8217
8251
|
__decorateClass([
|
|
8218
8252
|
IsOptional44(),
|
|
8219
|
-
|
|
8253
|
+
IsInt13()
|
|
8220
8254
|
], UpdateFreelancerTimesheetDto.prototype, "taskId", 2);
|
|
8221
8255
|
__decorateClass([
|
|
8222
8256
|
IsOptional44(),
|
|
@@ -9542,10 +9576,9 @@ export {
|
|
|
9542
9576
|
McqStatusEnum,
|
|
9543
9577
|
ModeOfHire,
|
|
9544
9578
|
ModeOfWork,
|
|
9545
|
-
ModeOfWorkDto,
|
|
9546
9579
|
NOTIFICATION_PATTERN,
|
|
9547
9580
|
NatureOfWork,
|
|
9548
|
-
NatureOfWorkDto,
|
|
9581
|
+
NatureOfWorkDto2 as NatureOfWorkDto,
|
|
9549
9582
|
NotificationRMQAdapter,
|
|
9550
9583
|
NotificationTCPAdapter,
|
|
9551
9584
|
ONBOARDING_PATTERN,
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
export declare enum NatureOfWorkDto {
|
|
2
|
+
FREELANCE = "FREELANCE",
|
|
3
|
+
FTE = "FTE",
|
|
4
|
+
BOTH = "BOTH"
|
|
5
|
+
}
|
|
1
6
|
declare enum NatureOfWorkEnum {
|
|
2
7
|
FTE = "FTE",
|
|
3
8
|
FREELANCE = "FREELANCE",
|
|
@@ -18,6 +23,8 @@ export declare class CreateFreelancerDto {
|
|
|
18
23
|
developer: boolean;
|
|
19
24
|
natureOfWork: NatureOfWorkEnum;
|
|
20
25
|
expectedHourlyCompensation: number;
|
|
26
|
+
expectedAnnualCompensation: string;
|
|
27
|
+
numberOfHours?: number;
|
|
21
28
|
modeOfWork: ModeOfWorkEnum;
|
|
22
29
|
isImmediateJoiner: boolean;
|
|
23
30
|
availabilityToJoin: string;
|
|
@@ -17,6 +17,8 @@ export declare class UpdateFreelancerDto {
|
|
|
17
17
|
developer?: boolean;
|
|
18
18
|
natureOfWork?: NatureOfWorkEnum;
|
|
19
19
|
expectedHourlyCompensation?: number;
|
|
20
|
+
expectedAnnualCompensation: string;
|
|
21
|
+
numberOfHours?: number;
|
|
20
22
|
modeOfWork?: ModeOfWorkEnum;
|
|
21
23
|
isImmediateJoiner?: boolean;
|
|
22
24
|
availabilityToJoin?: string;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
declare enum NatureOfWorkDto {
|
|
2
2
|
FREELANCE = "FREELANCE",
|
|
3
3
|
FTE = "FTE",
|
|
4
4
|
BOTH = "BOTH"
|
|
5
5
|
}
|
|
6
|
-
|
|
6
|
+
declare enum ModeOfWorkDto {
|
|
7
7
|
ONSITE = "ONSITE",
|
|
8
8
|
REMOTE = "REMOTE",
|
|
9
9
|
HYBRID = "HYBRID"
|
|
@@ -35,3 +35,4 @@ export declare class UpdateFreelancerProfileDto {
|
|
|
35
35
|
stackOverflowProfileLink?: string;
|
|
36
36
|
resumeUrl?: string;
|
|
37
37
|
}
|
|
38
|
+
export {};
|