@kipicore/dbcore 1.1.381 → 1.1.383

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.
@@ -152,7 +152,8 @@ export declare enum FEE_TYPE_FREQUENCY {
152
152
  export declare enum PAYMENT_TYPE {
153
153
  CASH = "CASH",
154
154
  CHEQUE = "CHEQUE",
155
- UPI = "UPI"
155
+ UPI = "UPI",
156
+ PDC_CHEQUE = "PDC_CHEQUE"
156
157
  }
157
158
  export declare enum STUDENT_FEE_COLLECTION_STATUS {
158
159
  PENDING = "PENDING",
@@ -191,6 +191,7 @@ var PAYMENT_TYPE;
191
191
  PAYMENT_TYPE["CASH"] = "CASH";
192
192
  PAYMENT_TYPE["CHEQUE"] = "CHEQUE";
193
193
  PAYMENT_TYPE["UPI"] = "UPI";
194
+ PAYMENT_TYPE["PDC_CHEQUE"] = "PDC_CHEQUE";
194
195
  })(PAYMENT_TYPE || (exports.PAYMENT_TYPE = PAYMENT_TYPE = {}));
195
196
  var STUDENT_FEE_COLLECTION_STATUS;
196
197
  (function (STUDENT_FEE_COLLECTION_STATUS) {
@@ -22,6 +22,22 @@ const PdcChequesModule = {
22
22
  // },
23
23
  ],
24
24
  },
25
+ {
26
+ name: 'Pdc Cheque Configuration',
27
+ code: 'PDCCHEQUE.CONFIGURATION',
28
+ appType: [appTypeEnum.SCHOOL_APP],
29
+ actions: [
30
+ { name: 'Add', code: 'PDCCHEQUE.CONFIGURATION.ADD', appType: [appTypeEnum.SCHOOL_APP] },
31
+ { name: 'Update', code: 'PDCCHEQUE.CONFIGURATION.UPDATE', appType: [appTypeEnum.SCHOOL_APP] },
32
+ { name: 'View', code: 'PDCCHEQUE.CONFIGURATION.VIEW', appType: [appTypeEnum.SCHOOL_APP] },
33
+ { name: 'Delete', code: 'PDCCHEQUE.CONFIGURATION.DELETE', appType: [appTypeEnum.SCHOOL_APP] },
34
+ // {
35
+ // name: 'Active/InActive',
36
+ // code: 'PDCCHEQUE.PDCCHEQUE.ACTION',
37
+ // appType: [ appTypeEnum.SCHOOL_APP],
38
+ // },
39
+ ],
40
+ },
25
41
  ],
26
42
  };
27
43
  module.exports = PdcChequesModule;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kipicore/dbcore",
3
- "version": "1.1.381",
3
+ "version": "1.1.383",
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",