@campxdev/shared 1.11.50 → 1.11.51

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@campxdev/shared",
3
- "version": "1.11.50",
3
+ "version": "1.11.51",
4
4
  "main": "./exports.ts",
5
5
  "scripts": {
6
6
  "start": "react-scripts start",
@@ -1458,6 +1458,8 @@ export enum Permission {
1458
1458
  CAN_ADMIN_DESIGNATIONS_EDIT = 'can_admin_designations_edit',
1459
1459
  CAN_ADMIN_DESIGNATIONS_VIEW = 'can_admin_designations_view',
1460
1460
  CAN_ADMIN_DESIGNATIONS_DELETE = 'can_admin_designations_delete',
1461
+ CAN_ADMIN_DATA_IMPORTS_VIEW = 'can_admin_data_imports_view',
1462
+ CAN_ADMIN_DATA_IMPORTS_ADD = 'can_admin_data_imports_add',
1461
1463
  }
1462
1464
 
1463
1465
  export interface IPermissions {
@@ -2098,6 +2100,8 @@ export interface IPermissions {
2098
2100
  can_admin_designations_edit: boolean
2099
2101
  can_admin_designations_view: boolean
2100
2102
  can_admin_designations_delete: boolean
2103
+ can_admin_data_imports_view: boolean
2104
+ can_admin_data_imports_add: boolean
2101
2105
  }
2102
2106
 
2103
2107
  interface IPermissionsStore {