@cool-digital-solutions/interferir-models 1.4.37 → 1.4.38
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.
|
@@ -119,6 +119,9 @@ const aiHrCandidateProfileSchema = new mongoose_1.Schema({
|
|
|
119
119
|
dateFrom: { type: Number, required: false },
|
|
120
120
|
dateTo: { type: Number, required: false },
|
|
121
121
|
universityLinkedinUrl: { type: String, required: false },
|
|
122
|
+
universityLogo: { type: String, required: false },
|
|
123
|
+
universityUrl: { type: String, required: false },
|
|
124
|
+
universityDescription: { type: String, required: false },
|
|
122
125
|
},
|
|
123
126
|
],
|
|
124
127
|
workHistory: [
|
|
@@ -131,6 +134,9 @@ const aiHrCandidateProfileSchema = new mongoose_1.Schema({
|
|
|
131
134
|
companyHqLocationState: { type: String, required: false },
|
|
132
135
|
companyHqLocationCity: { type: String, required: false },
|
|
133
136
|
companyLinkedinUrl: { type: String, required: false },
|
|
137
|
+
companyLogo: { type: String, required: false },
|
|
138
|
+
companyUrl: { type: String, required: false },
|
|
139
|
+
companyDescription: { type: String, required: false },
|
|
134
140
|
},
|
|
135
141
|
],
|
|
136
142
|
candidateSources: [{ type: String, required: true }],
|
|
@@ -132,6 +132,9 @@ interface IEducationHistory {
|
|
|
132
132
|
dateFrom: number;
|
|
133
133
|
dateTo: number;
|
|
134
134
|
universityLinkedinUrl: string;
|
|
135
|
+
universityLogo: string;
|
|
136
|
+
universityUrl: string;
|
|
137
|
+
universityDescription: string;
|
|
135
138
|
}
|
|
136
139
|
interface IWorkHistory {
|
|
137
140
|
company: string;
|
|
@@ -142,6 +145,9 @@ interface IWorkHistory {
|
|
|
142
145
|
companyHqLocationState: string | null;
|
|
143
146
|
companyHqLocationCity: string | null;
|
|
144
147
|
companyLinkedinUrl: string;
|
|
148
|
+
companyLogo: string;
|
|
149
|
+
companyUrl: string;
|
|
150
|
+
companyDescription: string;
|
|
145
151
|
}
|
|
146
152
|
export interface IAiHrCandidateProfile extends BaseSchema {
|
|
147
153
|
aiTask: Types.ObjectId | IAiTask;
|