@kipicore/dbcore 1.1.328 → 1.1.330

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.
@@ -664,6 +664,7 @@ export declare enum EMAIL_TEMPLATES {
664
664
  STUDENT_VERIFICATION = "studentVerification",
665
665
  PARENTS_CREDENTIALS_TEMPLATE = "parentCredentialsTemplate",
666
666
  STUDENT_CREDENTIALS_TEMPLATE = "studentCredentialsTemplate",
667
+ ADMIN_CREDENTIALS_TEMPLATE = "adminCredentialsTemplate",
667
668
  COMMON_TEMPLATE = "commonTemplate",
668
669
  CONTACT_FEEDBACK_TEMPLATE = "contactFeedbackTemplate",
669
670
  ADMIN_STAFF_VERIFICATION = "adminStaffVerification"
@@ -809,6 +809,7 @@ var EMAIL_TEMPLATES;
809
809
  EMAIL_TEMPLATES["STUDENT_VERIFICATION"] = "studentVerification";
810
810
  EMAIL_TEMPLATES["PARENTS_CREDENTIALS_TEMPLATE"] = "parentCredentialsTemplate";
811
811
  EMAIL_TEMPLATES["STUDENT_CREDENTIALS_TEMPLATE"] = "studentCredentialsTemplate";
812
+ EMAIL_TEMPLATES["ADMIN_CREDENTIALS_TEMPLATE"] = "adminCredentialsTemplate";
812
813
  EMAIL_TEMPLATES["COMMON_TEMPLATE"] = "commonTemplate";
813
814
  EMAIL_TEMPLATES["CONTACT_FEEDBACK_TEMPLATE"] = "contactFeedbackTemplate";
814
815
  EMAIL_TEMPLATES["ADMIN_STAFF_VERIFICATION"] = "adminStaffVerification";
@@ -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.330",
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",