@experts_hub/shared 1.0.228 → 1.0.229
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/freelancer-profile.entity.d.ts +17 -0
- package/dist/index.d.mts +18 -1
- package/dist/index.d.ts +18 -1
- package/dist/index.js +41 -0
- package/dist/index.mjs +39 -0
- package/package.json +1 -1
|
@@ -15,11 +15,24 @@ export declare enum OnboardingStepEnum {
|
|
|
15
15
|
SIGN_UP = "SIGN_UP",
|
|
16
16
|
UPLOAD_RESUME = "UPLOAD_RESUME",
|
|
17
17
|
PARSE_RESUME = "PARSE_RESUME",
|
|
18
|
+
MCQ_ASSESSMENT_INITIATED = "MCQ_ASSESSMENT_INITIATED",
|
|
19
|
+
MCQ_ASSESSMENT_COMPLETED = "MCQ_ASSESSMENT_COMPLETED",
|
|
18
20
|
AI_ASSESSMENT_INITIATED = "AI_ASSESSMENT_INITIATED",
|
|
19
21
|
AI_ASSESSMENT_COMPLETED = "AI_ASSESSMENT_COMPLETED",
|
|
20
22
|
CODING_CHALLENGE = "CODING_CHALLENGE",
|
|
21
23
|
PROFILE_COMPLETION = "PROFILE_COMPLETION"
|
|
22
24
|
}
|
|
25
|
+
export declare enum McqStatusEnum {
|
|
26
|
+
NOT_ATTEMPTED = "NOT_ATTEMPTED",
|
|
27
|
+
PASSED = "PASSED",
|
|
28
|
+
FAILED = "FAILED"
|
|
29
|
+
}
|
|
30
|
+
export declare enum AiAssessmentStatusEnum {
|
|
31
|
+
NOT_ATTEMPTED = "NOT_ATTEMPTED",
|
|
32
|
+
PASSED = "PASSED",
|
|
33
|
+
FAILED = "FAILED",
|
|
34
|
+
SKIPPED = "SKIPPED"
|
|
35
|
+
}
|
|
23
36
|
export declare class FreelancerProfile extends BaseEntity {
|
|
24
37
|
userId: number;
|
|
25
38
|
user: User;
|
|
@@ -31,6 +44,10 @@ export declare class FreelancerProfile extends BaseEntity {
|
|
|
31
44
|
processedResumeData: string;
|
|
32
45
|
resumeEligibility: string;
|
|
33
46
|
resumeScore: string;
|
|
47
|
+
mcqStatus: McqStatusEnum;
|
|
48
|
+
mcqScore: number;
|
|
49
|
+
isEligibleForAiAssessment: boolean;
|
|
50
|
+
aiAssessmentStatus: AiAssessmentStatusEnum;
|
|
34
51
|
isDeveloper: boolean;
|
|
35
52
|
natureOfWork: NatureOfWork;
|
|
36
53
|
currency: string;
|
package/dist/index.d.mts
CHANGED
|
@@ -642,11 +642,24 @@ declare enum OnboardingStepEnum {
|
|
|
642
642
|
SIGN_UP = "SIGN_UP",
|
|
643
643
|
UPLOAD_RESUME = "UPLOAD_RESUME",
|
|
644
644
|
PARSE_RESUME = "PARSE_RESUME",
|
|
645
|
+
MCQ_ASSESSMENT_INITIATED = "MCQ_ASSESSMENT_INITIATED",
|
|
646
|
+
MCQ_ASSESSMENT_COMPLETED = "MCQ_ASSESSMENT_COMPLETED",
|
|
645
647
|
AI_ASSESSMENT_INITIATED = "AI_ASSESSMENT_INITIATED",
|
|
646
648
|
AI_ASSESSMENT_COMPLETED = "AI_ASSESSMENT_COMPLETED",
|
|
647
649
|
CODING_CHALLENGE = "CODING_CHALLENGE",
|
|
648
650
|
PROFILE_COMPLETION = "PROFILE_COMPLETION"
|
|
649
651
|
}
|
|
652
|
+
declare enum McqStatusEnum {
|
|
653
|
+
NOT_ATTEMPTED = "NOT_ATTEMPTED",
|
|
654
|
+
PASSED = "PASSED",
|
|
655
|
+
FAILED = "FAILED"
|
|
656
|
+
}
|
|
657
|
+
declare enum AiAssessmentStatusEnum {
|
|
658
|
+
NOT_ATTEMPTED = "NOT_ATTEMPTED",
|
|
659
|
+
PASSED = "PASSED",
|
|
660
|
+
FAILED = "FAILED",
|
|
661
|
+
SKIPPED = "SKIPPED"
|
|
662
|
+
}
|
|
650
663
|
declare class FreelancerProfile extends BaseEntity {
|
|
651
664
|
userId: number;
|
|
652
665
|
user: User;
|
|
@@ -658,6 +671,10 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
658
671
|
processedResumeData: string;
|
|
659
672
|
resumeEligibility: string;
|
|
660
673
|
resumeScore: string;
|
|
674
|
+
mcqStatus: McqStatusEnum;
|
|
675
|
+
mcqScore: number;
|
|
676
|
+
isEligibleForAiAssessment: boolean;
|
|
677
|
+
aiAssessmentStatus: AiAssessmentStatusEnum;
|
|
661
678
|
isDeveloper: boolean;
|
|
662
679
|
natureOfWork: NatureOfWork;
|
|
663
680
|
currency: string;
|
|
@@ -1914,4 +1931,4 @@ declare class Lead extends BaseEntity {
|
|
|
1914
1931
|
category: CategoryEmum;
|
|
1915
1932
|
}
|
|
1916
1933
|
|
|
1917
|
-
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminUpdateJobInformationDto, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, COUNTRY_PATTERN, CaseStudyDto, CategoryEmum, CategoryEmumDto, City, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, Cms, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Country, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateFreelancerDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, ExperienceDto, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, Feature, ForgotPasswordDto, FreelancerAssessment, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerSkill, FreelancerSkillDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, 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, 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, Interview, InterviewSkill, InterviewStatusEnum, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobIdParamDto, JobLocation, JobLocationEnum, JobLocationEnumDto, JobLocationEnums, JobRMQAdapter, JobRoles, JobSkill, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, Lead, LoginDto, LogoutDto, 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, RefreshDto, RefreshToken, ResetPasswordDto, STATE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$2 as ScopeEnum, SelectedAnswerTypeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SenseloafLog, SetPasswordDto, Skill, State, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum };
|
|
1934
|
+
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminUpdateJobInformationDto, AiAssessmentStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, COUNTRY_PATTERN, CaseStudyDto, CategoryEmum, CategoryEmumDto, City, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, Cms, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Country, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateFreelancerDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, ExperienceDto, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, Feature, ForgotPasswordDto, FreelancerAssessment, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerSkill, FreelancerSkillDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, 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, 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, Interview, InterviewSkill, InterviewStatusEnum, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobIdParamDto, JobLocation, JobLocationEnum, JobLocationEnumDto, JobLocationEnums, JobRMQAdapter, JobRoles, JobSkill, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, Lead, LoginDto, 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, RefreshDto, RefreshToken, ResetPasswordDto, STATE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$2 as ScopeEnum, SelectedAnswerTypeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SenseloafLog, SetPasswordDto, Skill, State, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum };
|
package/dist/index.d.ts
CHANGED
|
@@ -642,11 +642,24 @@ declare enum OnboardingStepEnum {
|
|
|
642
642
|
SIGN_UP = "SIGN_UP",
|
|
643
643
|
UPLOAD_RESUME = "UPLOAD_RESUME",
|
|
644
644
|
PARSE_RESUME = "PARSE_RESUME",
|
|
645
|
+
MCQ_ASSESSMENT_INITIATED = "MCQ_ASSESSMENT_INITIATED",
|
|
646
|
+
MCQ_ASSESSMENT_COMPLETED = "MCQ_ASSESSMENT_COMPLETED",
|
|
645
647
|
AI_ASSESSMENT_INITIATED = "AI_ASSESSMENT_INITIATED",
|
|
646
648
|
AI_ASSESSMENT_COMPLETED = "AI_ASSESSMENT_COMPLETED",
|
|
647
649
|
CODING_CHALLENGE = "CODING_CHALLENGE",
|
|
648
650
|
PROFILE_COMPLETION = "PROFILE_COMPLETION"
|
|
649
651
|
}
|
|
652
|
+
declare enum McqStatusEnum {
|
|
653
|
+
NOT_ATTEMPTED = "NOT_ATTEMPTED",
|
|
654
|
+
PASSED = "PASSED",
|
|
655
|
+
FAILED = "FAILED"
|
|
656
|
+
}
|
|
657
|
+
declare enum AiAssessmentStatusEnum {
|
|
658
|
+
NOT_ATTEMPTED = "NOT_ATTEMPTED",
|
|
659
|
+
PASSED = "PASSED",
|
|
660
|
+
FAILED = "FAILED",
|
|
661
|
+
SKIPPED = "SKIPPED"
|
|
662
|
+
}
|
|
650
663
|
declare class FreelancerProfile extends BaseEntity {
|
|
651
664
|
userId: number;
|
|
652
665
|
user: User;
|
|
@@ -658,6 +671,10 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
658
671
|
processedResumeData: string;
|
|
659
672
|
resumeEligibility: string;
|
|
660
673
|
resumeScore: string;
|
|
674
|
+
mcqStatus: McqStatusEnum;
|
|
675
|
+
mcqScore: number;
|
|
676
|
+
isEligibleForAiAssessment: boolean;
|
|
677
|
+
aiAssessmentStatus: AiAssessmentStatusEnum;
|
|
661
678
|
isDeveloper: boolean;
|
|
662
679
|
natureOfWork: NatureOfWork;
|
|
663
680
|
currency: string;
|
|
@@ -1914,4 +1931,4 @@ declare class Lead extends BaseEntity {
|
|
|
1914
1931
|
category: CategoryEmum;
|
|
1915
1932
|
}
|
|
1916
1933
|
|
|
1917
|
-
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminUpdateJobInformationDto, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, COUNTRY_PATTERN, CaseStudyDto, CategoryEmum, CategoryEmumDto, City, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, Cms, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Country, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateFreelancerDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, ExperienceDto, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, Feature, ForgotPasswordDto, FreelancerAssessment, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerSkill, FreelancerSkillDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, 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, 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, Interview, InterviewSkill, InterviewStatusEnum, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobIdParamDto, JobLocation, JobLocationEnum, JobLocationEnumDto, JobLocationEnums, JobRMQAdapter, JobRoles, JobSkill, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, Lead, LoginDto, LogoutDto, 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, RefreshDto, RefreshToken, ResetPasswordDto, STATE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$2 as ScopeEnum, SelectedAnswerTypeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SenseloafLog, SetPasswordDto, Skill, State, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum };
|
|
1934
|
+
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminUpdateJobInformationDto, AiAssessmentStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, AssessmentStatusEnum, AssessmetQuestion, AssessmetQuestionOption, BANK_PATTERN, BankAccountScope, BankAccountScopeEnum, BankAccountTypeEnum, BankDetail, BaseEntity, CITY_PATTERN, CLIENT_ADMIN_PATTERNS, CLIENT_PROFILE_PATTERN, CMS_PATTERNS, COMPANY_MEMBERS_PATTERNS, COMPANY_ROLES_PATTERNS, COUNTRY_PATTERN, CaseStudyDto, CategoryEmum, CategoryEmumDto, City, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, Cms, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, CompanySkill, Country, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateFreelancerDto, CreateLeadDto, CreateQuestionDto, CreateRatingDto, CreateSubAdminDto, DocumentType, DocumentTypeEnum, DurationTypeEnum, EducationDto, EmploymentType, ExperienceDto, FREELANCER_DECLARATION_PATTERN, FREELANCER_EDUCATION_PATTERN, FREELANCER_EXPERIENCE_PATTERN, FREELANCER_PROJECT_PATTERN, FREELANCER_SKILL_PATTERN, Feature, ForgotPasswordDto, FreelancerAssessment, FreelancerBankDetailsDto, FreelancerCaptureAiAssessmentStatusDto, FreelancerCaseStudy, FreelancerChangePasswordDto, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, FreelancerSkill, FreelancerSkillDto, FreelancerTool, FreelancerUploadResumeDto, FreelancerWorkShowcaseDto, FromUsOn, 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, 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, Interview, InterviewSkill, InterviewStatusEnum, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobIdParamDto, JobLocation, JobLocationEnum, JobLocationEnumDto, JobLocationEnums, JobRMQAdapter, JobRoles, JobSkill, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, Lead, LoginDto, 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, RefreshDto, RefreshToken, ResetPasswordDto, STATE_PATTERN, SUBADMIN_PATTERN, SYSTEM_PREFERENCES_PATTERN, ScopeEnum$2 as ScopeEnum, SelectedAnswerTypeEnum, SendGuestOtpDto, SendGuestOtpPurposeEnum, SenseloafLog, SetPasswordDto, Skill, State, Step, SystemPreference, SystemPreferenceDto, SystemPreferenceKey, ToggleCompanyMemberVisibilityDto, ToggleCompanyRoleVisibilityDto, TypeOfEmploymentEnum, TypeOfEmploymentEnumDto, TypeOfEmploymentEnums, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum };
|
package/dist/index.js
CHANGED
|
@@ -35,6 +35,7 @@ __export(index_exports, {
|
|
|
35
35
|
AccountType: () => AccountType,
|
|
36
36
|
AdminCreateJobInformationDto: () => AdminCreateJobInformationDto,
|
|
37
37
|
AdminUpdateJobInformationDto: () => AdminUpdateJobInformationDto,
|
|
38
|
+
AiAssessmentStatusEnum: () => AiAssessmentStatusEnum,
|
|
38
39
|
AnswerTypeEnum: () => AnswerTypeEnum,
|
|
39
40
|
ApplicationStatusEnum: () => ApplicationStatusEnum,
|
|
40
41
|
AssessmentAnswer: () => AssessmentAnswer,
|
|
@@ -146,6 +147,7 @@ __export(index_exports, {
|
|
|
146
147
|
Lead: () => Lead,
|
|
147
148
|
LoginDto: () => LoginDto,
|
|
148
149
|
LogoutDto: () => LogoutDto,
|
|
150
|
+
McqStatusEnum: () => McqStatusEnum,
|
|
149
151
|
ModeOfHire: () => ModeOfHire,
|
|
150
152
|
ModeOfWork: () => ModeOfWork,
|
|
151
153
|
NOTIFICATION_PATTERN: () => NOTIFICATION_PATTERN,
|
|
@@ -1532,12 +1534,27 @@ var OnboardingStepEnum = /* @__PURE__ */ ((OnboardingStepEnum2) => {
|
|
|
1532
1534
|
OnboardingStepEnum2["SIGN_UP"] = "SIGN_UP";
|
|
1533
1535
|
OnboardingStepEnum2["UPLOAD_RESUME"] = "UPLOAD_RESUME";
|
|
1534
1536
|
OnboardingStepEnum2["PARSE_RESUME"] = "PARSE_RESUME";
|
|
1537
|
+
OnboardingStepEnum2["MCQ_ASSESSMENT_INITIATED"] = "MCQ_ASSESSMENT_INITIATED";
|
|
1538
|
+
OnboardingStepEnum2["MCQ_ASSESSMENT_COMPLETED"] = "MCQ_ASSESSMENT_COMPLETED";
|
|
1535
1539
|
OnboardingStepEnum2["AI_ASSESSMENT_INITIATED"] = "AI_ASSESSMENT_INITIATED";
|
|
1536
1540
|
OnboardingStepEnum2["AI_ASSESSMENT_COMPLETED"] = "AI_ASSESSMENT_COMPLETED";
|
|
1537
1541
|
OnboardingStepEnum2["CODING_CHALLENGE"] = "CODING_CHALLENGE";
|
|
1538
1542
|
OnboardingStepEnum2["PROFILE_COMPLETION"] = "PROFILE_COMPLETION";
|
|
1539
1543
|
return OnboardingStepEnum2;
|
|
1540
1544
|
})(OnboardingStepEnum || {});
|
|
1545
|
+
var McqStatusEnum = /* @__PURE__ */ ((McqStatusEnum2) => {
|
|
1546
|
+
McqStatusEnum2["NOT_ATTEMPTED"] = "NOT_ATTEMPTED";
|
|
1547
|
+
McqStatusEnum2["PASSED"] = "PASSED";
|
|
1548
|
+
McqStatusEnum2["FAILED"] = "FAILED";
|
|
1549
|
+
return McqStatusEnum2;
|
|
1550
|
+
})(McqStatusEnum || {});
|
|
1551
|
+
var AiAssessmentStatusEnum = /* @__PURE__ */ ((AiAssessmentStatusEnum2) => {
|
|
1552
|
+
AiAssessmentStatusEnum2["NOT_ATTEMPTED"] = "NOT_ATTEMPTED";
|
|
1553
|
+
AiAssessmentStatusEnum2["PASSED"] = "PASSED";
|
|
1554
|
+
AiAssessmentStatusEnum2["FAILED"] = "FAILED";
|
|
1555
|
+
AiAssessmentStatusEnum2["SKIPPED"] = "SKIPPED";
|
|
1556
|
+
return AiAssessmentStatusEnum2;
|
|
1557
|
+
})(AiAssessmentStatusEnum || {});
|
|
1541
1558
|
var FreelancerProfile = class extends BaseEntity {
|
|
1542
1559
|
};
|
|
1543
1560
|
// individual index to find profile by user
|
|
@@ -1574,6 +1591,28 @@ __decorateClass([
|
|
|
1574
1591
|
__decorateClass([
|
|
1575
1592
|
(0, import_typeorm8.Column)({ name: "resume_score", type: "jsonb", nullable: true })
|
|
1576
1593
|
], FreelancerProfile.prototype, "resumeScore", 2);
|
|
1594
|
+
__decorateClass([
|
|
1595
|
+
(0, import_typeorm8.Column)({
|
|
1596
|
+
name: "mcq_status",
|
|
1597
|
+
type: "enum",
|
|
1598
|
+
enum: McqStatusEnum,
|
|
1599
|
+
nullable: true
|
|
1600
|
+
})
|
|
1601
|
+
], FreelancerProfile.prototype, "mcqStatus", 2);
|
|
1602
|
+
__decorateClass([
|
|
1603
|
+
(0, import_typeorm8.Column)({ name: "mcq_score", type: "integer", nullable: true })
|
|
1604
|
+
], FreelancerProfile.prototype, "mcqScore", 2);
|
|
1605
|
+
__decorateClass([
|
|
1606
|
+
(0, import_typeorm8.Column)({ name: "is_eligible_for_ai_assessment", type: "boolean", nullable: true })
|
|
1607
|
+
], FreelancerProfile.prototype, "isEligibleForAiAssessment", 2);
|
|
1608
|
+
__decorateClass([
|
|
1609
|
+
(0, import_typeorm8.Column)({
|
|
1610
|
+
name: "ai_assessment_status",
|
|
1611
|
+
type: "enum",
|
|
1612
|
+
enum: AiAssessmentStatusEnum,
|
|
1613
|
+
nullable: true
|
|
1614
|
+
})
|
|
1615
|
+
], FreelancerProfile.prototype, "aiAssessmentStatus", 2);
|
|
1577
1616
|
__decorateClass([
|
|
1578
1617
|
(0, import_typeorm8.Column)({ name: "is_developer", type: "boolean", default: false })
|
|
1579
1618
|
], FreelancerProfile.prototype, "isDeveloper", 2);
|
|
@@ -4495,6 +4534,7 @@ Lead = __decorateClass([
|
|
|
4495
4534
|
AccountType,
|
|
4496
4535
|
AdminCreateJobInformationDto,
|
|
4497
4536
|
AdminUpdateJobInformationDto,
|
|
4537
|
+
AiAssessmentStatusEnum,
|
|
4498
4538
|
AnswerTypeEnum,
|
|
4499
4539
|
ApplicationStatusEnum,
|
|
4500
4540
|
AssessmentAnswer,
|
|
@@ -4606,6 +4646,7 @@ Lead = __decorateClass([
|
|
|
4606
4646
|
Lead,
|
|
4607
4647
|
LoginDto,
|
|
4608
4648
|
LogoutDto,
|
|
4649
|
+
McqStatusEnum,
|
|
4609
4650
|
ModeOfHire,
|
|
4610
4651
|
ModeOfWork,
|
|
4611
4652
|
NOTIFICATION_PATTERN,
|
package/dist/index.mjs
CHANGED
|
@@ -1483,12 +1483,27 @@ var OnboardingStepEnum = /* @__PURE__ */ ((OnboardingStepEnum2) => {
|
|
|
1483
1483
|
OnboardingStepEnum2["SIGN_UP"] = "SIGN_UP";
|
|
1484
1484
|
OnboardingStepEnum2["UPLOAD_RESUME"] = "UPLOAD_RESUME";
|
|
1485
1485
|
OnboardingStepEnum2["PARSE_RESUME"] = "PARSE_RESUME";
|
|
1486
|
+
OnboardingStepEnum2["MCQ_ASSESSMENT_INITIATED"] = "MCQ_ASSESSMENT_INITIATED";
|
|
1487
|
+
OnboardingStepEnum2["MCQ_ASSESSMENT_COMPLETED"] = "MCQ_ASSESSMENT_COMPLETED";
|
|
1486
1488
|
OnboardingStepEnum2["AI_ASSESSMENT_INITIATED"] = "AI_ASSESSMENT_INITIATED";
|
|
1487
1489
|
OnboardingStepEnum2["AI_ASSESSMENT_COMPLETED"] = "AI_ASSESSMENT_COMPLETED";
|
|
1488
1490
|
OnboardingStepEnum2["CODING_CHALLENGE"] = "CODING_CHALLENGE";
|
|
1489
1491
|
OnboardingStepEnum2["PROFILE_COMPLETION"] = "PROFILE_COMPLETION";
|
|
1490
1492
|
return OnboardingStepEnum2;
|
|
1491
1493
|
})(OnboardingStepEnum || {});
|
|
1494
|
+
var McqStatusEnum = /* @__PURE__ */ ((McqStatusEnum2) => {
|
|
1495
|
+
McqStatusEnum2["NOT_ATTEMPTED"] = "NOT_ATTEMPTED";
|
|
1496
|
+
McqStatusEnum2["PASSED"] = "PASSED";
|
|
1497
|
+
McqStatusEnum2["FAILED"] = "FAILED";
|
|
1498
|
+
return McqStatusEnum2;
|
|
1499
|
+
})(McqStatusEnum || {});
|
|
1500
|
+
var AiAssessmentStatusEnum = /* @__PURE__ */ ((AiAssessmentStatusEnum2) => {
|
|
1501
|
+
AiAssessmentStatusEnum2["NOT_ATTEMPTED"] = "NOT_ATTEMPTED";
|
|
1502
|
+
AiAssessmentStatusEnum2["PASSED"] = "PASSED";
|
|
1503
|
+
AiAssessmentStatusEnum2["FAILED"] = "FAILED";
|
|
1504
|
+
AiAssessmentStatusEnum2["SKIPPED"] = "SKIPPED";
|
|
1505
|
+
return AiAssessmentStatusEnum2;
|
|
1506
|
+
})(AiAssessmentStatusEnum || {});
|
|
1492
1507
|
var FreelancerProfile = class extends BaseEntity {
|
|
1493
1508
|
};
|
|
1494
1509
|
// individual index to find profile by user
|
|
@@ -1525,6 +1540,28 @@ __decorateClass([
|
|
|
1525
1540
|
__decorateClass([
|
|
1526
1541
|
Column8({ name: "resume_score", type: "jsonb", nullable: true })
|
|
1527
1542
|
], FreelancerProfile.prototype, "resumeScore", 2);
|
|
1543
|
+
__decorateClass([
|
|
1544
|
+
Column8({
|
|
1545
|
+
name: "mcq_status",
|
|
1546
|
+
type: "enum",
|
|
1547
|
+
enum: McqStatusEnum,
|
|
1548
|
+
nullable: true
|
|
1549
|
+
})
|
|
1550
|
+
], FreelancerProfile.prototype, "mcqStatus", 2);
|
|
1551
|
+
__decorateClass([
|
|
1552
|
+
Column8({ name: "mcq_score", type: "integer", nullable: true })
|
|
1553
|
+
], FreelancerProfile.prototype, "mcqScore", 2);
|
|
1554
|
+
__decorateClass([
|
|
1555
|
+
Column8({ name: "is_eligible_for_ai_assessment", type: "boolean", nullable: true })
|
|
1556
|
+
], FreelancerProfile.prototype, "isEligibleForAiAssessment", 2);
|
|
1557
|
+
__decorateClass([
|
|
1558
|
+
Column8({
|
|
1559
|
+
name: "ai_assessment_status",
|
|
1560
|
+
type: "enum",
|
|
1561
|
+
enum: AiAssessmentStatusEnum,
|
|
1562
|
+
nullable: true
|
|
1563
|
+
})
|
|
1564
|
+
], FreelancerProfile.prototype, "aiAssessmentStatus", 2);
|
|
1528
1565
|
__decorateClass([
|
|
1529
1566
|
Column8({ name: "is_developer", type: "boolean", default: false })
|
|
1530
1567
|
], FreelancerProfile.prototype, "isDeveloper", 2);
|
|
@@ -4643,6 +4680,7 @@ export {
|
|
|
4643
4680
|
AccountType,
|
|
4644
4681
|
AdminCreateJobInformationDto,
|
|
4645
4682
|
AdminUpdateJobInformationDto,
|
|
4683
|
+
AiAssessmentStatusEnum,
|
|
4646
4684
|
AnswerTypeEnum,
|
|
4647
4685
|
ApplicationStatusEnum,
|
|
4648
4686
|
AssessmentAnswer,
|
|
@@ -4754,6 +4792,7 @@ export {
|
|
|
4754
4792
|
Lead,
|
|
4755
4793
|
LoginDto,
|
|
4756
4794
|
LogoutDto,
|
|
4795
|
+
McqStatusEnum,
|
|
4757
4796
|
ModeOfHire,
|
|
4758
4797
|
ModeOfWork,
|
|
4759
4798
|
NOTIFICATION_PATTERN,
|