@experts_hub/shared 1.0.507 → 1.0.511
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/contract.entity.d.ts +0 -2
- package/dist/entities/index.d.ts +0 -1
- package/dist/entities/job-location.entity.d.ts +0 -0
- package/dist/entities/job.entity.d.ts +7 -0
- package/dist/index.d.mts +8 -43
- package/dist/index.d.ts +8 -43
- package/dist/index.js +757 -833
- package/dist/index.mjs +760 -833
- package/package.json +1 -1
- package/dist/entities/contract-history.entity.d.ts +0 -42
|
@@ -2,7 +2,6 @@ import { BaseEntity } from "./base.entity";
|
|
|
2
2
|
import { Job } from "./job.entity";
|
|
3
3
|
import { User } from "./user.entity";
|
|
4
4
|
import { EscrowWallet } from "./escrow-wallet.entity";
|
|
5
|
-
import { ContractHistory } from "./contract-history.entity";
|
|
6
5
|
export declare enum ContractStatusEnum {
|
|
7
6
|
GENERATED = "GENERATED",
|
|
8
7
|
DRAFTED = "DRAFTED",
|
|
@@ -27,7 +26,6 @@ export declare class Contract extends BaseEntity {
|
|
|
27
26
|
client: User;
|
|
28
27
|
freelancerId: number;
|
|
29
28
|
freelancer: User;
|
|
30
|
-
history: ContractHistory[];
|
|
31
29
|
duration: number;
|
|
32
30
|
status: ContractStatusEnum;
|
|
33
31
|
type: ContractTypeEnum;
|
package/dist/entities/index.d.ts
CHANGED
|
File without changes
|
|
@@ -21,6 +21,10 @@ export declare enum JobLocationEnum {
|
|
|
21
21
|
HYBRID = "HYBRID",
|
|
22
22
|
BOTH = "BOTH"
|
|
23
23
|
}
|
|
24
|
+
export declare enum typeOfExperienceEnum {
|
|
25
|
+
SINGLE = "SINGLE",
|
|
26
|
+
RANGE = "RANGE"
|
|
27
|
+
}
|
|
24
28
|
export declare enum TypeOfEmploymentEnum {
|
|
25
29
|
FULLTIME = "FULLTIME",
|
|
26
30
|
PARTTIME = "PARTTIME",
|
|
@@ -65,7 +69,10 @@ export declare class Job extends BaseEntity {
|
|
|
65
69
|
location: JobLocationEnum;
|
|
66
70
|
typeOfEmployment: TypeOfEmploymentEnum;
|
|
67
71
|
academicQualification: string;
|
|
72
|
+
typeOfExperience: typeOfExperienceEnum;
|
|
68
73
|
yearsOfExperience: string;
|
|
74
|
+
yearsOfExperienceFrom: string;
|
|
75
|
+
yearsOfExperienceTo: string;
|
|
69
76
|
businessIndustry: string;
|
|
70
77
|
currency: string;
|
|
71
78
|
expectedSalaryFrom: number;
|
package/dist/index.d.mts
CHANGED
|
@@ -1290,47 +1290,6 @@ declare class EscrowWallet extends BaseEntity {
|
|
|
1290
1290
|
escrowWalletTransactions: EscrowWalletTransaction[];
|
|
1291
1291
|
}
|
|
1292
1292
|
|
|
1293
|
-
declare enum ContractHistoryStatusEnum {
|
|
1294
|
-
GENERATED = "GENERATED",
|
|
1295
|
-
DRAFTED = "DRAFTED",
|
|
1296
|
-
SENT = "SENT",
|
|
1297
|
-
SIGNED = "SIGNED",
|
|
1298
|
-
ACTIVE = "ACTIVE",
|
|
1299
|
-
CANCELLED = "CANCELLED",
|
|
1300
|
-
DISPUTED = "DISPUTED",
|
|
1301
|
-
REJECTED = "REJECTED",
|
|
1302
|
-
RENEWED = "RENEWED",
|
|
1303
|
-
EXPIRED = "EXPIRED"
|
|
1304
|
-
}
|
|
1305
|
-
declare enum ContractHistoryTypeEnum {
|
|
1306
|
-
NDA = "NDA",
|
|
1307
|
-
WORK = "WORK"
|
|
1308
|
-
}
|
|
1309
|
-
declare enum ContractHistoryActionEnum {
|
|
1310
|
-
GENERATED = "GENERATED",
|
|
1311
|
-
DRAFTED = "DRAFTED",
|
|
1312
|
-
SENT = "SENT",
|
|
1313
|
-
SIGNED = "SIGNED",
|
|
1314
|
-
ACTIVE = "ACTIVE",
|
|
1315
|
-
CANCELLED = "CANCELLED",
|
|
1316
|
-
DISPUTED = "DISPUTED",
|
|
1317
|
-
REJECTED = "REJECTED",
|
|
1318
|
-
RENEWED = "RENEWED",
|
|
1319
|
-
EXPIRED = "EXPIRED",
|
|
1320
|
-
VIEWED = "VIEWED"
|
|
1321
|
-
}
|
|
1322
|
-
declare class ContractHistory extends BaseEntity {
|
|
1323
|
-
contractId: number;
|
|
1324
|
-
contract: Contract;
|
|
1325
|
-
actionBy: number;
|
|
1326
|
-
actionByType: string;
|
|
1327
|
-
previousStatus: ContractHistoryStatusEnum;
|
|
1328
|
-
newStatus: ContractHistoryStatusEnum;
|
|
1329
|
-
type: ContractHistoryTypeEnum;
|
|
1330
|
-
actionType: ContractHistoryActionEnum;
|
|
1331
|
-
remarks: string;
|
|
1332
|
-
}
|
|
1333
|
-
|
|
1334
1293
|
declare enum ContractStatusEnum {
|
|
1335
1294
|
GENERATED = "GENERATED",
|
|
1336
1295
|
DRAFTED = "DRAFTED",
|
|
@@ -1355,7 +1314,6 @@ declare class Contract extends BaseEntity {
|
|
|
1355
1314
|
client: User;
|
|
1356
1315
|
freelancerId: number;
|
|
1357
1316
|
freelancer: User;
|
|
1358
|
-
history: ContractHistory[];
|
|
1359
1317
|
duration: number;
|
|
1360
1318
|
status: ContractStatusEnum;
|
|
1361
1319
|
type: ContractTypeEnum;
|
|
@@ -1417,6 +1375,10 @@ declare enum JobLocationEnum {
|
|
|
1417
1375
|
HYBRID = "HYBRID",
|
|
1418
1376
|
BOTH = "BOTH"
|
|
1419
1377
|
}
|
|
1378
|
+
declare enum typeOfExperienceEnum {
|
|
1379
|
+
SINGLE = "SINGLE",
|
|
1380
|
+
RANGE = "RANGE"
|
|
1381
|
+
}
|
|
1420
1382
|
declare enum TypeOfEmploymentEnum {
|
|
1421
1383
|
FULLTIME = "FULLTIME",
|
|
1422
1384
|
PARTTIME = "PARTTIME",
|
|
@@ -1461,7 +1423,10 @@ declare class Job extends BaseEntity {
|
|
|
1461
1423
|
location: JobLocationEnum;
|
|
1462
1424
|
typeOfEmployment: TypeOfEmploymentEnum;
|
|
1463
1425
|
academicQualification: string;
|
|
1426
|
+
typeOfExperience: typeOfExperienceEnum;
|
|
1464
1427
|
yearsOfExperience: string;
|
|
1428
|
+
yearsOfExperienceFrom: string;
|
|
1429
|
+
yearsOfExperienceTo: string;
|
|
1465
1430
|
businessIndustry: string;
|
|
1466
1431
|
currency: string;
|
|
1467
1432
|
expectedSalaryFrom: number;
|
|
@@ -3128,4 +3093,4 @@ declare class RecommendationWeightageConfig extends BaseEntity {
|
|
|
3128
3093
|
isActive: boolean;
|
|
3129
3094
|
}
|
|
3130
3095
|
|
|
3131
|
-
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentStatusEnum, AiInterview, AiInterviewQuestionGenerateDto, AiInterviewStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, 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,
|
|
3096
|
+
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentStatusEnum, AiInterview, AiInterviewQuestionGenerateDto, AiInterviewStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, 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, 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, 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, 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, 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, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationEnum, JobLocationEnumDto, JobLocationEnums, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, Lead, LoginDto, LoginViaOtpDto, LoginViaOtpScopeEnum, LogoutDto, McqStatusEnum, ModeOfHire, ModeOfWork, ModeOfWorkDto, 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, ResetPasswordDto, ResetPasswordTokenValidationDto, 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, typeOfExperienceEnum };
|
package/dist/index.d.ts
CHANGED
|
@@ -1290,47 +1290,6 @@ declare class EscrowWallet extends BaseEntity {
|
|
|
1290
1290
|
escrowWalletTransactions: EscrowWalletTransaction[];
|
|
1291
1291
|
}
|
|
1292
1292
|
|
|
1293
|
-
declare enum ContractHistoryStatusEnum {
|
|
1294
|
-
GENERATED = "GENERATED",
|
|
1295
|
-
DRAFTED = "DRAFTED",
|
|
1296
|
-
SENT = "SENT",
|
|
1297
|
-
SIGNED = "SIGNED",
|
|
1298
|
-
ACTIVE = "ACTIVE",
|
|
1299
|
-
CANCELLED = "CANCELLED",
|
|
1300
|
-
DISPUTED = "DISPUTED",
|
|
1301
|
-
REJECTED = "REJECTED",
|
|
1302
|
-
RENEWED = "RENEWED",
|
|
1303
|
-
EXPIRED = "EXPIRED"
|
|
1304
|
-
}
|
|
1305
|
-
declare enum ContractHistoryTypeEnum {
|
|
1306
|
-
NDA = "NDA",
|
|
1307
|
-
WORK = "WORK"
|
|
1308
|
-
}
|
|
1309
|
-
declare enum ContractHistoryActionEnum {
|
|
1310
|
-
GENERATED = "GENERATED",
|
|
1311
|
-
DRAFTED = "DRAFTED",
|
|
1312
|
-
SENT = "SENT",
|
|
1313
|
-
SIGNED = "SIGNED",
|
|
1314
|
-
ACTIVE = "ACTIVE",
|
|
1315
|
-
CANCELLED = "CANCELLED",
|
|
1316
|
-
DISPUTED = "DISPUTED",
|
|
1317
|
-
REJECTED = "REJECTED",
|
|
1318
|
-
RENEWED = "RENEWED",
|
|
1319
|
-
EXPIRED = "EXPIRED",
|
|
1320
|
-
VIEWED = "VIEWED"
|
|
1321
|
-
}
|
|
1322
|
-
declare class ContractHistory extends BaseEntity {
|
|
1323
|
-
contractId: number;
|
|
1324
|
-
contract: Contract;
|
|
1325
|
-
actionBy: number;
|
|
1326
|
-
actionByType: string;
|
|
1327
|
-
previousStatus: ContractHistoryStatusEnum;
|
|
1328
|
-
newStatus: ContractHistoryStatusEnum;
|
|
1329
|
-
type: ContractHistoryTypeEnum;
|
|
1330
|
-
actionType: ContractHistoryActionEnum;
|
|
1331
|
-
remarks: string;
|
|
1332
|
-
}
|
|
1333
|
-
|
|
1334
1293
|
declare enum ContractStatusEnum {
|
|
1335
1294
|
GENERATED = "GENERATED",
|
|
1336
1295
|
DRAFTED = "DRAFTED",
|
|
@@ -1355,7 +1314,6 @@ declare class Contract extends BaseEntity {
|
|
|
1355
1314
|
client: User;
|
|
1356
1315
|
freelancerId: number;
|
|
1357
1316
|
freelancer: User;
|
|
1358
|
-
history: ContractHistory[];
|
|
1359
1317
|
duration: number;
|
|
1360
1318
|
status: ContractStatusEnum;
|
|
1361
1319
|
type: ContractTypeEnum;
|
|
@@ -1417,6 +1375,10 @@ declare enum JobLocationEnum {
|
|
|
1417
1375
|
HYBRID = "HYBRID",
|
|
1418
1376
|
BOTH = "BOTH"
|
|
1419
1377
|
}
|
|
1378
|
+
declare enum typeOfExperienceEnum {
|
|
1379
|
+
SINGLE = "SINGLE",
|
|
1380
|
+
RANGE = "RANGE"
|
|
1381
|
+
}
|
|
1420
1382
|
declare enum TypeOfEmploymentEnum {
|
|
1421
1383
|
FULLTIME = "FULLTIME",
|
|
1422
1384
|
PARTTIME = "PARTTIME",
|
|
@@ -1461,7 +1423,10 @@ declare class Job extends BaseEntity {
|
|
|
1461
1423
|
location: JobLocationEnum;
|
|
1462
1424
|
typeOfEmployment: TypeOfEmploymentEnum;
|
|
1463
1425
|
academicQualification: string;
|
|
1426
|
+
typeOfExperience: typeOfExperienceEnum;
|
|
1464
1427
|
yearsOfExperience: string;
|
|
1428
|
+
yearsOfExperienceFrom: string;
|
|
1429
|
+
yearsOfExperienceTo: string;
|
|
1465
1430
|
businessIndustry: string;
|
|
1466
1431
|
currency: string;
|
|
1467
1432
|
expectedSalaryFrom: number;
|
|
@@ -3128,4 +3093,4 @@ declare class RecommendationWeightageConfig extends BaseEntity {
|
|
|
3128
3093
|
isActive: boolean;
|
|
3129
3094
|
}
|
|
3130
3095
|
|
|
3131
|
-
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentStatusEnum, AiInterview, AiInterviewQuestionGenerateDto, AiInterviewStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, 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,
|
|
3096
|
+
export { ADMIN_FREELANCER_PATTERN, ADMIN_JOB_PATTERN, ADMIN_PERMISSION_PATTERN, ADMIN_ROLE_PATTERN, ASSESSMENT_QUESTION_PATTERN, AUTHENTICATION_PATTERN, AccountStatus, AccountType, AdminCreateJobInformationDto, AdminPermission, AdminRole, AdminRolePermission, AdminUpdateJobInformationDto, AdminUserRole, AiAssessmentStatusEnum, AiInterview, AiInterviewQuestionGenerateDto, AiInterviewStatusEnum, AnswerTypeEnum, ApplicationStatusEnum, AssessmentAnswer, 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, 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, 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, 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, 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, JobDescriptionDto, JobFreelancerRecommendation, JobFreelancerRecommendationV2, JobIdParamDto, JobLocation, JobLocationEnum, JobLocationEnumDto, JobLocationEnums, JobRMQAdapter, JobRecommendation, JobRoles, JobSkill, JobSkillCategoryEnum, JobStatus, JobStatusDto, JobStatusEnum, JobTCPAdapter, KindOfHire, LEAD_PATTERN, Lead, LoginDto, LoginViaOtpDto, LoginViaOtpScopeEnum, LogoutDto, McqStatusEnum, ModeOfHire, ModeOfWork, ModeOfWorkDto, 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, ResetPasswordDto, ResetPasswordTokenValidationDto, 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, typeOfExperienceEnum };
|