@kipicore/dbcore 1.1.328 → 1.1.329

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.
@@ -124,4 +124,5 @@ export interface IUserDetailsAttributes extends IDefaultAttributes, Document {
124
124
  domicileState?: string;
125
125
  studentPen?: string;
126
126
  apaarId?: string;
127
+ currentInstituteId?: string;
127
128
  }
@@ -271,7 +271,7 @@ const LastSchoolSchema = new mongoose_1.Schema({
271
271
  leavingCertificateIssueDate: {
272
272
  type: Date,
273
273
  required: false,
274
- }
274
+ },
275
275
  }, { _id: false });
276
276
  const AddressSchema = new mongoose_1.Schema({
277
277
  pinCode: {
@@ -473,6 +473,10 @@ const userDetailsSchema = new mongoose_1.Schema({
473
473
  type: String,
474
474
  require: false,
475
475
  },
476
+ currentInstituteId: {
477
+ type: String,
478
+ required: false,
479
+ },
476
480
  teacherUidNo: {
477
481
  type: String,
478
482
  require: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kipicore/dbcore",
3
- "version": "1.1.328",
3
+ "version": "1.1.329",
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",