@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.
@@ -51,6 +51,8 @@ export declare class Job extends BaseEntity {
51
51
  candidateCommunicationSkills: string;
52
52
  stepCompleted: Step;
53
53
  status: JobStatusEnum;
54
+ viewedCount: number;
55
+ applicationCount: number;
54
56
  jobSkills: JobSkill[];
55
57
  jobApplications: JobApplication[];
56
58
  }
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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.139",
3
+ "version": "1.0.140",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",