@cool-digital-solutions/interferir-models 1.0.20 → 1.0.22

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.
@@ -232,6 +232,10 @@ const companySchema = new mongoose_1.Schema({
232
232
  },
233
233
  ],
234
234
  },
235
+ competitorAnalysisId: {
236
+ type: String,
237
+ default: null,
238
+ },
235
239
  createdBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
236
240
  updatedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
237
241
  updatedDate: { type: Number },
@@ -277,6 +277,7 @@ export interface ICompany extends BaseSchema {
277
277
  focusAreaCount: Number;
278
278
  diversitySpotlights: string[];
279
279
  investmentPortfolio: InvestmentPortfolio;
280
+ competitorAnalysisId: string;
280
281
  }
281
282
  export interface ICompanyModel extends BaseModel<ICompany> {
282
283
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cool-digital-solutions/interferir-models",
3
- "version": "1.0.20",
3
+ "version": "1.0.22",
4
4
  "main": "./dist/index.js",
5
5
  "files": [
6
6
  "dist/**/*"
@@ -22,7 +22,7 @@
22
22
  "devDependencies": {
23
23
  "@types/node": "^20.11.6",
24
24
  "resolve-tspaths": "^0.8.17",
25
- "rome": "^12.1.3",
26
- "ts-node": "^10.9.2"
25
+ "ts-node": "^10.9.2",
26
+ "typescript": "^5.2.2"
27
27
  }
28
28
  }