@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/{chunk-AY3HRVNJ.mjs → chunk-YJEFAISD.mjs} +11 -1
- package/dist/{chunk-AY3HRVNJ.mjs.map → chunk-YJEFAISD.mjs.map} +1 -1
- package/dist/index.cjs +10 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.mjs +10 -0
- package/dist/index.mjs.map +1 -1
- package/dist/mongoose/index.cjs +10 -0
- package/dist/mongoose/index.cjs.map +1 -1
- package/dist/mongoose/index.d.mts +2 -0
- package/dist/mongoose/index.d.ts +2 -0
- package/dist/mongoose/index.mjs +1 -1
- package/dist/service/index.cjs +10 -0
- package/dist/service/index.cjs.map +1 -1
- package/dist/service/index.mjs +1 -1
- package/package.json +2 -2
|
@@ -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;
|
package/dist/mongoose/index.d.ts
CHANGED
|
@@ -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;
|
package/dist/mongoose/index.mjs
CHANGED
package/dist/service/index.cjs
CHANGED
|
@@ -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: {
|