@cool-digital-solutions/interferir-models 1.3.70 → 1.3.72
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.
|
@@ -20,7 +20,7 @@ const aiHrCandidateProfileSchema = new mongoose_1.Schema({
|
|
|
20
20
|
isOutreached: { type: Boolean, required: false },
|
|
21
21
|
companyBackgroundAnalysis: { type: String, required: false },
|
|
22
22
|
educationBackgroundAnalysis: { type: String, required: false },
|
|
23
|
-
profileTag: { type: String, enum: Object.values(ai_hr_candidate_profile_type_1.ProfileTag), required: false },
|
|
23
|
+
profileTag: { type: [String], enum: Object.values(ai_hr_candidate_profile_type_1.ProfileTag), required: false, default: [] },
|
|
24
24
|
personalityAnalysis: {
|
|
25
25
|
thinkingStyle: {
|
|
26
26
|
learningIndex: {
|
|
@@ -108,8 +108,14 @@ interface PersonalityAnalysis {
|
|
|
108
108
|
interests: Interests;
|
|
109
109
|
}
|
|
110
110
|
export declare enum ProfileTag {
|
|
111
|
-
|
|
111
|
+
FOLLOW_UP_NEEDED = "followUpNeeded",
|
|
112
|
+
HR_INTERVIEW = "hrInterview",
|
|
113
|
+
HR_INTERVIEW_DONE = "hrInterviewDone",
|
|
114
|
+
MANUAL_ASSESSMENT_COMPLETED = "manualAssessmentCompleted",
|
|
115
|
+
MANUAL_ASSESSMENT_SENT = "manualAssessmentSent",
|
|
116
|
+
NOT_FIT = "notFit",
|
|
112
117
|
NOT_INTERESTED = "notInterested",
|
|
118
|
+
SHORT_LIST = "shortList",
|
|
113
119
|
EMPTY = ""
|
|
114
120
|
}
|
|
115
121
|
interface EmailResearch {
|
|
@@ -133,7 +139,7 @@ export interface IAiHrCandidateProfile extends BaseSchema {
|
|
|
133
139
|
educationBackgroundAnalysis: string;
|
|
134
140
|
addToOutreach: boolean;
|
|
135
141
|
isOutreached: boolean;
|
|
136
|
-
profileTag: ProfileTag;
|
|
142
|
+
profileTag: ProfileTag[];
|
|
137
143
|
emailResearch: EmailResearch;
|
|
138
144
|
aiHrAssessment: Types.ObjectId | IAiHrAssessment;
|
|
139
145
|
aiHrAssessmentQuestion: Types.ObjectId | IAiHrAssessmentQuestion;
|
|
@@ -3,7 +3,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.ProfileTag = void 0;
|
|
4
4
|
var ProfileTag;
|
|
5
5
|
(function (ProfileTag) {
|
|
6
|
-
ProfileTag["
|
|
6
|
+
ProfileTag["FOLLOW_UP_NEEDED"] = "followUpNeeded";
|
|
7
|
+
ProfileTag["HR_INTERVIEW"] = "hrInterview";
|
|
8
|
+
ProfileTag["HR_INTERVIEW_DONE"] = "hrInterviewDone";
|
|
9
|
+
ProfileTag["MANUAL_ASSESSMENT_COMPLETED"] = "manualAssessmentCompleted";
|
|
10
|
+
ProfileTag["MANUAL_ASSESSMENT_SENT"] = "manualAssessmentSent";
|
|
11
|
+
ProfileTag["NOT_FIT"] = "notFit";
|
|
7
12
|
ProfileTag["NOT_INTERESTED"] = "notInterested";
|
|
13
|
+
ProfileTag["SHORT_LIST"] = "shortList";
|
|
8
14
|
ProfileTag["EMPTY"] = "";
|
|
9
15
|
})(ProfileTag || (exports.ProfileTag = ProfileTag = {}));
|