@ttahub/common 2.0.11 → 2.0.13

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 +8 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttahub/common",
3
- "version": "2.0.11",
3
+ "version": "2.0.13",
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
@@ -315,4 +315,11 @@ const SUPPORT_TYPES = [
315
315
  'Maintaining',
316
316
  ];
317
317
 
318
- exports.SUPPORT_TYPES = SUPPORT_TYPES;
318
+ exports.SUPPORT_TYPES = SUPPORT_TYPES;
319
+
320
+ const EVENT_AUDIENCE = [
321
+ 'Recipients',
322
+ 'Regional office/TTA',
323
+ ];
324
+
325
+ exports.EVENT_AUDIENCE = EVENT_AUDIENCE;