@cool-digital-solutions/interferir-models 1.1.50 → 1.1.52
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.
|
@@ -233,6 +233,7 @@ const companySchema = new mongoose_1.Schema({
|
|
|
233
233
|
],
|
|
234
234
|
},
|
|
235
235
|
mergedCompanySlugs: [{ type: String, default: '' }],
|
|
236
|
+
aiContext: { type: String, default: '' },
|
|
236
237
|
createdBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
|
|
237
238
|
updatedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
|
|
238
239
|
updatedDate: { type: Number },
|
|
@@ -48,6 +48,7 @@ const userSchema = new mongoose_1.Schema({
|
|
|
48
48
|
lastCheckCompetitorGridDate: { type: Number, default: 0 },
|
|
49
49
|
isSendWelcomeEmailForStartup: { type: Boolean, default: false },
|
|
50
50
|
company: { type: mongoose_1.Schema.Types.ObjectId, ref: 'Company', default: null, index: true },
|
|
51
|
+
aiContext: { type: String, default: '' },
|
|
51
52
|
createdBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
|
|
52
53
|
updatedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
|
|
53
54
|
updatedDate: { type: Number, index: -1 },
|
|
@@ -279,6 +279,7 @@ export interface ICompany extends BaseSchema {
|
|
|
279
279
|
diversitySpotlights: string[];
|
|
280
280
|
investmentPortfolio: InvestmentPortfolio;
|
|
281
281
|
mergedCompanySlugs: string[];
|
|
282
|
+
aiContext: string;
|
|
282
283
|
}
|
|
283
284
|
export interface ICompanyModel extends BaseModel<ICompany> {
|
|
284
285
|
}
|