@experts_hub/shared 1.0.321 → 1.0.322

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.
@@ -1,5 +1,6 @@
1
1
  import { Job } from "./job.entity";
2
2
  export declare class JobRecommendation {
3
+ id: number;
3
4
  jobId: number;
4
5
  job: Job;
5
6
  freelancerId: number;
package/dist/index.d.mts CHANGED
@@ -890,6 +890,7 @@ declare class Interview extends BaseEntity {
890
890
  }
891
891
 
892
892
  declare class JobRecommendation {
893
+ id: number;
893
894
  jobId: number;
894
895
  job: Job;
895
896
  freelancerId: number;
package/dist/index.d.ts CHANGED
@@ -890,6 +890,7 @@ declare class Interview extends BaseEntity {
890
890
  }
891
891
 
892
892
  declare class JobRecommendation {
893
+ id: number;
893
894
  jobId: number;
894
895
  job: Job;
895
896
  freelancerId: number;
package/dist/index.js CHANGED
@@ -2536,6 +2536,9 @@ Interview = __decorateClass([
2536
2536
  var import_typeorm16 = require("typeorm");
2537
2537
  var JobRecommendation = class {
2538
2538
  };
2539
+ __decorateClass([
2540
+ (0, import_typeorm16.PrimaryGeneratedColumn)("increment", { type: "integer" })
2541
+ ], JobRecommendation.prototype, "id", 2);
2539
2542
  __decorateClass([
2540
2543
  (0, import_typeorm16.Column)({ name: "job_id", type: "integer" }),
2541
2544
  (0, import_typeorm16.Index)()
package/dist/index.mjs CHANGED
@@ -2487,15 +2487,12 @@ Interview = __decorateClass([
2487
2487
  ], Interview);
2488
2488
 
2489
2489
  // src/entities/job-recommendation.entity.ts
2490
- import {
2491
- Entity as Entity15,
2492
- Column as Column16,
2493
- Index as Index11,
2494
- ManyToOne as ManyToOne14,
2495
- JoinColumn as JoinColumn14
2496
- } from "typeorm";
2490
+ import { Entity as Entity15, Column as Column16, Index as Index11, ManyToOne as ManyToOne14, JoinColumn as JoinColumn14, PrimaryGeneratedColumn as PrimaryGeneratedColumn5 } from "typeorm";
2497
2491
  var JobRecommendation = class {
2498
2492
  };
2493
+ __decorateClass([
2494
+ PrimaryGeneratedColumn5("increment", { type: "integer" })
2495
+ ], JobRecommendation.prototype, "id", 2);
2499
2496
  __decorateClass([
2500
2497
  Column16({ name: "job_id", type: "integer" }),
2501
2498
  Index11()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.321",
3
+ "version": "1.0.322",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",