@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.
@@ -564,6 +564,8 @@ declare const PostModel: mongoose.Model<PostType, {}, {}, {}, mongoose.Document<
564
564
  declare const APP_SETTINGS_ID = "APP_SETTINGS_DOCUMENT_ID";
565
565
  declare const AppSettingModel: mongoose.Model<AppSettingsType, {}, {}, {}, mongoose.Document<unknown, {}, AppSettingsType, {}, {}> & _timardex_cluemart_shared.AppSettingsFormData & {
566
566
  _id: string;
567
+ activeSchoolsStudentCountTotal: number;
568
+ activeSchoolsStudentCountUpdatedAt: Date;
567
569
  createdAt: Date;
568
570
  key: string;
569
571
  updatedAt: Date | null;
@@ -564,6 +564,8 @@ declare const PostModel: mongoose.Model<PostType, {}, {}, {}, mongoose.Document<
564
564
  declare const APP_SETTINGS_ID = "APP_SETTINGS_DOCUMENT_ID";
565
565
  declare const AppSettingModel: mongoose.Model<AppSettingsType, {}, {}, {}, mongoose.Document<unknown, {}, AppSettingsType, {}, {}> & _timardex_cluemart_shared.AppSettingsFormData & {
566
566
  _id: string;
567
+ activeSchoolsStudentCountTotal: number;
568
+ activeSchoolsStudentCountUpdatedAt: Date;
567
569
  createdAt: Date;
568
570
  key: string;
569
571
  updatedAt: Date | null;
@@ -36,7 +36,7 @@ import {
36
36
  resourceRelationsSchema,
37
37
  termsAgreementSchema,
38
38
  userLicenseSchema
39
- } from "../chunk-AY3HRVNJ.mjs";
39
+ } from "../chunk-YJEFAISD.mjs";
40
40
  import "../chunk-3QS3WKRC.mjs";
41
41
  export {
42
42
  APP_SETTINGS_ID,
@@ -12549,6 +12549,16 @@ var MongooseSchema18 = import_mongoose19.default.Schema;
12549
12549
  var APP_SETTINGS_ID = "APP_SETTINGS_DOCUMENT_ID";
12550
12550
  var AppSettingSchema = new MongooseSchema18(
12551
12551
  {
12552
+ activeSchoolsStudentCountTotal: {
12553
+ default: 0,
12554
+ required: true,
12555
+ type: Number
12556
+ },
12557
+ activeSchoolsStudentCountUpdatedAt: {
12558
+ default: Date.now,
12559
+ required: true,
12560
+ type: Date
12561
+ },
12552
12562
  appVersion: { default: "1.0.1", required: true, type: String },
12553
12563
  isOfflineMode: { default: false, required: true, type: Boolean },
12554
12564
  key: {