@kipicore/dbcore 1.1.442 → 1.1.444

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.
@@ -16,4 +16,5 @@ export interface ICommunityGroupModelAttributes extends IDefaultAttributes, Docu
16
16
  bannerId?: string;
17
17
  imgDeletedDays: number;
18
18
  joinMemberAuto: boolean;
19
+ maxFileSize: number;
19
20
  }
@@ -60,6 +60,7 @@ export interface IUserInstituteMetaAttributes extends IDefaultAttributes, Docume
60
60
  isSchoolMeta?: boolean;
61
61
  isFeeCarryForward: boolean;
62
62
  isFeeCollectionCreated: boolean;
63
+ designationId?: string;
63
64
  }
64
65
  export interface IUserWiseData {
65
66
  userId: string;
@@ -60,6 +60,9 @@ const communityGroupSchema = new mongoose_1.Schema({
60
60
  imgDeletedDays: {
61
61
  type: Number,
62
62
  },
63
+ maxFileSize: {
64
+ type: Number,
65
+ },
63
66
  joinMemberAuto: {
64
67
  type: Boolean,
65
68
  },
@@ -94,6 +94,9 @@ const userInstituteMetaSchema = new mongoose_1.Schema({
94
94
  type: String,
95
95
  required: true,
96
96
  },
97
+ designationId: {
98
+ type: String,
99
+ },
97
100
  academicCalendarId: {
98
101
  type: String,
99
102
  required: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kipicore/dbcore",
3
- "version": "1.1.442",
3
+ "version": "1.1.444",
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",