@kipicore/dbcore 1.1.571 → 1.1.572

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.
@@ -39,4 +39,5 @@ export interface IExamModelAttributes extends IDefaultAttributes, Document {
39
39
  plannerSyncStatus?: PLANNER_SYNC_STATUS;
40
40
  publishedDate?: Date;
41
41
  academicCalendarId?: string;
42
+ isTomorrowNotificationSent?: boolean;
42
43
  }
@@ -203,6 +203,11 @@ const examModelSchema = new mongoose_1.Schema({
203
203
  type: String,
204
204
  required: false,
205
205
  },
206
+ isTomorrowNotificationSent: {
207
+ type: Boolean,
208
+ required: false,
209
+ default: false,
210
+ },
206
211
  }, {
207
212
  timestamps: true,
208
213
  versionKey: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kipicore/dbcore",
3
- "version": "1.1.571",
3
+ "version": "1.1.572",
4
4
  "description": "Reusable DB core package with Postgres, MongoDB, models, services, interfaces, and types",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",