@kipicore/dbcore 1.1.301 → 1.1.302

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.
@@ -64,6 +64,7 @@ export interface ILastSchoolSchema {
64
64
  result?: number;
65
65
  haveLeavingCertificate?: boolean;
66
66
  entities: string[];
67
+ leavingCertificateIssueDate: Date;
67
68
  isSchool?: boolean;
68
69
  }
69
70
  export interface IAddressSchema {
@@ -268,6 +268,10 @@ const LastSchoolSchema = new mongoose_1.Schema({
268
268
  type: Boolean,
269
269
  required: false,
270
270
  },
271
+ leavingCertificateIssueDate: {
272
+ type: Date,
273
+ required: false,
274
+ }
271
275
  }, { _id: false });
272
276
  const AddressSchema = new mongoose_1.Schema({
273
277
  pinCode: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kipicore/dbcore",
3
- "version": "1.1.301",
3
+ "version": "1.1.302",
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",