@experts_hub/shared 1.0.513 → 1.0.515
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/entities/ai-interview.entity.d.ts +1 -0
- package/dist/entities/job-location.entity.d.ts +3 -0
- package/dist/index.d.mts +58 -1
- package/dist/index.d.ts +58 -1
- package/dist/index.js +776 -568
- package/dist/index.mjs +778 -562
- package/dist/modules/job/dto/index.d.ts +1 -0
- package/dist/modules/job/dto/job-basic-information-v2.dto.d.ts +52 -0
- package/package.json +1 -1
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
export declare enum JobLocationEnumV2 {
|
|
2
|
+
ONSITE = "ONSITE",
|
|
3
|
+
REMOTE = "REMOTE",
|
|
4
|
+
HYBRID = "HYBRID"
|
|
5
|
+
}
|
|
6
|
+
export declare enum EmploymentTypeV2 {
|
|
7
|
+
FULLTIME = "FULLTIME",
|
|
8
|
+
PARTTIME = "PARTTIME",
|
|
9
|
+
BOTH = "BOTH",
|
|
10
|
+
HOURLY = "HOURLY",
|
|
11
|
+
FREELANCE = "FREELANCE",
|
|
12
|
+
FTE = "FTE"
|
|
13
|
+
}
|
|
14
|
+
export declare enum typeOfExperienceDtoEnumV2 {
|
|
15
|
+
SINGLE = "SINGLE",
|
|
16
|
+
RANGE = "RANGE"
|
|
17
|
+
}
|
|
18
|
+
export declare class JobLocationDto {
|
|
19
|
+
cityId?: string;
|
|
20
|
+
stateId?: string;
|
|
21
|
+
countryId: number;
|
|
22
|
+
}
|
|
23
|
+
export declare class JobBasicInformationV2Dto {
|
|
24
|
+
isDraft?: boolean;
|
|
25
|
+
jobRole: string;
|
|
26
|
+
jobRoleCanonicalName?: string;
|
|
27
|
+
projectName?: string;
|
|
28
|
+
note?: string;
|
|
29
|
+
skills: string[];
|
|
30
|
+
goodToHaveSkills: string[];
|
|
31
|
+
locations: JobLocationDto[];
|
|
32
|
+
openings: number;
|
|
33
|
+
locationMode: JobLocationEnumV2;
|
|
34
|
+
typeOfEmployment: EmploymentTypeV2;
|
|
35
|
+
currency?: string;
|
|
36
|
+
expectedSalaryFrom: number;
|
|
37
|
+
hideExpectedSalaryFrom: boolean;
|
|
38
|
+
expectedSalaryTo: number;
|
|
39
|
+
hideExpectedSalaryTo: boolean;
|
|
40
|
+
years: string;
|
|
41
|
+
months: string;
|
|
42
|
+
weeks: string;
|
|
43
|
+
days: string;
|
|
44
|
+
numberOfHours: number;
|
|
45
|
+
candidateCommunicationSkills?: string;
|
|
46
|
+
academicQualification?: string;
|
|
47
|
+
yearsOfExperienceType: typeOfExperienceDtoEnumV2;
|
|
48
|
+
yearsOfExperienceFrom?: string;
|
|
49
|
+
yearsOfExperienceTo?: string;
|
|
50
|
+
businessIndustry?: string;
|
|
51
|
+
additionalComment?: string;
|
|
52
|
+
}
|