@experts_hub/shared 1.0.209 → 1.0.211
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/job.entity.d.ts +10 -0
- package/dist/index.d.mts +54 -39
- package/dist/index.d.ts +54 -39
- package/dist/index.js +525 -479
- package/dist/index.mjs +562 -515
- package/dist/modules/freelancer-admin/dto/create-freelancer.dto.d.ts +1 -1
- package/dist/modules/freelancer-admin/dto/update-freelancer.dto.d.ts +10 -10
- package/dist/modules/job/pattern/pattern.d.ts +7 -0
- package/dist/modules/user/freelancer-profile/pattern/pattern.d.ts +1 -0
- package/package.json +1 -1
|
@@ -3,6 +3,9 @@ import { User } from "./user.entity";
|
|
|
3
3
|
import { JobSkill } from "./job-skill.entity";
|
|
4
4
|
import { JobApplication } from "./job-application.entity";
|
|
5
5
|
import { Interview } from "./interview.entity";
|
|
6
|
+
import { Country } from "./country.entity";
|
|
7
|
+
import { State } from "./state.entity";
|
|
8
|
+
import { City } from "./city.entity";
|
|
6
9
|
export declare enum JobLocationEnum {
|
|
7
10
|
ONSITE = "ONSITE",
|
|
8
11
|
REMOTE = "REMOTE",
|
|
@@ -35,6 +38,12 @@ export declare class Job extends BaseEntity {
|
|
|
35
38
|
jobId: string;
|
|
36
39
|
userId: number;
|
|
37
40
|
user: User;
|
|
41
|
+
countryId: number;
|
|
42
|
+
country: Country;
|
|
43
|
+
stateId: number;
|
|
44
|
+
state: State;
|
|
45
|
+
cityId: number;
|
|
46
|
+
city: City;
|
|
38
47
|
jobRole: string;
|
|
39
48
|
note: string;
|
|
40
49
|
openings: number;
|
|
@@ -44,6 +53,7 @@ export declare class Job extends BaseEntity {
|
|
|
44
53
|
expectedSalaryFrom: number;
|
|
45
54
|
expectedSalaryTo: number;
|
|
46
55
|
tentativeStartDate: Date;
|
|
56
|
+
tentativeEndDate: Date;
|
|
47
57
|
duration: string;
|
|
48
58
|
durationType: DurationTypeEnum;
|
|
49
59
|
description: string;
|
package/dist/index.d.mts
CHANGED
|
@@ -400,6 +400,13 @@ declare const JOB_PATTERN: {
|
|
|
400
400
|
updateJobStatus: string;
|
|
401
401
|
searchJobsByRoleAndSkills: string;
|
|
402
402
|
};
|
|
403
|
+
declare const JOB_ADMIN_PATTERN: {
|
|
404
|
+
adminFetchJobList: string;
|
|
405
|
+
adminFetchJobById: string;
|
|
406
|
+
adminCreateJob: string;
|
|
407
|
+
adminUpdateJob: string;
|
|
408
|
+
adminDeleteJob: string;
|
|
409
|
+
};
|
|
403
410
|
|
|
404
411
|
declare enum JobLocation {
|
|
405
412
|
ONSITE = "ONSITE",
|
|
@@ -449,6 +456,7 @@ declare class JobIdParamDto {
|
|
|
449
456
|
|
|
450
457
|
declare const PROFILE_PATTERN: {
|
|
451
458
|
fetchFreelancerProfile: string;
|
|
459
|
+
fetchFreelancerScreeningResult: string;
|
|
452
460
|
changeFreelancerPassword: string;
|
|
453
461
|
uploadFreelancerProfilePic: string;
|
|
454
462
|
updateFreelancerProfile: string;
|
|
@@ -755,6 +763,33 @@ declare class Interview extends BaseEntity {
|
|
|
755
763
|
interviewSkills: InterviewSkill[];
|
|
756
764
|
}
|
|
757
765
|
|
|
766
|
+
declare class City extends BaseEntity {
|
|
767
|
+
countryId: number;
|
|
768
|
+
country: Country;
|
|
769
|
+
stateId: number;
|
|
770
|
+
state: State;
|
|
771
|
+
cityCode: string;
|
|
772
|
+
cityName: string;
|
|
773
|
+
isActive: boolean;
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
declare class State extends BaseEntity {
|
|
777
|
+
countryId: number;
|
|
778
|
+
country: Country;
|
|
779
|
+
cities: City[];
|
|
780
|
+
stateName: string;
|
|
781
|
+
isActive: boolean;
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
declare class Country extends BaseEntity {
|
|
785
|
+
states: State[];
|
|
786
|
+
countryName: string;
|
|
787
|
+
countryIsoCode: string;
|
|
788
|
+
countryPhoneCode: string;
|
|
789
|
+
currency: string;
|
|
790
|
+
isActive: boolean;
|
|
791
|
+
}
|
|
792
|
+
|
|
758
793
|
declare enum JobLocationEnum {
|
|
759
794
|
ONSITE = "ONSITE",
|
|
760
795
|
REMOTE = "REMOTE",
|
|
@@ -787,6 +822,12 @@ declare class Job extends BaseEntity {
|
|
|
787
822
|
jobId: string;
|
|
788
823
|
userId: number;
|
|
789
824
|
user: User;
|
|
825
|
+
countryId: number;
|
|
826
|
+
country: Country;
|
|
827
|
+
stateId: number;
|
|
828
|
+
state: State;
|
|
829
|
+
cityId: number;
|
|
830
|
+
city: City;
|
|
790
831
|
jobRole: string;
|
|
791
832
|
note: string;
|
|
792
833
|
openings: number;
|
|
@@ -796,6 +837,7 @@ declare class Job extends BaseEntity {
|
|
|
796
837
|
expectedSalaryFrom: number;
|
|
797
838
|
expectedSalaryTo: number;
|
|
798
839
|
tentativeStartDate: Date;
|
|
840
|
+
tentativeEndDate: Date;
|
|
799
841
|
duration: string;
|
|
800
842
|
durationType: DurationTypeEnum;
|
|
801
843
|
description: string;
|
|
@@ -1408,8 +1450,8 @@ declare class CreateFreelancerDto {
|
|
|
1408
1450
|
natureOfWork: NatureOfWorkEnum$1;
|
|
1409
1451
|
expectedHourlyCompensation: number;
|
|
1410
1452
|
modeOfWork: ModeOfWorkEnum$1;
|
|
1411
|
-
availabilityToJoin: string;
|
|
1412
1453
|
isImmediateJoiner: boolean;
|
|
1454
|
+
availabilityToJoin: string;
|
|
1413
1455
|
linkedinProfileLink?: string;
|
|
1414
1456
|
kaggleProfileLink?: string;
|
|
1415
1457
|
githubProfileLink?: string;
|
|
@@ -1428,17 +1470,17 @@ declare enum ModeOfWorkEnum {
|
|
|
1428
1470
|
BOTH = "BOTH"
|
|
1429
1471
|
}
|
|
1430
1472
|
declare class UpdateFreelancerDto {
|
|
1431
|
-
fullName
|
|
1432
|
-
email
|
|
1433
|
-
mobileCode
|
|
1434
|
-
mobile
|
|
1473
|
+
fullName?: string;
|
|
1474
|
+
email?: string;
|
|
1475
|
+
mobileCode?: string;
|
|
1476
|
+
mobile?: string;
|
|
1435
1477
|
password?: string;
|
|
1436
|
-
developer
|
|
1437
|
-
natureOfWork
|
|
1438
|
-
expectedHourlyCompensation
|
|
1439
|
-
modeOfWork
|
|
1440
|
-
|
|
1441
|
-
|
|
1478
|
+
developer?: boolean;
|
|
1479
|
+
natureOfWork?: NatureOfWorkEnum;
|
|
1480
|
+
expectedHourlyCompensation?: number;
|
|
1481
|
+
modeOfWork?: ModeOfWorkEnum;
|
|
1482
|
+
isImmediateJoiner?: boolean;
|
|
1483
|
+
availabilityToJoin?: string;
|
|
1442
1484
|
linkedinProfileLink?: string;
|
|
1443
1485
|
kaggleProfileLink?: string;
|
|
1444
1486
|
githubProfileLink?: string;
|
|
@@ -1756,31 +1798,4 @@ declare class Cms extends BaseEntity {
|
|
|
1756
1798
|
isActive: boolean;
|
|
1757
1799
|
}
|
|
1758
1800
|
|
|
1759
|
-
|
|
1760
|
-
countryId: number;
|
|
1761
|
-
country: Country;
|
|
1762
|
-
stateId: number;
|
|
1763
|
-
state: State;
|
|
1764
|
-
cityCode: string;
|
|
1765
|
-
cityName: string;
|
|
1766
|
-
isActive: boolean;
|
|
1767
|
-
}
|
|
1768
|
-
|
|
1769
|
-
declare class State extends BaseEntity {
|
|
1770
|
-
countryId: number;
|
|
1771
|
-
country: Country;
|
|
1772
|
-
cities: City[];
|
|
1773
|
-
stateName: string;
|
|
1774
|
-
isActive: boolean;
|
|
1775
|
-
}
|
|
1776
|
-
|
|
1777
|
-
declare class Country extends BaseEntity {
|
|
1778
|
-
states: State[];
|
|
1779
|
-
countryName: string;
|
|
1780
|
-
countryIsoCode: string;
|
|
1781
|
-
countryPhoneCode: string;
|
|
1782
|
-
currency: string;
|
|
1783
|
-
isActive: boolean;
|
|
1784
|
-
}
|
|
1785
|
-
|
|
1786
|
-
export { ADMIN_FREELANCER_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, 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, City, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, Cms, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, Country, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateFreelancerDto, 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, FreelancerCoreSkill, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, 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, JobRMQAdapter, JobRoles, JobSkill, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, 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, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum };
|
|
1801
|
+
export { ADMIN_FREELANCER_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, 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, City, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, Cms, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, Country, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateFreelancerDto, 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, FreelancerCoreSkill, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, 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_ADMIN_PATTERN, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobIdParamDto, JobLocation, JobLocationEnum, JobRMQAdapter, JobRoles, JobSkill, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, 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, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum };
|
package/dist/index.d.ts
CHANGED
|
@@ -400,6 +400,13 @@ declare const JOB_PATTERN: {
|
|
|
400
400
|
updateJobStatus: string;
|
|
401
401
|
searchJobsByRoleAndSkills: string;
|
|
402
402
|
};
|
|
403
|
+
declare const JOB_ADMIN_PATTERN: {
|
|
404
|
+
adminFetchJobList: string;
|
|
405
|
+
adminFetchJobById: string;
|
|
406
|
+
adminCreateJob: string;
|
|
407
|
+
adminUpdateJob: string;
|
|
408
|
+
adminDeleteJob: string;
|
|
409
|
+
};
|
|
403
410
|
|
|
404
411
|
declare enum JobLocation {
|
|
405
412
|
ONSITE = "ONSITE",
|
|
@@ -449,6 +456,7 @@ declare class JobIdParamDto {
|
|
|
449
456
|
|
|
450
457
|
declare const PROFILE_PATTERN: {
|
|
451
458
|
fetchFreelancerProfile: string;
|
|
459
|
+
fetchFreelancerScreeningResult: string;
|
|
452
460
|
changeFreelancerPassword: string;
|
|
453
461
|
uploadFreelancerProfilePic: string;
|
|
454
462
|
updateFreelancerProfile: string;
|
|
@@ -755,6 +763,33 @@ declare class Interview extends BaseEntity {
|
|
|
755
763
|
interviewSkills: InterviewSkill[];
|
|
756
764
|
}
|
|
757
765
|
|
|
766
|
+
declare class City extends BaseEntity {
|
|
767
|
+
countryId: number;
|
|
768
|
+
country: Country;
|
|
769
|
+
stateId: number;
|
|
770
|
+
state: State;
|
|
771
|
+
cityCode: string;
|
|
772
|
+
cityName: string;
|
|
773
|
+
isActive: boolean;
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
declare class State extends BaseEntity {
|
|
777
|
+
countryId: number;
|
|
778
|
+
country: Country;
|
|
779
|
+
cities: City[];
|
|
780
|
+
stateName: string;
|
|
781
|
+
isActive: boolean;
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
declare class Country extends BaseEntity {
|
|
785
|
+
states: State[];
|
|
786
|
+
countryName: string;
|
|
787
|
+
countryIsoCode: string;
|
|
788
|
+
countryPhoneCode: string;
|
|
789
|
+
currency: string;
|
|
790
|
+
isActive: boolean;
|
|
791
|
+
}
|
|
792
|
+
|
|
758
793
|
declare enum JobLocationEnum {
|
|
759
794
|
ONSITE = "ONSITE",
|
|
760
795
|
REMOTE = "REMOTE",
|
|
@@ -787,6 +822,12 @@ declare class Job extends BaseEntity {
|
|
|
787
822
|
jobId: string;
|
|
788
823
|
userId: number;
|
|
789
824
|
user: User;
|
|
825
|
+
countryId: number;
|
|
826
|
+
country: Country;
|
|
827
|
+
stateId: number;
|
|
828
|
+
state: State;
|
|
829
|
+
cityId: number;
|
|
830
|
+
city: City;
|
|
790
831
|
jobRole: string;
|
|
791
832
|
note: string;
|
|
792
833
|
openings: number;
|
|
@@ -796,6 +837,7 @@ declare class Job extends BaseEntity {
|
|
|
796
837
|
expectedSalaryFrom: number;
|
|
797
838
|
expectedSalaryTo: number;
|
|
798
839
|
tentativeStartDate: Date;
|
|
840
|
+
tentativeEndDate: Date;
|
|
799
841
|
duration: string;
|
|
800
842
|
durationType: DurationTypeEnum;
|
|
801
843
|
description: string;
|
|
@@ -1408,8 +1450,8 @@ declare class CreateFreelancerDto {
|
|
|
1408
1450
|
natureOfWork: NatureOfWorkEnum$1;
|
|
1409
1451
|
expectedHourlyCompensation: number;
|
|
1410
1452
|
modeOfWork: ModeOfWorkEnum$1;
|
|
1411
|
-
availabilityToJoin: string;
|
|
1412
1453
|
isImmediateJoiner: boolean;
|
|
1454
|
+
availabilityToJoin: string;
|
|
1413
1455
|
linkedinProfileLink?: string;
|
|
1414
1456
|
kaggleProfileLink?: string;
|
|
1415
1457
|
githubProfileLink?: string;
|
|
@@ -1428,17 +1470,17 @@ declare enum ModeOfWorkEnum {
|
|
|
1428
1470
|
BOTH = "BOTH"
|
|
1429
1471
|
}
|
|
1430
1472
|
declare class UpdateFreelancerDto {
|
|
1431
|
-
fullName
|
|
1432
|
-
email
|
|
1433
|
-
mobileCode
|
|
1434
|
-
mobile
|
|
1473
|
+
fullName?: string;
|
|
1474
|
+
email?: string;
|
|
1475
|
+
mobileCode?: string;
|
|
1476
|
+
mobile?: string;
|
|
1435
1477
|
password?: string;
|
|
1436
|
-
developer
|
|
1437
|
-
natureOfWork
|
|
1438
|
-
expectedHourlyCompensation
|
|
1439
|
-
modeOfWork
|
|
1440
|
-
|
|
1441
|
-
|
|
1478
|
+
developer?: boolean;
|
|
1479
|
+
natureOfWork?: NatureOfWorkEnum;
|
|
1480
|
+
expectedHourlyCompensation?: number;
|
|
1481
|
+
modeOfWork?: ModeOfWorkEnum;
|
|
1482
|
+
isImmediateJoiner?: boolean;
|
|
1483
|
+
availabilityToJoin?: string;
|
|
1442
1484
|
linkedinProfileLink?: string;
|
|
1443
1485
|
kaggleProfileLink?: string;
|
|
1444
1486
|
githubProfileLink?: string;
|
|
@@ -1756,31 +1798,4 @@ declare class Cms extends BaseEntity {
|
|
|
1756
1798
|
isActive: boolean;
|
|
1757
1799
|
}
|
|
1758
1800
|
|
|
1759
|
-
|
|
1760
|
-
countryId: number;
|
|
1761
|
-
country: Country;
|
|
1762
|
-
stateId: number;
|
|
1763
|
-
state: State;
|
|
1764
|
-
cityCode: string;
|
|
1765
|
-
cityName: string;
|
|
1766
|
-
isActive: boolean;
|
|
1767
|
-
}
|
|
1768
|
-
|
|
1769
|
-
declare class State extends BaseEntity {
|
|
1770
|
-
countryId: number;
|
|
1771
|
-
country: Country;
|
|
1772
|
-
cities: City[];
|
|
1773
|
-
stateName: string;
|
|
1774
|
-
isActive: boolean;
|
|
1775
|
-
}
|
|
1776
|
-
|
|
1777
|
-
declare class Country extends BaseEntity {
|
|
1778
|
-
states: State[];
|
|
1779
|
-
countryName: string;
|
|
1780
|
-
countryIsoCode: string;
|
|
1781
|
-
countryPhoneCode: string;
|
|
1782
|
-
currency: string;
|
|
1783
|
-
isActive: boolean;
|
|
1784
|
-
}
|
|
1785
|
-
|
|
1786
|
-
export { ADMIN_FREELANCER_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, 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, City, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, Cms, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, Country, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateFreelancerDto, 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, FreelancerCoreSkill, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, 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, JobRMQAdapter, JobRoles, JobSkill, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, 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, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum };
|
|
1801
|
+
export { ADMIN_FREELANCER_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, 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, City, ClientChangePasswordDto, ClientCreateAccountDto, ClientProfileQuestionDto, Cms, CompanyMemberRole, CompanyOnboardingStepEnum, CompanyProfile, CompanyRole, CompanyRolePermission, Country, CreateClientDto, CreateClientHiringModeEnum, CreateClientHiringTypeEnum, CreateCmsDto, CreateCompanyMemberDto, CreateCompanyRoleDto, CreateFreelancerDto, 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, FreelancerCoreSkill, FreelancerCreateAccountDto, FreelancerDeclaration, FreelancerDeclarationDto, FreelancerDevelopmentPreferenceDto, FreelancerEducation, FreelancerEducationDto, FreelancerExperience, FreelancerExperienceDto, FreelancerFramework, FreelancerInitiateAiAssessmentDto, FreelancerParseResumeDto, FreelancerProfile, FreelancerProfileQuestionDto, FreelancerProject, FreelancerProjectDto, 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_ADMIN_PATTERN, JOB_PATTERN, JOB_ROLE_PATTERN, Job, JobAdditionalCommentDto, JobApplication, JobBasicInformationDto, JobDescriptionDto, JobIdParamDto, JobLocation, JobLocationEnum, JobRMQAdapter, JobRoles, JobSkill, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, 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, UpdateClientAccountStatusDto, UpdateClientDto, UpdateClientHiringModeEnum, UpdateClientHiringTypeEnum, UpdateCmsDto, UpdateCompanyMemberDto, UpdateCompanyProfileDto, UpdateCompanyRoleDto, UpdateFreelancerDto, UpdateFreelancerProfileDto, UpdateSubAdminAccountStatusDto, UpdateSubAdminDto, User, UserRMQAdapter, UserTCPAdapter, VerifyGuestOtpDto, VerifyGuestOtpPurposeEnum };
|