@kipicore/dbcore 1.1.382 → 1.1.384
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.
|
@@ -17,5 +17,5 @@ exports.USER_BASIC_DETAIL = ['id', 'firstName', 'lastName', 'emailVerification',
|
|
|
17
17
|
exports.SUBJECT_FEE_BASIC_DETAIL = ['id', 'instituteId', 'subjectId', 'fee'];
|
|
18
18
|
exports.FEE_COLLECTION_BASIC_DETAIL = ['id', 'feeAmount', 'discount', 'status', 'paidFee'];
|
|
19
19
|
exports.INSTITUTE_BASIC_DETAIL = ['id', 'name', 'status', 'email', 'addressLine1', 'addressLine2', 'pinCode', 'coverImage', 'profileImage'];
|
|
20
|
-
exports.FILE_BASIC_DETAIL = ['id', 'originalFileName', 'storageFileName', 'storagePath'];
|
|
20
|
+
exports.FILE_BASIC_DETAIL = ['id', 'originalFileName', 'storageFileName', 'storagePath', 'filePath', 'expiredAt'];
|
|
21
21
|
exports.USER_PAYOUT_BASIC_DETAIL = ['id', 'userId', 'userType', 'instituteId', 'totalPayableAmount', 'totalPaidAmount', 'type'];
|
|
@@ -250,6 +250,22 @@ const FeeAndDiscountModule = {
|
|
|
250
250
|
// },
|
|
251
251
|
],
|
|
252
252
|
},
|
|
253
|
+
{
|
|
254
|
+
name: 'Pdc Cheque Configuration',
|
|
255
|
+
code: 'FEE.PDCCONFIGURATION',
|
|
256
|
+
appType: [appTypeEnum.SCHOOL_APP],
|
|
257
|
+
actions: [
|
|
258
|
+
{ name: 'Add', code: 'FEE.PDCCONFIGURATION.ADD', appType: [appTypeEnum.SCHOOL_APP] },
|
|
259
|
+
{ name: 'Update', code: 'FEE.PDCCONFIGURATION.UPDATE', appType: [appTypeEnum.SCHOOL_APP] },
|
|
260
|
+
{ name: 'View', code: 'FEE.PDCCONFIGURATION.VIEW', appType: [appTypeEnum.SCHOOL_APP] },
|
|
261
|
+
{ name: 'Delete', code: 'FEE.PDCCONFIGURATION.DELETE', appType: [appTypeEnum.SCHOOL_APP] },
|
|
262
|
+
// {
|
|
263
|
+
// name: 'Active/InActive',
|
|
264
|
+
// code: 'FEE.PDCCONFIGURATION.ACTION',
|
|
265
|
+
// appType: [ appTypeEnum.SCHOOL_APP],
|
|
266
|
+
// },
|
|
267
|
+
],
|
|
268
|
+
},
|
|
253
269
|
// {
|
|
254
270
|
// name: 'Manage Fee',
|
|
255
271
|
// code: 'FEE.MANAGEFEE',
|
package/package.json
CHANGED