@ttahub/common 2.0.5 → 2.0.6

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/README.md CHANGED
@@ -21,6 +21,9 @@ Note: On Windows you will need to use `yarn add @ttahub/common@1.x.0` to update
21
21
 
22
22
  ## Versions
23
23
 
24
+ ## 1.4.0
25
+ Add SUPPORT_TYPE
26
+
24
27
  ### 1.1.9/1.2.0
25
28
  (Sorry for the multiple versions) Update the name of the const COLLABORATOR_TRAINING_REPORTS to POC_TRAINING_REPORTS
26
29
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttahub/common",
3
- "version": "2.0.5",
3
+ "version": "2.0.6",
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
@@ -301,3 +301,12 @@ const RECIPIENT_PARTICIPANTS = [
301
301
  };
302
302
 
303
303
  exports.GOAL_STATUS = GOAL_STATUS;
304
+
305
+ const SUPPORT_TYPES = [
306
+ 'Introducing',
307
+ 'Planning',
308
+ 'Implementing',
309
+ 'Maintaining',
310
+ ];
311
+
312
+ exports.SUPPORT_TYPES = SUPPORT_TYPES;