@cool-digital-solutions/interferir-models 1.0.20 → 1.0.21
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
|
}
|