@kipicore/dbcore 1.1.443 → 1.1.445

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.
@@ -7,5 +7,6 @@ export interface ICommunityMessageAttributes extends IDefaultAttributes, Documen
7
7
  text: string;
8
8
  sendTime: Date;
9
9
  mediaUrl?: string;
10
+ parentId?: string;
10
11
  fileId?: string;
11
12
  }
@@ -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;
@@ -37,6 +37,7 @@ const mongoose_1 = __importStar(require("mongoose"));
37
37
  const communityMessageSchema = new mongoose_1.Schema({
38
38
  groupId: { type: String },
39
39
  senderId: { type: String },
40
+ parentId: { type: String },
40
41
  text: { type: String },
41
42
  sendTime: { type: Date },
42
43
  mediaUrl: { type: String },
@@ -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.443",
3
+ "version": "1.1.445",
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",