@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.
- package/dist/entities/job-recommendation.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 +4 -7
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
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()
|