@ttahub/common 2.0.15 → 2.0.16

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/constants.js +3 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttahub/common",
3
- "version": "2.0.15",
3
+ "version": "2.0.16",
4
4
  "description": "The purpose of this package is to reduce code duplication between the frontend and backend projects.",
5
5
  "main": "src/index.js",
6
6
  "author": "",
package/src/constants.js CHANGED
@@ -183,6 +183,9 @@ const USER_ROLES = [
183
183
  'Grantee Specialist',
184
184
  'Health Specialist',
185
185
  'System Specialist',
186
+ 'Interim Management Team',
187
+ 'Integrated Service Team',
188
+ 'Grants Management Specialist',
186
189
  ];
187
190
  exports.USER_ROLES = USER_ROLES;
188
191
 
@@ -323,10 +326,3 @@ const EVENT_AUDIENCE = [
323
326
  ];
324
327
 
325
328
  exports.EVENT_AUDIENCE = EVENT_AUDIENCE;
326
-
327
- const GROUP_SHARED_WITH = {
328
- EVERYONE: 'Everyone',
329
- INDIVIDUALS: 'Individuals',
330
- };
331
-
332
- exports.GROUP_SHARED_WITH = GROUP_SHARED_WITH;