@experts_hub/shared 1.0.542 → 1.0.544

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,7 +68,7 @@ export declare class Job extends BaseEntity {
68
68
  projectName: string;
69
69
  note: string;
70
70
  openings: number;
71
- remainingOpenings: number;
71
+ utilisedOpenings: number;
72
72
  location: JobLocationEnum;
73
73
  typeOfEmployment: TypeOfEmploymentEnum;
74
74
  academicQualification: string;
package/dist/index.d.mts CHANGED
@@ -1552,7 +1552,7 @@ declare class Job extends BaseEntity {
1552
1552
  projectName: string;
1553
1553
  note: string;
1554
1554
  openings: number;
1555
- remainingOpenings: number;
1555
+ utilisedOpenings: number;
1556
1556
  location: JobLocationEnum;
1557
1557
  typeOfEmployment: TypeOfEmploymentEnum;
1558
1558
  academicQualification: string;
package/dist/index.d.ts CHANGED
@@ -1552,7 +1552,7 @@ declare class Job extends BaseEntity {
1552
1552
  projectName: string;
1553
1553
  note: string;
1554
1554
  openings: number;
1555
- remainingOpenings: number;
1555
+ utilisedOpenings: number;
1556
1556
  location: JobLocationEnum;
1557
1557
  typeOfEmployment: TypeOfEmploymentEnum;
1558
1558
  academicQualification: string;
package/dist/index.js CHANGED
@@ -4601,8 +4601,8 @@ __decorateClass([
4601
4601
  (0, import_typeorm33.Column)({ name: "openings", type: "integer", default: 0 })
4602
4602
  ], Job.prototype, "openings", 2);
4603
4603
  __decorateClass([
4604
- (0, import_typeorm33.Column)({ name: "remaining_openings", type: "integer", default: 0 })
4605
- ], Job.prototype, "remainingOpenings", 2);
4604
+ (0, import_typeorm33.Column)({ name: "utilised_openings", type: "integer", default: 0 })
4605
+ ], Job.prototype, "utilisedOpenings", 2);
4606
4606
  __decorateClass([
4607
4607
  (0, import_typeorm33.Column)({
4608
4608
  name: "location",
package/dist/index.mjs CHANGED
@@ -4520,8 +4520,8 @@ __decorateClass([
4520
4520
  Column33({ name: "openings", type: "integer", default: 0 })
4521
4521
  ], Job.prototype, "openings", 2);
4522
4522
  __decorateClass([
4523
- Column33({ name: "remaining_openings", type: "integer", default: 0 })
4524
- ], Job.prototype, "remainingOpenings", 2);
4523
+ Column33({ name: "utilised_openings", type: "integer", default: 0 })
4524
+ ], Job.prototype, "utilisedOpenings", 2);
4525
4525
  __decorateClass([
4526
4526
  Column33({
4527
4527
  name: "location",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.542",
3
+ "version": "1.0.544",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",