@experts_hub/shared 1.0.715 → 1.0.717
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/entities/freelancer-profile.entity.d.ts +5 -0
- package/dist/index.d.mts +76 -4
- package/dist/index.d.ts +76 -4
- package/dist/index.js +1880 -1633
- package/dist/index.mjs +1729 -1471
- package/dist/modules/job/dto/create-job-as-is.dto.d.ts +66 -0
- package/dist/modules/job/dto/index.d.ts +1 -0
- package/dist/modules/job/pattern/pattern.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
declare enum JobLocationEnumV2 {
|
|
2
|
+
ONSITE = "ONSITE",
|
|
3
|
+
REMOTE = "REMOTE",
|
|
4
|
+
HYBRID = "HYBRID"
|
|
5
|
+
}
|
|
6
|
+
declare enum EmploymentTypeV2 {
|
|
7
|
+
FULLTIME = "FULLTIME",
|
|
8
|
+
PARTTIME = "PARTTIME",
|
|
9
|
+
BOTH = "BOTH",
|
|
10
|
+
HOURLY = "HOURLY",
|
|
11
|
+
FREELANCE = "FREELANCE",
|
|
12
|
+
FTE = "FTE"
|
|
13
|
+
}
|
|
14
|
+
declare enum BillingCycleEnumV2 {
|
|
15
|
+
WEEKLY = "WEEKLY",
|
|
16
|
+
DELIVERABLE = "DELIVERABLE"
|
|
17
|
+
}
|
|
18
|
+
declare enum StepCompletedEnumV2 {
|
|
19
|
+
BASIC_INFORMATION = "BASIC_INFORMATION",
|
|
20
|
+
JOB_DESCRIPTION = "JOB_DESCRIPTION"
|
|
21
|
+
}
|
|
22
|
+
declare class JobLocationDto {
|
|
23
|
+
countryId: number | null;
|
|
24
|
+
stateId: number | null;
|
|
25
|
+
cityId: number | null;
|
|
26
|
+
countryName?: string | null;
|
|
27
|
+
stateName?: string | null;
|
|
28
|
+
cityName?: string | null;
|
|
29
|
+
}
|
|
30
|
+
export declare class CreateJobAsIsDto {
|
|
31
|
+
isDraft?: boolean;
|
|
32
|
+
jobRole: string;
|
|
33
|
+
jobRoleCanonicalName?: string;
|
|
34
|
+
projectName?: string;
|
|
35
|
+
note?: string;
|
|
36
|
+
skills: string[];
|
|
37
|
+
goodToHaveSkills: string[];
|
|
38
|
+
openings: number;
|
|
39
|
+
locationMode: JobLocationEnumV2;
|
|
40
|
+
locations: JobLocationDto[];
|
|
41
|
+
typeOfEmployment: EmploymentTypeV2;
|
|
42
|
+
billingCycle: BillingCycleEnumV2;
|
|
43
|
+
currency?: string;
|
|
44
|
+
expectedSalaryFrom: number;
|
|
45
|
+
hideExpectedSalaryFrom: boolean;
|
|
46
|
+
expectedSalaryTo: number;
|
|
47
|
+
hideExpectedSalaryTo: boolean;
|
|
48
|
+
expectedAnnualBudgetFrom: number;
|
|
49
|
+
hideExpectedAnnualBudgetFrom: boolean;
|
|
50
|
+
expectedAnnualBudgetTo: number;
|
|
51
|
+
hideExpectedAnnualBudgetTo: boolean;
|
|
52
|
+
years: string;
|
|
53
|
+
months: string;
|
|
54
|
+
weeks: string;
|
|
55
|
+
days: string;
|
|
56
|
+
numberOfHours: number;
|
|
57
|
+
candidateCommunicationSkills?: string;
|
|
58
|
+
academicQualification?: string;
|
|
59
|
+
yearsOfExperienceFrom?: string;
|
|
60
|
+
yearsOfExperienceTo?: string;
|
|
61
|
+
businessIndustry?: string;
|
|
62
|
+
stepCompleted?: StepCompletedEnumV2;
|
|
63
|
+
additionalComment?: string;
|
|
64
|
+
description: string;
|
|
65
|
+
}
|
|
66
|
+
export {};
|
|
@@ -2,6 +2,7 @@ export * from './job-basic-information.dto';
|
|
|
2
2
|
export * from './job-additional-comment.dto';
|
|
3
3
|
export * from './job-description.dto';
|
|
4
4
|
export * from './create-job-via-ai.dto.';
|
|
5
|
+
export * from './create-job-as-is.dto';
|
|
5
6
|
export * from './job-status.dto';
|
|
6
7
|
export * from './job-id-param.dto';
|
|
7
8
|
export * from './job-basic-information-v2.dto';
|