@cool-digital-solutions/interferir-models 1.4.36 → 1.4.37

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.
@@ -11,6 +11,20 @@ const aiHrUploadedCandidateSchema = new mongoose_1.Schema({
11
11
  aiHrFileUpload: { type: mongoose_1.Schema.Types.ObjectId, ref: 'AiHrFileUpload', default: null },
12
12
  linkedinUrl: { type: String, default: '' },
13
13
  status: { type: String, enum: Object.values(ai_hr_uploaded_candidate_type_1.AiHrUploadedCandidateStatus), default: ai_hr_uploaded_candidate_type_1.AiHrUploadedCandidateStatus.DEFAULT },
14
+ linkedinId: { type: Number, default: null },
15
+ email: { type: String, default: '' },
16
+ phone: { type: String, default: '' },
17
+ address: { type: String, default: '' },
18
+ name: { type: String, default: '' },
19
+ location: { type: String, default: '' },
20
+ birthdate: { type: String, default: '' },
21
+ gender: { type: String, default: '' },
22
+ headline: { type: String, default: '' },
23
+ currentCompany: { type: String, default: '' },
24
+ experienceYears: { type: Number, default: null },
25
+ about: { type: String, default: '' },
26
+ skills: { type: String, default: '' },
27
+ languages: { type: String, default: '' },
14
28
  createdBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
15
29
  updatedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
16
30
  updatedDate: Number,
@@ -34,6 +34,20 @@ export interface IAiHrUploadedCandidate extends BaseSchema {
34
34
  aiHrFileUpload: Types.ObjectId | IAiHrFileUpload;
35
35
  linkedinUrl: string;
36
36
  status: AiHrUploadedCandidateStatus;
37
+ linkedinId: number;
38
+ email: string;
39
+ phone: string;
40
+ address: string;
41
+ name: string;
42
+ location: string;
43
+ birthdate: string;
44
+ gender: string;
45
+ headline: string;
46
+ currentCompany: string;
47
+ experienceYears: number;
48
+ about: string;
49
+ skills: string;
50
+ languages: string;
37
51
  }
38
52
  export interface IAiHrUploadedCandidateModel extends BaseModel<IAiHrUploadedCandidate> {
39
53
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cool-digital-solutions/interferir-models",
3
- "version": "1.4.36",
3
+ "version": "1.4.37",
4
4
  "main": "./dist/index.js",
5
5
  "files": [
6
6
  "dist/**/*"