@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
  }
@@ -70,6 +70,7 @@ export interface IUser extends BaseSchema {
70
70
  lastCheckCompetitorGridDate: number;
71
71
  isShowingNotification: boolean;
72
72
  isSendWelcomeEmailForStartup: boolean;
73
+ aiContext: string;
73
74
  }
74
75
  export interface IUserModel extends BaseModel<IUser> {
75
76
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cool-digital-solutions/interferir-models",
3
- "version": "1.1.50",
3
+ "version": "1.1.52",
4
4
  "main": "./dist/index.js",
5
5
  "files": [
6
6
  "dist/**/*"