@experts_hub/shared 1.0.537 → 1.0.538

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.
@@ -68,6 +68,7 @@ export declare class Job extends BaseEntity {
68
68
  projectName: string;
69
69
  note: string;
70
70
  openings: number;
71
+ remainingOpenings: number;
71
72
  location: JobLocationEnum;
72
73
  typeOfEmployment: TypeOfEmploymentEnum;
73
74
  academicQualification: string;
package/dist/index.d.mts CHANGED
@@ -1548,6 +1548,7 @@ declare class Job extends BaseEntity {
1548
1548
  projectName: string;
1549
1549
  note: string;
1550
1550
  openings: number;
1551
+ remainingOpenings: number;
1551
1552
  location: JobLocationEnum;
1552
1553
  typeOfEmployment: TypeOfEmploymentEnum;
1553
1554
  academicQualification: string;
package/dist/index.d.ts CHANGED
@@ -1548,6 +1548,7 @@ declare class Job extends BaseEntity {
1548
1548
  projectName: string;
1549
1549
  note: string;
1550
1550
  openings: number;
1551
+ remainingOpenings: number;
1551
1552
  location: JobLocationEnum;
1552
1553
  typeOfEmployment: TypeOfEmploymentEnum;
1553
1554
  academicQualification: string;
package/dist/index.js CHANGED
@@ -4579,6 +4579,9 @@ __decorateClass([
4579
4579
  __decorateClass([
4580
4580
  (0, import_typeorm33.Column)({ name: "openings", type: "integer", default: 0 })
4581
4581
  ], Job.prototype, "openings", 2);
4582
+ __decorateClass([
4583
+ (0, import_typeorm33.Column)({ name: "remaining_openings", type: "integer", default: 0 })
4584
+ ], Job.prototype, "remainingOpenings", 2);
4582
4585
  __decorateClass([
4583
4586
  (0, import_typeorm33.Column)({
4584
4587
  name: "location",
package/dist/index.mjs CHANGED
@@ -4501,6 +4501,9 @@ __decorateClass([
4501
4501
  __decorateClass([
4502
4502
  Column33({ name: "openings", type: "integer", default: 0 })
4503
4503
  ], Job.prototype, "openings", 2);
4504
+ __decorateClass([
4505
+ Column33({ name: "remaining_openings", type: "integer", default: 0 })
4506
+ ], Job.prototype, "remainingOpenings", 2);
4504
4507
  __decorateClass([
4505
4508
  Column33({
4506
4509
  name: "location",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.537",
3
+ "version": "1.0.538",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",