@timardex/cluemart-server-shared 1.0.160 → 1.0.162

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.
@@ -12420,6 +12420,16 @@ var MongooseSchema18 = import_mongoose18.default.Schema;
12420
12420
  var APP_SETTINGS_ID = "APP_SETTINGS_DOCUMENT_ID";
12421
12421
  var AppSettingSchema = new MongooseSchema18(
12422
12422
  {
12423
+ activeSchoolsStudentCountTotal: {
12424
+ default: 0,
12425
+ required: true,
12426
+ type: Number
12427
+ },
12428
+ activeSchoolsStudentCountUpdatedAt: {
12429
+ default: Date.now,
12430
+ required: true,
12431
+ type: Date
12432
+ },
12423
12433
  appVersion: { default: "1.0.1", required: true, type: String },
12424
12434
  isOfflineMode: { default: false, required: true, type: Boolean },
12425
12435
  key: {