@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.
- package/dist/entities/job.entity.d.ts +1 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
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",
|