@kipicore/dbcore 1.1.335 → 1.1.336

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.
@@ -109,6 +109,7 @@ export interface ISchoolInformation {
109
109
  hscData?: IHscSscSchema;
110
110
  location?: string;
111
111
  authorizedDeoOfficerId?: string;
112
+ affiliationNo?: string;
112
113
  }
113
114
  export interface IUserSchoolMetaModelAttributes extends IDefaultAttributes, Document {
114
115
  id: string;
@@ -139,6 +139,10 @@ const schoolInformationSchema = new mongoose_1.Schema({
139
139
  type: String,
140
140
  required: false,
141
141
  },
142
+ affiliationNo: {
143
+ type: String,
144
+ required: false,
145
+ }
142
146
  }, { _id: false });
143
147
  const trustInformationSchema = new mongoose_1.Schema({
144
148
  // id: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kipicore/dbcore",
3
- "version": "1.1.335",
3
+ "version": "1.1.336",
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",