@timardex/cluemart-server-shared 1.0.160 → 1.0.161

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.
package/dist/index.cjs CHANGED
@@ -12430,6 +12430,16 @@ var MongooseSchema18 = import_mongoose18.default.Schema;
12430
12430
  var APP_SETTINGS_ID = "APP_SETTINGS_DOCUMENT_ID";
12431
12431
  var AppSettingSchema = new MongooseSchema18(
12432
12432
  {
12433
+ activeSchoolsStudentCountTotal: {
12434
+ default: 0,
12435
+ required: true,
12436
+ type: Number
12437
+ },
12438
+ activeSchoolsStudentCountUpdatedAt: {
12439
+ default: Date.now,
12440
+ required: true,
12441
+ type: Date
12442
+ },
12433
12443
  appVersion: { default: "1.0.1", required: true, type: String },
12434
12444
  isOfflineMode: { default: false, required: true, type: Boolean },
12435
12445
  key: {