@campxdev/shared 2.0.30 → 2.0.32
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
|
@@ -1205,6 +1205,11 @@ export enum Permission {
|
|
|
1205
1205
|
CAN_OMRS_GENERATE = 'can_omrs_generate',
|
|
1206
1206
|
CAN_OMRS_DOWNLOAD = 'can_omrs_download',
|
|
1207
1207
|
|
|
1208
|
+
// External Exam Booklet Assignment
|
|
1209
|
+
CAN_EXTERNAL_EXAM_BOOKLET_ASSIGNMENT_VIEW = 'can_external_exam_booklet_assignment_view',
|
|
1210
|
+
CAN_EXTERNAL_EXAM_BOOKLET_ASSIGN = 'can_external_exam_booklet_assign',
|
|
1211
|
+
CAN_EXTERNAL_EXAM_BOOKLET_UN_ASSIGN = 'can_external_exam_booklet_un_assign',
|
|
1212
|
+
|
|
1208
1213
|
// Paper Configuration
|
|
1209
1214
|
CAN_PAPER_CONFIGURATION_VIEW = 'can_paper_configuration_view',
|
|
1210
1215
|
CAN_PAPER_CONFIGURATION_ADD = 'can_paper_configuration_add',
|
|
@@ -1300,7 +1305,7 @@ export enum Permission {
|
|
|
1300
1305
|
CAN_EMPTY_BOOKLET_GROUP_EDIT = 'can_empty_booklet_group_edit',
|
|
1301
1306
|
CAN_EMPTY_BOOKLET_GROUP_DELETE = 'can_empty_booklet_group_delete',
|
|
1302
1307
|
|
|
1303
|
-
//
|
|
1308
|
+
// Internal Exam Booklet Assignment
|
|
1304
1309
|
CAN_INTERNAL_EXAM_BOOKLET_ASSIGNMENT_VIEW = 'can_internal_exam_booklet_assignment_view',
|
|
1305
1310
|
CAN_INTERNAL_EXAM_BOOKLET_ASSIGN = 'can_internal_exam_booklet_assign',
|
|
1306
1311
|
CAN_INTERNAL_EXAM_BOOKLET_UN_ASSIGN = 'can_internal_exam_booklet_un_assign',
|
|
@@ -1322,6 +1327,7 @@ export enum Permission {
|
|
|
1322
1327
|
CAN_EVALUATORS_ADD = 'can_evaluators_add',
|
|
1323
1328
|
CAN_EVALUATORS_EDIT = 'can_evaluators_edit',
|
|
1324
1329
|
CAN_EVALUATORS_DELETE = 'can_evaluators_delete',
|
|
1330
|
+
CAN_EVALUATORS_DOWNLOAD = 'can_evaluators_download',
|
|
1325
1331
|
|
|
1326
1332
|
//Grade Templates
|
|
1327
1333
|
CAN_GRADE_TEMPLATES_VIEW = 'can_grade_templates_view',
|
|
@@ -1967,6 +1973,7 @@ export interface IPermissions {
|
|
|
1967
1973
|
can_evaluators_add: boolean
|
|
1968
1974
|
can_evaluators_edit: boolean
|
|
1969
1975
|
can_evaluators_delete: boolean
|
|
1976
|
+
can_evaluators_download: boolean
|
|
1970
1977
|
can_grade_templates_view: boolean
|
|
1971
1978
|
can_grade_templates_add: boolean
|
|
1972
1979
|
can_grade_templates_edit: boolean
|