@experts_hub/shared 1.0.391 → 1.0.392

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.
@@ -48,6 +48,7 @@ export declare class Job extends BaseEntity {
48
48
  cityId: number;
49
49
  city: City;
50
50
  jobRole: string;
51
+ projectName: string;
51
52
  note: string;
52
53
  openings: number;
53
54
  location: JobLocationEnum;
package/dist/index.d.mts CHANGED
@@ -1145,6 +1145,7 @@ declare class Job extends BaseEntity {
1145
1145
  cityId: number;
1146
1146
  city: City;
1147
1147
  jobRole: string;
1148
+ projectName: string;
1148
1149
  note: string;
1149
1150
  openings: number;
1150
1151
  location: JobLocationEnum;
package/dist/index.d.ts CHANGED
@@ -1145,6 +1145,7 @@ declare class Job extends BaseEntity {
1145
1145
  cityId: number;
1146
1146
  city: City;
1147
1147
  jobRole: string;
1148
+ projectName: string;
1148
1149
  note: string;
1149
1150
  openings: number;
1150
1151
  location: JobLocationEnum;
package/dist/index.js CHANGED
@@ -3266,6 +3266,9 @@ __decorateClass([
3266
3266
  __decorateClass([
3267
3267
  (0, import_typeorm23.Column)({ name: "job_role", type: "varchar", nullable: true })
3268
3268
  ], Job.prototype, "jobRole", 2);
3269
+ __decorateClass([
3270
+ (0, import_typeorm23.Column)({ name: "project_name", type: "varchar", nullable: true })
3271
+ ], Job.prototype, "projectName", 2);
3269
3272
  __decorateClass([
3270
3273
  (0, import_typeorm23.Column)({ name: "note", type: "varchar", nullable: true })
3271
3274
  ], Job.prototype, "note", 2);
package/dist/index.mjs CHANGED
@@ -3199,6 +3199,9 @@ __decorateClass([
3199
3199
  __decorateClass([
3200
3200
  Column23({ name: "job_role", type: "varchar", nullable: true })
3201
3201
  ], Job.prototype, "jobRole", 2);
3202
+ __decorateClass([
3203
+ Column23({ name: "project_name", type: "varchar", nullable: true })
3204
+ ], Job.prototype, "projectName", 2);
3202
3205
  __decorateClass([
3203
3206
  Column23({ name: "note", type: "varchar", nullable: true })
3204
3207
  ], Job.prototype, "note", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.391",
3
+ "version": "1.0.392",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",