@experts_hub/shared 1.0.389 → 1.0.390
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/job.entity.d.ts +2 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +6 -0
- package/dist/index.mjs +6 -0
- package/package.json +1 -1
|
@@ -70,6 +70,8 @@ export declare class Job extends BaseEntity {
|
|
|
70
70
|
status: JobStatusEnum;
|
|
71
71
|
viewedCount: number;
|
|
72
72
|
applicationCount: number;
|
|
73
|
+
isContractSigned: boolean;
|
|
74
|
+
isInterviewCreated: boolean;
|
|
73
75
|
jobSkills: JobSkill[];
|
|
74
76
|
jobApplications: JobApplication[];
|
|
75
77
|
interviews: Interview[];
|
package/dist/index.d.mts
CHANGED
|
@@ -1167,6 +1167,8 @@ declare class Job extends BaseEntity {
|
|
|
1167
1167
|
status: JobStatusEnum;
|
|
1168
1168
|
viewedCount: number;
|
|
1169
1169
|
applicationCount: number;
|
|
1170
|
+
isContractSigned: boolean;
|
|
1171
|
+
isInterviewCreated: boolean;
|
|
1170
1172
|
jobSkills: JobSkill[];
|
|
1171
1173
|
jobApplications: JobApplication[];
|
|
1172
1174
|
interviews: Interview[];
|
package/dist/index.d.ts
CHANGED
|
@@ -1167,6 +1167,8 @@ declare class Job extends BaseEntity {
|
|
|
1167
1167
|
status: JobStatusEnum;
|
|
1168
1168
|
viewedCount: number;
|
|
1169
1169
|
applicationCount: number;
|
|
1170
|
+
isContractSigned: boolean;
|
|
1171
|
+
isInterviewCreated: boolean;
|
|
1170
1172
|
jobSkills: JobSkill[];
|
|
1171
1173
|
jobApplications: JobApplication[];
|
|
1172
1174
|
interviews: Interview[];
|
package/dist/index.js
CHANGED
|
@@ -3377,6 +3377,12 @@ __decorateClass([
|
|
|
3377
3377
|
__decorateClass([
|
|
3378
3378
|
(0, import_typeorm23.Column)({ name: "application_count", type: "integer", default: 0 })
|
|
3379
3379
|
], Job.prototype, "applicationCount", 2);
|
|
3380
|
+
__decorateClass([
|
|
3381
|
+
(0, import_typeorm23.Column)({ name: "is_contract_signed", type: "boolean", default: false })
|
|
3382
|
+
], Job.prototype, "isContractSigned", 2);
|
|
3383
|
+
__decorateClass([
|
|
3384
|
+
(0, import_typeorm23.Column)({ name: "is_interview_created", type: "boolean", default: false })
|
|
3385
|
+
], Job.prototype, "isInterviewCreated", 2);
|
|
3380
3386
|
__decorateClass([
|
|
3381
3387
|
(0, import_typeorm23.OneToMany)(() => JobSkill, (jobSkill) => jobSkill.job, { cascade: true })
|
|
3382
3388
|
], Job.prototype, "jobSkills", 2);
|
package/dist/index.mjs
CHANGED
|
@@ -3311,6 +3311,12 @@ __decorateClass([
|
|
|
3311
3311
|
__decorateClass([
|
|
3312
3312
|
Column23({ name: "application_count", type: "integer", default: 0 })
|
|
3313
3313
|
], Job.prototype, "applicationCount", 2);
|
|
3314
|
+
__decorateClass([
|
|
3315
|
+
Column23({ name: "is_contract_signed", type: "boolean", default: false })
|
|
3316
|
+
], Job.prototype, "isContractSigned", 2);
|
|
3317
|
+
__decorateClass([
|
|
3318
|
+
Column23({ name: "is_interview_created", type: "boolean", default: false })
|
|
3319
|
+
], Job.prototype, "isInterviewCreated", 2);
|
|
3314
3320
|
__decorateClass([
|
|
3315
3321
|
OneToMany9(() => JobSkill, (jobSkill) => jobSkill.job, { cascade: true })
|
|
3316
3322
|
], Job.prototype, "jobSkills", 2);
|