@cool-digital-solutions/interferir-models 1.4.22 → 1.4.23
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.
|
@@ -234,6 +234,7 @@ const companySchema = new mongoose_1.Schema({
|
|
|
234
234
|
creationSource: [{ type: Object }],
|
|
235
235
|
customerPerspective: { type: String, default: '' },
|
|
236
236
|
isWeeklyNewsletterActive: { type: Boolean, default: false },
|
|
237
|
+
newsFeedAnalysis: { type: String, default: '' },
|
|
237
238
|
questionPreferences: { type: String, default: '' },
|
|
238
239
|
createdBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
|
|
239
240
|
updatedBy: { type: mongoose_1.Schema.Types.ObjectId, ref: 'User', default: null },
|
|
@@ -284,6 +284,7 @@ export interface ICompany extends BaseSchema {
|
|
|
284
284
|
customerPerspective: string;
|
|
285
285
|
isWeeklyNewsletterActive: boolean;
|
|
286
286
|
questionPreferences: string;
|
|
287
|
+
newsFeedAnalysis: string;
|
|
287
288
|
}
|
|
288
289
|
export interface ICompanyModel extends BaseModel<ICompany> {
|
|
289
290
|
}
|