@kipicore/dbcore 1.1.272 → 1.1.273

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.
@@ -56,4 +56,5 @@ export interface IUserInstituteMetaAttributes extends IDefaultAttributes, Docume
56
56
  studentFeeService?: IStudentFeeService[];
57
57
  studentFeeType?: FEE_COLLECTION_TYPE;
58
58
  isSchoolMeta?: boolean;
59
+ isFeeCarryForward: boolean;
59
60
  }
@@ -227,6 +227,10 @@ const userInstituteMetaSchema = new mongoose_1.Schema({
227
227
  type: Boolean,
228
228
  default: true,
229
229
  },
230
+ isFeeCarryForward: {
231
+ type: Boolean,
232
+ default: false,
233
+ },
230
234
  }, {
231
235
  timestamps: true,
232
236
  versionKey: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kipicore/dbcore",
3
- "version": "1.1.272",
3
+ "version": "1.1.273",
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",