@ttahub/common 1.4.0 → 1.4.1

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": "1.4.0",
3
+ "version": "1.4.1",
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/index.js CHANGED
@@ -256,4 +256,12 @@ const ALERT_SIZES = {
256
256
  SLIM: 'slim',
257
257
  LARGE: 'large'
258
258
  };
259
- exports.ALERT_SIZES = ALERT_SIZES;
259
+ exports.ALERT_SIZES = ALERT_SIZES;
260
+
261
+ const SUPPORT_TYPES = [
262
+ 'Introducing',
263
+ 'Planning',
264
+ 'Implementing',
265
+ 'Maintaining',
266
+ ];
267
+ exports.SUPPORT_TYPES = SUPPORT_TYPES;