@cool-digital-solutions/interferir-models 1.3.71 → 1.3.73

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: {
@@ -21,6 +21,7 @@ const aiTaskResearchManagerOutputPresentationSubmissionSchema = new mongoose_1.S
21
21
  },
22
22
  startDate: { type: Number },
23
23
  endDate: { type: Number },
24
+ isPrintable: { type: Boolean, default: false },
24
25
  createdBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
25
26
  updatedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
26
27
  updatedDate: Number,
@@ -139,7 +139,7 @@ export interface IAiHrCandidateProfile extends BaseSchema {
139
139
  educationBackgroundAnalysis: string;
140
140
  addToOutreach: boolean;
141
141
  isOutreached: boolean;
142
- profileTag: ProfileTag;
142
+ profileTag: ProfileTag[];
143
143
  emailResearch: EmailResearch;
144
144
  aiHrAssessment: Types.ObjectId | IAiHrAssessment;
145
145
  aiHrAssessmentQuestion: Types.ObjectId | IAiHrAssessmentQuestion;
@@ -58,6 +58,7 @@ export interface IAiTaskResearchManagerOutputPresentationSubmission extends Base
58
58
  };
59
59
  startDate: number;
60
60
  endDate: number;
61
+ isPrintable: boolean;
61
62
  }
62
63
  export interface IAiTaskResearchManagerOutputPresentationSubmissionModel extends BaseModel<IAiTaskResearchManagerOutputPresentationSubmission> {
63
64
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cool-digital-solutions/interferir-models",
3
- "version": "1.3.71",
3
+ "version": "1.3.73",
4
4
  "main": "./dist/index.js",
5
5
  "files": [
6
6
  "dist/**/*"