@experts_hub/shared 1.0.139 → 1.0.140
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
package/dist/index.d.mts
CHANGED
|
@@ -720,6 +720,8 @@ declare class Job extends BaseEntity {
|
|
|
720
720
|
candidateCommunicationSkills: string;
|
|
721
721
|
stepCompleted: Step;
|
|
722
722
|
status: JobStatusEnum;
|
|
723
|
+
viewedCount: number;
|
|
724
|
+
applicationCount: number;
|
|
723
725
|
jobSkills: JobSkill[];
|
|
724
726
|
jobApplications: JobApplication[];
|
|
725
727
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -720,6 +720,8 @@ declare class Job extends BaseEntity {
|
|
|
720
720
|
candidateCommunicationSkills: string;
|
|
721
721
|
stepCompleted: Step;
|
|
722
722
|
status: JobStatusEnum;
|
|
723
|
+
viewedCount: number;
|
|
724
|
+
applicationCount: number;
|
|
723
725
|
jobSkills: JobSkill[];
|
|
724
726
|
jobApplications: JobApplication[];
|
|
725
727
|
}
|
package/dist/index.js
CHANGED
|
@@ -1678,6 +1678,12 @@ __decorateClass([
|
|
|
1678
1678
|
default: "DRAFT" /* DRAFT */
|
|
1679
1679
|
})
|
|
1680
1680
|
], Job.prototype, "status", 2);
|
|
1681
|
+
__decorateClass([
|
|
1682
|
+
(0, import_typeorm10.Column)({ name: "viewed_count", type: "integer", default: 0 })
|
|
1683
|
+
], Job.prototype, "viewedCount", 2);
|
|
1684
|
+
__decorateClass([
|
|
1685
|
+
(0, import_typeorm10.Column)({ name: "application_count", type: "integer", default: 0 })
|
|
1686
|
+
], Job.prototype, "applicationCount", 2);
|
|
1681
1687
|
__decorateClass([
|
|
1682
1688
|
(0, import_typeorm10.OneToMany)(() => JobSkill, (jobSkill) => jobSkill.job, { cascade: true })
|
|
1683
1689
|
], Job.prototype, "jobSkills", 2);
|
package/dist/index.mjs
CHANGED
|
@@ -1691,6 +1691,12 @@ __decorateClass([
|
|
|
1691
1691
|
default: "DRAFT" /* DRAFT */
|
|
1692
1692
|
})
|
|
1693
1693
|
], Job.prototype, "status", 2);
|
|
1694
|
+
__decorateClass([
|
|
1695
|
+
Column10({ name: "viewed_count", type: "integer", default: 0 })
|
|
1696
|
+
], Job.prototype, "viewedCount", 2);
|
|
1697
|
+
__decorateClass([
|
|
1698
|
+
Column10({ name: "application_count", type: "integer", default: 0 })
|
|
1699
|
+
], Job.prototype, "applicationCount", 2);
|
|
1694
1700
|
__decorateClass([
|
|
1695
1701
|
OneToMany4(() => JobSkill, (jobSkill) => jobSkill.job, { cascade: true })
|
|
1696
1702
|
], Job.prototype, "jobSkills", 2);
|