@kipicore/dbcore 1.1.212 → 1.1.213

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.
@@ -43,6 +43,7 @@ export interface IInquiryModelAttributes extends IDefaultAttributes, Document {
43
43
  instituteId: string;
44
44
  basicInformation: IBasicInformation;
45
45
  academicInformation: IAcademicInformation;
46
+ academicCalendarId: string;
46
47
  guardianInformation: IGuardianInformation;
47
48
  address?: IAddressSchema;
48
49
  referredBy: INQUIRY_REFERRED_BY;
@@ -124,6 +124,7 @@ const InquirySchema = new mongoose_1.Schema({
124
124
  guardianInformation: { type: GuardianInformationSchema, required: false, default: {} },
125
125
  lastSchoolInformation: { type: LastSchoolSchema, required: false, default: {} },
126
126
  address: { type: AddressSchema, required: false, default: {} },
127
+ academicCalendarId: { type: String, required: false },
127
128
  referredBy: {
128
129
  type: String,
129
130
  enum: Object.values(app_1.INQUIRY_REFERRED_BY),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kipicore/dbcore",
3
- "version": "1.1.212",
3
+ "version": "1.1.213",
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",