@experts_hub/shared 1.0.517 → 1.0.519

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.
@@ -0,0 +1,54 @@
1
+ declare enum JobLocationAdminEnumDto {
2
+ ONSITE = "ONSITE",
3
+ REMOTE = "REMOTE",
4
+ HYBRID = "HYBRID"
5
+ }
6
+ declare enum EmploymentTypeAdminEnumDto {
7
+ FULLTIME = "FULLTIME",
8
+ PARTTIME = "PARTTIME",
9
+ BOTH = "BOTH",
10
+ HOURLY = "HOURLY",
11
+ FREELANCE = "FREELANCE",
12
+ FTE = "FTE"
13
+ }
14
+ declare enum typeOfExperienceAdminEnumDto {
15
+ SINGLE = "SINGLE",
16
+ RANGE = "RANGE"
17
+ }
18
+ export declare class JobLocationAdminDto {
19
+ countryId: number;
20
+ stateId: number;
21
+ cityId: number;
22
+ }
23
+ export declare class AdminJobBasicInformationV2Dto {
24
+ clientId: number;
25
+ isDraft?: boolean;
26
+ jobRole: string;
27
+ jobRoleCanonicalName?: string;
28
+ projectName?: string;
29
+ note?: string;
30
+ skills: string[];
31
+ goodToHaveSkills: string[];
32
+ locations: JobLocationAdminDto[];
33
+ openings: number;
34
+ location: JobLocationAdminEnumDto;
35
+ typeOfEmployment: EmploymentTypeAdminEnumDto;
36
+ currency?: string;
37
+ expectedSalaryFrom: number;
38
+ hideExpectedSalaryFrom: boolean;
39
+ expectedSalaryTo: number;
40
+ hideExpectedSalaryTo: boolean;
41
+ years: string;
42
+ months: string;
43
+ weeks: string;
44
+ days: string;
45
+ numberOfHours: number;
46
+ candidateCommunicationSkills?: string;
47
+ academicQualification?: string;
48
+ yearsOfExperienceType: typeOfExperienceAdminEnumDto;
49
+ yearsOfExperienceFrom?: string;
50
+ yearsOfExperienceTo?: string;
51
+ businessIndustry?: string;
52
+ additionalComment?: string;
53
+ }
54
+ export {};
@@ -1,2 +1,3 @@
1
1
  export * from './admin-create-job-information.dto';
2
2
  export * from './admin-update-job-information.dto';
3
+ export * from './admin-job-basic-information-v2.dto';
@@ -3,6 +3,8 @@ export declare const ADMIN_JOB_PATTERN: {
3
3
  adminFetchJobById: string;
4
4
  adminCreateJob: string;
5
5
  adminUpdateJob: string;
6
+ adminCreateJobV2: string;
7
+ adminUpdateJobV2: string;
6
8
  adminDeleteJob: string;
7
9
  adminCountJob: string;
8
10
  adminFetchGraphCount: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.517",
3
+ "version": "1.0.519",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",