@ttahub/common 2.2.3 → 2.2.4

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
+ # 2.2.3
25
+ Target population and reason changes
26
+
24
27
  ## 2.1.6
25
28
 
26
29
  Remove constants related to ElasticSearch.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttahub/common",
3
- "version": "2.2.3",
3
+ "version": "2.2.4",
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
@@ -105,6 +105,12 @@ const REASONS = [
105
105
  ];
106
106
  exports.REASONS = REASONS;
107
107
 
108
+ const DEPRECATED_REASONS = [
109
+ 'COVID-19 response'
110
+ ];
111
+
112
+ exports.DEPRECATED_REASONS = DEPRECATED_REASONS;
113
+
108
114
  const REPORT_STATUSES = {
109
115
  DRAFT: 'draft',
110
116
  DELETED: 'deleted',