@cool-digital-solutions/interferir-models 1.3.69 → 1.3.71
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.
|
@@ -58,7 +58,7 @@ const sparkUseCaseSchema = new mongoose_1.Schema({
|
|
|
58
58
|
],
|
|
59
59
|
},
|
|
60
60
|
],
|
|
61
|
-
|
|
61
|
+
portiaArticle: { type: mongoose_1.Schema.Types.ObjectId, ref: 'PortiaArticle' },
|
|
62
62
|
aiTaskResearchManagerOutputs: [{ type: mongoose_1.Schema.Types.ObjectId, ref: 'AiTaskResearchManagerOutput' }],
|
|
63
63
|
sfIndustries: [{ type: mongoose_1.Schema.Types.ObjectId, ref: 'Industry' }],
|
|
64
64
|
sfTechnologies: [{ type: mongoose_1.Schema.Types.ObjectId, ref: 'Technology' }],
|
|
@@ -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 {
|
|
@@ -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 = {}));
|
|
@@ -95,7 +95,7 @@ export interface ISparkUseCase extends BaseSchema {
|
|
|
95
95
|
fromEmptySparkUseCase: boolean;
|
|
96
96
|
projectLocation: string[];
|
|
97
97
|
aiTaskResearchManagerOutputs: Types.ObjectId[] | IAiTaskResearchManagerOutput[];
|
|
98
|
-
|
|
98
|
+
portiaArticle: Types.ObjectId | IPortiaArticle;
|
|
99
99
|
source: Source;
|
|
100
100
|
}
|
|
101
101
|
export interface ISparkUseCaseModel extends BaseModel<ISparkUseCase> {
|