@experts_hub/shared 1.0.506 → 1.0.508
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/assessment-question.entity.d.ts +3 -0
- 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 +15 -0
- package/dist/entities/job.entity.d.ts +9 -0
- package/dist/entities/user.entity.d.ts +2 -0
- package/dist/index.d.mts +25 -45
- package/dist/index.d.ts +25 -45
- package/dist/index.js +146 -173
- package/dist/index.mjs +309 -327
- package/package.json +1 -1
- package/dist/entities/contract-history.entity.d.ts +0 -42
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { BaseEntity } from "./base.entity";
|
|
2
2
|
import { AssessmetQuestionOption } from "./assessment-question-option.entity";
|
|
3
3
|
import { AssessmentAnswer } from "./assessment-answer.entity";
|
|
4
|
+
import { User } from "./user.entity";
|
|
4
5
|
export declare enum QuestionForEnum {
|
|
5
6
|
ASSESSMENT = "ASSESSMENT",
|
|
6
7
|
INTERVIEW = "INTERVIEW"
|
|
@@ -9,6 +10,8 @@ export declare class AssessmetQuestion extends BaseEntity {
|
|
|
9
10
|
text: string;
|
|
10
11
|
questionFor: QuestionForEnum;
|
|
11
12
|
isActive: boolean;
|
|
13
|
+
candidateId: number;
|
|
14
|
+
candidate: User;
|
|
12
15
|
options: AssessmetQuestionOption[];
|
|
13
16
|
answers: AssessmentAnswer[];
|
|
14
17
|
}
|
|
@@ -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
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { BaseEntity } from "./base.entity";
|
|
2
|
+
import { Job } from "./job.entity";
|
|
3
|
+
import { City } from "./city.entity";
|
|
4
|
+
import { State } from "./state.entity";
|
|
5
|
+
import { Country } from "./country.entity";
|
|
6
|
+
export declare class JobLocation extends BaseEntity {
|
|
7
|
+
jobId: number;
|
|
8
|
+
job: Job;
|
|
9
|
+
countryId: number;
|
|
10
|
+
country: Country;
|
|
11
|
+
stateId: number;
|
|
12
|
+
state: State;
|
|
13
|
+
cityId: number;
|
|
14
|
+
city: City;
|
|
15
|
+
}
|
|
@@ -15,12 +15,17 @@ import { Invoice } from "./invoice.entity";
|
|
|
15
15
|
import { F2FInterview } from "./f2f-interview.entity";
|
|
16
16
|
import { InterviewInvite } from "./interview-invite.entity";
|
|
17
17
|
import { EscrowWallet } from "./escrow-wallet.entity";
|
|
18
|
+
import { JobLocation } from "./job-location.entity";
|
|
18
19
|
export declare enum JobLocationEnum {
|
|
19
20
|
ONSITE = "ONSITE",
|
|
20
21
|
REMOTE = "REMOTE",
|
|
21
22
|
HYBRID = "HYBRID",
|
|
22
23
|
BOTH = "BOTH"
|
|
23
24
|
}
|
|
25
|
+
export declare enum typeOfExperienceEnum {
|
|
26
|
+
SINGLE = "SINGLE",
|
|
27
|
+
RANGE = "RANGE"
|
|
28
|
+
}
|
|
24
29
|
export declare enum TypeOfEmploymentEnum {
|
|
25
30
|
FULLTIME = "FULLTIME",
|
|
26
31
|
PARTTIME = "PARTTIME",
|
|
@@ -65,7 +70,10 @@ export declare class Job extends BaseEntity {
|
|
|
65
70
|
location: JobLocationEnum;
|
|
66
71
|
typeOfEmployment: TypeOfEmploymentEnum;
|
|
67
72
|
academicQualification: string;
|
|
73
|
+
typeOfExperience: typeOfExperienceEnum;
|
|
68
74
|
yearsOfExperience: string;
|
|
75
|
+
yearsOfExperienceFrom: string;
|
|
76
|
+
yearsOfExperienceTo: string;
|
|
69
77
|
businessIndustry: string;
|
|
70
78
|
currency: string;
|
|
71
79
|
expectedSalaryFrom: number;
|
|
@@ -103,4 +111,5 @@ export declare class Job extends BaseEntity {
|
|
|
103
111
|
timesheetLine: TimesheetLine[];
|
|
104
112
|
invoice: Invoice[];
|
|
105
113
|
clientCandidatePreferences: ClientCandidatePreference[];
|
|
114
|
+
jobLocations: JobLocation[];
|
|
106
115
|
}
|
|
@@ -37,6 +37,7 @@ import { Dispute } from "./dispute.entity";
|
|
|
37
37
|
import { StripeTransaction } from "./stripe-transaction.entity";
|
|
38
38
|
import { Wallet } from "./wallet.entity";
|
|
39
39
|
import { EscrowWallet } from "./escrow-wallet.entity";
|
|
40
|
+
import { AssessmetQuestion } from "./assessment-question.entity";
|
|
40
41
|
export declare enum AccountType {
|
|
41
42
|
ADMIN = "ADMIN",
|
|
42
43
|
SUB_ADMIN = "SUB_ADMIN",
|
|
@@ -106,6 +107,7 @@ export declare class User extends BaseEntity {
|
|
|
106
107
|
freelancerTool: FreelancerTool[];
|
|
107
108
|
freelancerFramework: FreelancerFramework[];
|
|
108
109
|
freelancerDeclaration: FreelancerDeclaration;
|
|
110
|
+
freelancerMcq: AssessmetQuestion[];
|
|
109
111
|
freelancerAiInterview: AiInterview[];
|
|
110
112
|
freelancerF2FInterviews: F2FInterview[];
|
|
111
113
|
freelancerF2FInterviewRescheduleRequests: F2fInterviewRescheduleRequest[];
|
package/dist/index.d.mts
CHANGED
|
@@ -467,7 +467,7 @@ declare const JOB_PATTERN: {
|
|
|
467
467
|
searchJobsByRoleAndSkills: string;
|
|
468
468
|
};
|
|
469
469
|
|
|
470
|
-
declare enum JobLocation {
|
|
470
|
+
declare enum JobLocation$1 {
|
|
471
471
|
ONSITE = "ONSITE",
|
|
472
472
|
REMOTE = "REMOTE",
|
|
473
473
|
HYBRID = "HYBRID"
|
|
@@ -489,7 +489,7 @@ declare class JobBasicInformationDto {
|
|
|
489
489
|
skills: string[];
|
|
490
490
|
goodToHaveSkills: string[];
|
|
491
491
|
openings: number;
|
|
492
|
-
location: JobLocation;
|
|
492
|
+
location: JobLocation$1;
|
|
493
493
|
countryId: number;
|
|
494
494
|
stateId: number;
|
|
495
495
|
cityId: number;
|
|
@@ -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;
|
|
@@ -1411,12 +1369,27 @@ declare class Timesheet extends BaseEntity {
|
|
|
1411
1369
|
clientSendBackReason: string;
|
|
1412
1370
|
}
|
|
1413
1371
|
|
|
1372
|
+
declare class JobLocation extends BaseEntity {
|
|
1373
|
+
jobId: number;
|
|
1374
|
+
job: Job;
|
|
1375
|
+
countryId: number;
|
|
1376
|
+
country: Country;
|
|
1377
|
+
stateId: number;
|
|
1378
|
+
state: State;
|
|
1379
|
+
cityId: number;
|
|
1380
|
+
city: City;
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1414
1383
|
declare enum JobLocationEnum {
|
|
1415
1384
|
ONSITE = "ONSITE",
|
|
1416
1385
|
REMOTE = "REMOTE",
|
|
1417
1386
|
HYBRID = "HYBRID",
|
|
1418
1387
|
BOTH = "BOTH"
|
|
1419
1388
|
}
|
|
1389
|
+
declare enum typeOfExperienceEnum {
|
|
1390
|
+
SINGLE = "SINGLE",
|
|
1391
|
+
RANGE = "RANGE"
|
|
1392
|
+
}
|
|
1420
1393
|
declare enum TypeOfEmploymentEnum {
|
|
1421
1394
|
FULLTIME = "FULLTIME",
|
|
1422
1395
|
PARTTIME = "PARTTIME",
|
|
@@ -1461,7 +1434,10 @@ declare class Job extends BaseEntity {
|
|
|
1461
1434
|
location: JobLocationEnum;
|
|
1462
1435
|
typeOfEmployment: TypeOfEmploymentEnum;
|
|
1463
1436
|
academicQualification: string;
|
|
1437
|
+
typeOfExperience: typeOfExperienceEnum;
|
|
1464
1438
|
yearsOfExperience: string;
|
|
1439
|
+
yearsOfExperienceFrom: string;
|
|
1440
|
+
yearsOfExperienceTo: string;
|
|
1465
1441
|
businessIndustry: string;
|
|
1466
1442
|
currency: string;
|
|
1467
1443
|
expectedSalaryFrom: number;
|
|
@@ -1499,6 +1475,7 @@ declare class Job extends BaseEntity {
|
|
|
1499
1475
|
timesheetLine: TimesheetLine[];
|
|
1500
1476
|
invoice: Invoice[];
|
|
1501
1477
|
clientCandidatePreferences: ClientCandidatePreference[];
|
|
1478
|
+
jobLocations: JobLocation[];
|
|
1502
1479
|
}
|
|
1503
1480
|
|
|
1504
1481
|
declare enum BankAccountTypeEnum {
|
|
@@ -1687,6 +1664,8 @@ declare class AssessmetQuestion extends BaseEntity {
|
|
|
1687
1664
|
text: string;
|
|
1688
1665
|
questionFor: QuestionForEnum;
|
|
1689
1666
|
isActive: boolean;
|
|
1667
|
+
candidateId: number;
|
|
1668
|
+
candidate: User;
|
|
1690
1669
|
options: AssessmetQuestionOption[];
|
|
1691
1670
|
answers: AssessmentAnswer[];
|
|
1692
1671
|
}
|
|
@@ -1954,6 +1933,7 @@ declare class User extends BaseEntity {
|
|
|
1954
1933
|
freelancerTool: FreelancerTool[];
|
|
1955
1934
|
freelancerFramework: FreelancerFramework[];
|
|
1956
1935
|
freelancerDeclaration: FreelancerDeclaration;
|
|
1936
|
+
freelancerMcq: AssessmetQuestion[];
|
|
1957
1937
|
freelancerAiInterview: AiInterview[];
|
|
1958
1938
|
freelancerF2FInterviews: F2FInterview[];
|
|
1959
1939
|
freelancerF2FInterviewRescheduleRequests: F2fInterviewRescheduleRequest[];
|
|
@@ -3125,4 +3105,4 @@ declare class RecommendationWeightageConfig extends BaseEntity {
|
|
|
3125
3105
|
isActive: boolean;
|
|
3126
3106
|
}
|
|
3127
3107
|
|
|
3128
|
-
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,
|
|
3108
|
+
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$1 as 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
|
@@ -467,7 +467,7 @@ declare const JOB_PATTERN: {
|
|
|
467
467
|
searchJobsByRoleAndSkills: string;
|
|
468
468
|
};
|
|
469
469
|
|
|
470
|
-
declare enum JobLocation {
|
|
470
|
+
declare enum JobLocation$1 {
|
|
471
471
|
ONSITE = "ONSITE",
|
|
472
472
|
REMOTE = "REMOTE",
|
|
473
473
|
HYBRID = "HYBRID"
|
|
@@ -489,7 +489,7 @@ declare class JobBasicInformationDto {
|
|
|
489
489
|
skills: string[];
|
|
490
490
|
goodToHaveSkills: string[];
|
|
491
491
|
openings: number;
|
|
492
|
-
location: JobLocation;
|
|
492
|
+
location: JobLocation$1;
|
|
493
493
|
countryId: number;
|
|
494
494
|
stateId: number;
|
|
495
495
|
cityId: number;
|
|
@@ -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;
|
|
@@ -1411,12 +1369,27 @@ declare class Timesheet extends BaseEntity {
|
|
|
1411
1369
|
clientSendBackReason: string;
|
|
1412
1370
|
}
|
|
1413
1371
|
|
|
1372
|
+
declare class JobLocation extends BaseEntity {
|
|
1373
|
+
jobId: number;
|
|
1374
|
+
job: Job;
|
|
1375
|
+
countryId: number;
|
|
1376
|
+
country: Country;
|
|
1377
|
+
stateId: number;
|
|
1378
|
+
state: State;
|
|
1379
|
+
cityId: number;
|
|
1380
|
+
city: City;
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1414
1383
|
declare enum JobLocationEnum {
|
|
1415
1384
|
ONSITE = "ONSITE",
|
|
1416
1385
|
REMOTE = "REMOTE",
|
|
1417
1386
|
HYBRID = "HYBRID",
|
|
1418
1387
|
BOTH = "BOTH"
|
|
1419
1388
|
}
|
|
1389
|
+
declare enum typeOfExperienceEnum {
|
|
1390
|
+
SINGLE = "SINGLE",
|
|
1391
|
+
RANGE = "RANGE"
|
|
1392
|
+
}
|
|
1420
1393
|
declare enum TypeOfEmploymentEnum {
|
|
1421
1394
|
FULLTIME = "FULLTIME",
|
|
1422
1395
|
PARTTIME = "PARTTIME",
|
|
@@ -1461,7 +1434,10 @@ declare class Job extends BaseEntity {
|
|
|
1461
1434
|
location: JobLocationEnum;
|
|
1462
1435
|
typeOfEmployment: TypeOfEmploymentEnum;
|
|
1463
1436
|
academicQualification: string;
|
|
1437
|
+
typeOfExperience: typeOfExperienceEnum;
|
|
1464
1438
|
yearsOfExperience: string;
|
|
1439
|
+
yearsOfExperienceFrom: string;
|
|
1440
|
+
yearsOfExperienceTo: string;
|
|
1465
1441
|
businessIndustry: string;
|
|
1466
1442
|
currency: string;
|
|
1467
1443
|
expectedSalaryFrom: number;
|
|
@@ -1499,6 +1475,7 @@ declare class Job extends BaseEntity {
|
|
|
1499
1475
|
timesheetLine: TimesheetLine[];
|
|
1500
1476
|
invoice: Invoice[];
|
|
1501
1477
|
clientCandidatePreferences: ClientCandidatePreference[];
|
|
1478
|
+
jobLocations: JobLocation[];
|
|
1502
1479
|
}
|
|
1503
1480
|
|
|
1504
1481
|
declare enum BankAccountTypeEnum {
|
|
@@ -1687,6 +1664,8 @@ declare class AssessmetQuestion extends BaseEntity {
|
|
|
1687
1664
|
text: string;
|
|
1688
1665
|
questionFor: QuestionForEnum;
|
|
1689
1666
|
isActive: boolean;
|
|
1667
|
+
candidateId: number;
|
|
1668
|
+
candidate: User;
|
|
1690
1669
|
options: AssessmetQuestionOption[];
|
|
1691
1670
|
answers: AssessmentAnswer[];
|
|
1692
1671
|
}
|
|
@@ -1954,6 +1933,7 @@ declare class User extends BaseEntity {
|
|
|
1954
1933
|
freelancerTool: FreelancerTool[];
|
|
1955
1934
|
freelancerFramework: FreelancerFramework[];
|
|
1956
1935
|
freelancerDeclaration: FreelancerDeclaration;
|
|
1936
|
+
freelancerMcq: AssessmetQuestion[];
|
|
1957
1937
|
freelancerAiInterview: AiInterview[];
|
|
1958
1938
|
freelancerF2FInterviews: F2FInterview[];
|
|
1959
1939
|
freelancerF2FInterviewRescheduleRequests: F2fInterviewRescheduleRequest[];
|
|
@@ -3125,4 +3105,4 @@ declare class RecommendationWeightageConfig extends BaseEntity {
|
|
|
3125
3105
|
isActive: boolean;
|
|
3126
3106
|
}
|
|
3127
3107
|
|
|
3128
|
-
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,
|
|
3108
|
+
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$1 as 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 };
|