@experts_hub/shared 1.0.431 → 1.0.432
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/f2f-interview.entity.d.ts +5 -2
- package/dist/entities/job.entity.d.ts +2 -0
- package/dist/index.d.mts +5 -2
- package/dist/index.d.ts +5 -2
- package/dist/index.js +13 -1
- package/dist/index.mjs +13 -1
- package/package.json +1 -1
|
@@ -3,6 +3,7 @@ import { BaseEntity } from './base.entity';
|
|
|
3
3
|
import { Interview } from './interview.entity';
|
|
4
4
|
import { F2fInterviewRescheduleRequest } from './f2f-interview-reschedule-request.entity';
|
|
5
5
|
import { F2FInterviewSchedule } from './f2f-interview-schedule.entity';
|
|
6
|
+
import { Job } from './job.entity';
|
|
6
7
|
export declare enum F2fInterviewStatusEnum {
|
|
7
8
|
DRAFTED = "DRAFTED",
|
|
8
9
|
NOT_ATTEMPTED = "NOT_ATTEMPTED",
|
|
@@ -17,8 +18,10 @@ export declare enum F2fInterviewStatusEnum {
|
|
|
17
18
|
export declare class F2FInterview extends BaseEntity {
|
|
18
19
|
interviewUniqueId: string;
|
|
19
20
|
round: string;
|
|
20
|
-
|
|
21
|
-
|
|
21
|
+
jobId?: number;
|
|
22
|
+
job?: Job;
|
|
23
|
+
interviewId?: number;
|
|
24
|
+
interview?: Interview;
|
|
22
25
|
interviwerId: number;
|
|
23
26
|
interviwer: User;
|
|
24
27
|
candidateId: number;
|
|
@@ -12,6 +12,7 @@ import { Timesheet } from "./timesheets.entity";
|
|
|
12
12
|
import { TimesheetLine } from "./timesheet-line.entity";
|
|
13
13
|
import { ClientCandidatePreference } from "./client-candidate-preference.entity";
|
|
14
14
|
import { Invoice } from "./invoice.entity";
|
|
15
|
+
import { F2FInterview } from "./f2f-interview.entity";
|
|
15
16
|
export declare enum JobLocationEnum {
|
|
16
17
|
ONSITE = "ONSITE",
|
|
17
18
|
REMOTE = "REMOTE",
|
|
@@ -89,6 +90,7 @@ export declare class Job extends BaseEntity {
|
|
|
89
90
|
jobSkills: JobSkill[];
|
|
90
91
|
jobApplications: JobApplication[];
|
|
91
92
|
interviews: Interview[];
|
|
93
|
+
f2fInterviews: F2FInterview[];
|
|
92
94
|
recommendations: JobRecommendation[];
|
|
93
95
|
contracts: Contract[];
|
|
94
96
|
timesheets: Timesheet[];
|
package/dist/index.d.mts
CHANGED
|
@@ -988,8 +988,10 @@ declare enum F2fInterviewStatusEnum {
|
|
|
988
988
|
declare class F2FInterview extends BaseEntity {
|
|
989
989
|
interviewUniqueId: string;
|
|
990
990
|
round: string;
|
|
991
|
-
|
|
992
|
-
|
|
991
|
+
jobId?: number;
|
|
992
|
+
job?: Job;
|
|
993
|
+
interviewId?: number;
|
|
994
|
+
interview?: Interview;
|
|
993
995
|
interviwerId: number;
|
|
994
996
|
interviwer: User;
|
|
995
997
|
candidateId: number;
|
|
@@ -1314,6 +1316,7 @@ declare class Job extends BaseEntity {
|
|
|
1314
1316
|
jobSkills: JobSkill[];
|
|
1315
1317
|
jobApplications: JobApplication[];
|
|
1316
1318
|
interviews: Interview[];
|
|
1319
|
+
f2fInterviews: F2FInterview[];
|
|
1317
1320
|
recommendations: JobRecommendation[];
|
|
1318
1321
|
contracts: Contract[];
|
|
1319
1322
|
timesheets: Timesheet[];
|
package/dist/index.d.ts
CHANGED
|
@@ -988,8 +988,10 @@ declare enum F2fInterviewStatusEnum {
|
|
|
988
988
|
declare class F2FInterview extends BaseEntity {
|
|
989
989
|
interviewUniqueId: string;
|
|
990
990
|
round: string;
|
|
991
|
-
|
|
992
|
-
|
|
991
|
+
jobId?: number;
|
|
992
|
+
job?: Job;
|
|
993
|
+
interviewId?: number;
|
|
994
|
+
interview?: Interview;
|
|
993
995
|
interviwerId: number;
|
|
994
996
|
interviwer: User;
|
|
995
997
|
candidateId: number;
|
|
@@ -1314,6 +1316,7 @@ declare class Job extends BaseEntity {
|
|
|
1314
1316
|
jobSkills: JobSkill[];
|
|
1315
1317
|
jobApplications: JobApplication[];
|
|
1316
1318
|
interviews: Interview[];
|
|
1319
|
+
f2fInterviews: F2FInterview[];
|
|
1317
1320
|
recommendations: JobRecommendation[];
|
|
1318
1321
|
contracts: Contract[];
|
|
1319
1322
|
timesheets: Timesheet[];
|
package/dist/index.js
CHANGED
|
@@ -2799,11 +2799,18 @@ __decorateClass([
|
|
|
2799
2799
|
__decorateClass([
|
|
2800
2800
|
(0, import_typeorm18.Column)({ name: "round", type: "varchar", nullable: true })
|
|
2801
2801
|
], F2FInterview.prototype, "round", 2);
|
|
2802
|
+
__decorateClass([
|
|
2803
|
+
(0, import_typeorm18.Column)({ name: "job_id", type: "integer", nullable: true })
|
|
2804
|
+
], F2FInterview.prototype, "jobId", 2);
|
|
2805
|
+
__decorateClass([
|
|
2806
|
+
(0, import_typeorm18.ManyToOne)(() => Job, (job) => job.f2fInterviews, { nullable: true }),
|
|
2807
|
+
(0, import_typeorm18.JoinColumn)({ name: "job_id" })
|
|
2808
|
+
], F2FInterview.prototype, "job", 2);
|
|
2802
2809
|
__decorateClass([
|
|
2803
2810
|
(0, import_typeorm18.Column)({ name: "interview_id", type: "integer", nullable: true })
|
|
2804
2811
|
], F2FInterview.prototype, "interviewId", 2);
|
|
2805
2812
|
__decorateClass([
|
|
2806
|
-
(0, import_typeorm18.ManyToOne)(() => Interview, (interview) => interview.
|
|
2813
|
+
(0, import_typeorm18.ManyToOne)(() => Interview, (interview) => interview.f2fInterviews, { nullable: true }),
|
|
2807
2814
|
(0, import_typeorm18.JoinColumn)({ name: "interview_id" })
|
|
2808
2815
|
], F2FInterview.prototype, "interview", 2);
|
|
2809
2816
|
__decorateClass([
|
|
@@ -3832,6 +3839,11 @@ __decorateClass([
|
|
|
3832
3839
|
cascade: true
|
|
3833
3840
|
})
|
|
3834
3841
|
], Job.prototype, "interviews", 2);
|
|
3842
|
+
__decorateClass([
|
|
3843
|
+
(0, import_typeorm28.OneToMany)(() => F2FInterview, (f2fInterview) => f2fInterview.job, {
|
|
3844
|
+
cascade: true
|
|
3845
|
+
})
|
|
3846
|
+
], Job.prototype, "f2fInterviews", 2);
|
|
3835
3847
|
__decorateClass([
|
|
3836
3848
|
(0, import_typeorm28.OneToMany)(
|
|
3837
3849
|
() => JobRecommendation,
|
package/dist/index.mjs
CHANGED
|
@@ -2717,11 +2717,18 @@ __decorateClass([
|
|
|
2717
2717
|
__decorateClass([
|
|
2718
2718
|
Column18({ name: "round", type: "varchar", nullable: true })
|
|
2719
2719
|
], F2FInterview.prototype, "round", 2);
|
|
2720
|
+
__decorateClass([
|
|
2721
|
+
Column18({ name: "job_id", type: "integer", nullable: true })
|
|
2722
|
+
], F2FInterview.prototype, "jobId", 2);
|
|
2723
|
+
__decorateClass([
|
|
2724
|
+
ManyToOne16(() => Job, (job) => job.f2fInterviews, { nullable: true }),
|
|
2725
|
+
JoinColumn16({ name: "job_id" })
|
|
2726
|
+
], F2FInterview.prototype, "job", 2);
|
|
2720
2727
|
__decorateClass([
|
|
2721
2728
|
Column18({ name: "interview_id", type: "integer", nullable: true })
|
|
2722
2729
|
], F2FInterview.prototype, "interviewId", 2);
|
|
2723
2730
|
__decorateClass([
|
|
2724
|
-
ManyToOne16(() => Interview, (interview) => interview.
|
|
2731
|
+
ManyToOne16(() => Interview, (interview) => interview.f2fInterviews, { nullable: true }),
|
|
2725
2732
|
JoinColumn16({ name: "interview_id" })
|
|
2726
2733
|
], F2FInterview.prototype, "interview", 2);
|
|
2727
2734
|
__decorateClass([
|
|
@@ -3763,6 +3770,11 @@ __decorateClass([
|
|
|
3763
3770
|
cascade: true
|
|
3764
3771
|
})
|
|
3765
3772
|
], Job.prototype, "interviews", 2);
|
|
3773
|
+
__decorateClass([
|
|
3774
|
+
OneToMany10(() => F2FInterview, (f2fInterview) => f2fInterview.job, {
|
|
3775
|
+
cascade: true
|
|
3776
|
+
})
|
|
3777
|
+
], Job.prototype, "f2fInterviews", 2);
|
|
3766
3778
|
__decorateClass([
|
|
3767
3779
|
OneToMany10(
|
|
3768
3780
|
() => JobRecommendation,
|