@campxdev/shared 1.11.41 → 1.11.43
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.
package/package.json
CHANGED
|
@@ -357,6 +357,13 @@ export enum EnrollPermissions {
|
|
|
357
357
|
CAN_ASSIGN_COUNSELLOR_LEADS = 'can_leads_assign_counsellor',
|
|
358
358
|
CAN_LEADS_CONVERT_TO_ADMISSION = 'can_leads_convert_to_admission',
|
|
359
359
|
|
|
360
|
+
// Clusters
|
|
361
|
+
CAN_CLUSTERS_VIEW = 'can_clusters_view',
|
|
362
|
+
CAN_CLUSTERS_EDIT = 'can_clusters_edit',
|
|
363
|
+
CAN_CLUSTERS_ADD = 'can_clusters_add',
|
|
364
|
+
CAN_CLUSTERS_DELETE = 'can_clusters_delete',
|
|
365
|
+
CAN_CLUSTERS_DASHBOARD_VIEW = 'can_clusters_dashboard_view',
|
|
366
|
+
|
|
360
367
|
// Counsellor
|
|
361
368
|
CAN_COUNSELLOR_VIEW = 'can_counsellor_view',
|
|
362
369
|
CAN_COUNSELLOR_ADD = 'can_counsellor_add',
|
|
@@ -646,7 +653,8 @@ export enum Permission {
|
|
|
646
653
|
CAN_DETAINED_STUDENT_VIEW = 'can_detained_student_view',
|
|
647
654
|
CAN_DISCONTINUED_STUDENT_VIEW = 'can_discontinued_student_view',
|
|
648
655
|
CAN_CONCESSION_REPORT_VIEW = 'can_concession_report_view',
|
|
649
|
-
|
|
656
|
+
CAN_FEE_TYPE_SUMMARY_REPORT_VIEW = 'can_fee_type_summary_report_view',
|
|
657
|
+
CAN_PROGRAM_WISE_FEE_TYPE_REPORT_VIEW = 'can_program_wise_fee_type_report_view',
|
|
650
658
|
CAN_EXAMINATION_REPORT_VIEW = 'can_examination_report_view',
|
|
651
659
|
CAN_EXAMINATION_NOT_PAID_REPORT_VIEW = 'can_examination_not_paid_report_view',
|
|
652
660
|
CAN_EXAMINATION_BLOCKED_STUDENTS_VIEW = 'can_examination_blocked_students_view',
|
|
@@ -1647,6 +1655,7 @@ export interface IPermissions {
|
|
|
1647
1655
|
can_discontinued_student_view: boolean
|
|
1648
1656
|
can_concession_report_view: boolean
|
|
1649
1657
|
can_fee_type_summary_report_view: boolean
|
|
1658
|
+
can_program_wise_fee_type_report_view: boolean
|
|
1650
1659
|
can_examination_report_view: boolean
|
|
1651
1660
|
can_examination_not_paid_report_view: boolean
|
|
1652
1661
|
can_examination_blocked_students_view: boolean
|
|
@@ -1719,6 +1728,11 @@ export interface IPermissions {
|
|
|
1719
1728
|
can_leads_assign_counsellor: boolean
|
|
1720
1729
|
can_leads_import: boolean
|
|
1721
1730
|
can_leads_convert_to_admission: boolean
|
|
1731
|
+
can_clusters_view: boolean
|
|
1732
|
+
can_clusters_add: boolean
|
|
1733
|
+
can_clusters_edit: boolean
|
|
1734
|
+
can_clusters_delete: boolean
|
|
1735
|
+
can_clusters_dashboard_view: boolean
|
|
1722
1736
|
can_notification_view: boolean
|
|
1723
1737
|
can_notification_add: boolean
|
|
1724
1738
|
can_notification_edit: boolean
|