@experts_hub/shared 1.0.491 → 1.0.492
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
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -3871,6 +3871,9 @@ __decorateClass([
|
|
|
3871
3871
|
__decorateClass([
|
|
3872
3872
|
(0, import_typeorm28.Column)({ name: "job_role", type: "varchar", nullable: true })
|
|
3873
3873
|
], Job.prototype, "jobRole", 2);
|
|
3874
|
+
__decorateClass([
|
|
3875
|
+
(0, import_typeorm28.Column)({ name: "job_role_canonical_name", type: "varchar", nullable: true })
|
|
3876
|
+
], Job.prototype, "jobRoleCanonicalName", 2);
|
|
3874
3877
|
__decorateClass([
|
|
3875
3878
|
(0, import_typeorm28.Column)({ name: "project_name", type: "varchar", nullable: true })
|
|
3876
3879
|
], Job.prototype, "projectName", 2);
|
package/dist/index.mjs
CHANGED
|
@@ -3790,6 +3790,9 @@ __decorateClass([
|
|
|
3790
3790
|
__decorateClass([
|
|
3791
3791
|
Column28({ name: "job_role", type: "varchar", nullable: true })
|
|
3792
3792
|
], Job.prototype, "jobRole", 2);
|
|
3793
|
+
__decorateClass([
|
|
3794
|
+
Column28({ name: "job_role_canonical_name", type: "varchar", nullable: true })
|
|
3795
|
+
], Job.prototype, "jobRoleCanonicalName", 2);
|
|
3793
3796
|
__decorateClass([
|
|
3794
3797
|
Column28({ name: "project_name", type: "varchar", nullable: true })
|
|
3795
3798
|
], Job.prototype, "projectName", 2);
|