@cool-digital-solutions/interferir-models 1.4.48 → 1.4.50

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.
@@ -140,6 +140,9 @@ const aiHrCandidateProfileSchema = new mongoose_1.Schema({
140
140
  },
141
141
  ],
142
142
  candidateSources: [{ type: String, required: true }],
143
+ strengthWeaknessesTitle: [
144
+ { name: { type: String, required: false }, strengths: [{ type: Number, required: false }], weaknesses: [{ type: Number, required: false }] },
145
+ ],
143
146
  createdBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
144
147
  updatedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
145
148
  updatedDate: Number,
@@ -149,6 +149,11 @@ interface IWorkHistory {
149
149
  companyUrl: string;
150
150
  companyDescription: string;
151
151
  }
152
+ interface StrengthWeaknessesTitle {
153
+ name: string;
154
+ strengths: number[];
155
+ weaknesses: number[];
156
+ }
152
157
  export interface IAiHrCandidateProfile extends BaseSchema {
153
158
  aiTask: Types.ObjectId | IAiTask;
154
159
  aiHrCandidate: Types.ObjectId | IAiHrCandidate;
@@ -180,6 +185,7 @@ export interface IAiHrCandidateProfile extends BaseSchema {
180
185
  educationHistory: IEducationHistory[];
181
186
  workHistory: IWorkHistory[];
182
187
  candidateSources: string[];
188
+ strengthWeaknessesTitle: StrengthWeaknessesTitle[];
183
189
  }
184
190
  export interface IAiHrCandidateProfileModel extends BaseModel<IAiHrCandidateProfile> {
185
191
  }
@@ -210,7 +210,6 @@ export interface ICompany extends BaseSchema {
210
210
  source: string;
211
211
  countryCode: string;
212
212
  logo: Types.ObjectId | IImage;
213
- industries: string[];
214
213
  email: string;
215
214
  type: CompanyTypes;
216
215
  isActive: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cool-digital-solutions/interferir-models",
3
- "version": "1.4.48",
3
+ "version": "1.4.50",
4
4
  "main": "./dist/index.js",
5
5
  "files": [
6
6
  "dist/**/*"