@experts_hub/shared 1.0.349 → 1.0.350
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 +4 -0
- package/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +22 -0
- package/dist/index.mjs +30 -1
- package/package.json +1 -1
|
@@ -7,5 +7,9 @@ export declare class JobRecommendation {
|
|
|
7
7
|
clientId: number;
|
|
8
8
|
matchScore: number;
|
|
9
9
|
matchScoreSummary?: Record<string, any>;
|
|
10
|
+
matchingSkills: string[];
|
|
11
|
+
matchingSkillsCount: number;
|
|
12
|
+
requiredSkills: string[];
|
|
13
|
+
requiredSkillsCount: number;
|
|
10
14
|
lastCalculatedAt: Date;
|
|
11
15
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -999,6 +999,10 @@ declare class JobRecommendation {
|
|
|
999
999
|
clientId: number;
|
|
1000
1000
|
matchScore: number;
|
|
1001
1001
|
matchScoreSummary?: Record<string, any>;
|
|
1002
|
+
matchingSkills: string[];
|
|
1003
|
+
matchingSkillsCount: number;
|
|
1004
|
+
requiredSkills: string[];
|
|
1005
|
+
requiredSkillsCount: number;
|
|
1002
1006
|
lastCalculatedAt: Date;
|
|
1003
1007
|
}
|
|
1004
1008
|
|
package/dist/index.d.ts
CHANGED
|
@@ -999,6 +999,10 @@ declare class JobRecommendation {
|
|
|
999
999
|
clientId: number;
|
|
1000
1000
|
matchScore: number;
|
|
1001
1001
|
matchScoreSummary?: Record<string, any>;
|
|
1002
|
+
matchingSkills: string[];
|
|
1003
|
+
matchingSkillsCount: number;
|
|
1004
|
+
requiredSkills: string[];
|
|
1005
|
+
requiredSkillsCount: number;
|
|
1002
1006
|
lastCalculatedAt: Date;
|
|
1003
1007
|
}
|
|
1004
1008
|
|
package/dist/index.js
CHANGED
|
@@ -2871,6 +2871,28 @@ __decorateClass([
|
|
|
2871
2871
|
__decorateClass([
|
|
2872
2872
|
(0, import_typeorm20.Column)({ name: "match_score_summary", type: "jsonb", nullable: true })
|
|
2873
2873
|
], JobRecommendation.prototype, "matchScoreSummary", 2);
|
|
2874
|
+
__decorateClass([
|
|
2875
|
+
(0, import_typeorm20.Column)({
|
|
2876
|
+
name: "matching_skills",
|
|
2877
|
+
type: "text",
|
|
2878
|
+
array: true,
|
|
2879
|
+
nullable: true
|
|
2880
|
+
})
|
|
2881
|
+
], JobRecommendation.prototype, "matchingSkills", 2);
|
|
2882
|
+
__decorateClass([
|
|
2883
|
+
(0, import_typeorm20.Column)({ name: "matching_skills_count", type: "int", nullable: true })
|
|
2884
|
+
], JobRecommendation.prototype, "matchingSkillsCount", 2);
|
|
2885
|
+
__decorateClass([
|
|
2886
|
+
(0, import_typeorm20.Column)({
|
|
2887
|
+
name: "required_skills",
|
|
2888
|
+
type: "text",
|
|
2889
|
+
array: true,
|
|
2890
|
+
nullable: true
|
|
2891
|
+
})
|
|
2892
|
+
], JobRecommendation.prototype, "requiredSkills", 2);
|
|
2893
|
+
__decorateClass([
|
|
2894
|
+
(0, import_typeorm20.Column)({ name: "required_skills_count", type: "int", nullable: true })
|
|
2895
|
+
], JobRecommendation.prototype, "requiredSkillsCount", 2);
|
|
2874
2896
|
__decorateClass([
|
|
2875
2897
|
(0, import_typeorm20.Column)({
|
|
2876
2898
|
name: "last_calculated_at",
|
package/dist/index.mjs
CHANGED
|
@@ -2803,7 +2803,14 @@ Interview = __decorateClass([
|
|
|
2803
2803
|
], Interview);
|
|
2804
2804
|
|
|
2805
2805
|
// src/entities/job-recommendation.entity.ts
|
|
2806
|
-
import {
|
|
2806
|
+
import {
|
|
2807
|
+
Entity as Entity19,
|
|
2808
|
+
Column as Column20,
|
|
2809
|
+
Index as Index13,
|
|
2810
|
+
ManyToOne as ManyToOne18,
|
|
2811
|
+
JoinColumn as JoinColumn18,
|
|
2812
|
+
PrimaryGeneratedColumn as PrimaryGeneratedColumn5
|
|
2813
|
+
} from "typeorm";
|
|
2807
2814
|
var JobRecommendation = class {
|
|
2808
2815
|
};
|
|
2809
2816
|
__decorateClass([
|
|
@@ -2831,6 +2838,28 @@ __decorateClass([
|
|
|
2831
2838
|
__decorateClass([
|
|
2832
2839
|
Column20({ name: "match_score_summary", type: "jsonb", nullable: true })
|
|
2833
2840
|
], JobRecommendation.prototype, "matchScoreSummary", 2);
|
|
2841
|
+
__decorateClass([
|
|
2842
|
+
Column20({
|
|
2843
|
+
name: "matching_skills",
|
|
2844
|
+
type: "text",
|
|
2845
|
+
array: true,
|
|
2846
|
+
nullable: true
|
|
2847
|
+
})
|
|
2848
|
+
], JobRecommendation.prototype, "matchingSkills", 2);
|
|
2849
|
+
__decorateClass([
|
|
2850
|
+
Column20({ name: "matching_skills_count", type: "int", nullable: true })
|
|
2851
|
+
], JobRecommendation.prototype, "matchingSkillsCount", 2);
|
|
2852
|
+
__decorateClass([
|
|
2853
|
+
Column20({
|
|
2854
|
+
name: "required_skills",
|
|
2855
|
+
type: "text",
|
|
2856
|
+
array: true,
|
|
2857
|
+
nullable: true
|
|
2858
|
+
})
|
|
2859
|
+
], JobRecommendation.prototype, "requiredSkills", 2);
|
|
2860
|
+
__decorateClass([
|
|
2861
|
+
Column20({ name: "required_skills_count", type: "int", nullable: true })
|
|
2862
|
+
], JobRecommendation.prototype, "requiredSkillsCount", 2);
|
|
2834
2863
|
__decorateClass([
|
|
2835
2864
|
Column20({
|
|
2836
2865
|
name: "last_calculated_at",
|