@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.
@@ -57,6 +57,7 @@ export declare class Job extends BaseEntity {
57
57
  cityId: number;
58
58
  city: City;
59
59
  jobRole: string;
60
+ jobRoleCanonicalName: string;
60
61
  projectName: string;
61
62
  note: string;
62
63
  openings: number;
package/dist/index.d.mts CHANGED
@@ -1335,6 +1335,7 @@ declare class Job extends BaseEntity {
1335
1335
  cityId: number;
1336
1336
  city: City;
1337
1337
  jobRole: string;
1338
+ jobRoleCanonicalName: string;
1338
1339
  projectName: string;
1339
1340
  note: string;
1340
1341
  openings: number;
package/dist/index.d.ts CHANGED
@@ -1335,6 +1335,7 @@ declare class Job extends BaseEntity {
1335
1335
  cityId: number;
1336
1336
  city: City;
1337
1337
  jobRole: string;
1338
+ jobRoleCanonicalName: string;
1338
1339
  projectName: string;
1339
1340
  note: string;
1340
1341
  openings: number;
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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.491",
3
+ "version": "1.0.492",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",