@ttahub/common 1.7.0 → 1.8.0

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/index.js +4 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttahub/common",
3
- "version": "1.7.0",
3
+ "version": "1.8.0",
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
@@ -138,8 +138,8 @@ exports.EVENT_REPORT_STATUSES = EVENT_REPORT_STATUSES;
138
138
 
139
139
  const TARGET_POPULATIONS = [
140
140
  'Infants and Toddlers (ages birth to 3)',
141
- 'Preschool (ages 3-5)',
142
- 'Pregnant Women',
141
+ 'Preschool Children (ages 3-5)',
142
+ 'Pregnant Women / Pregnant Persons',
143
143
  'Affected by Child Welfare Involvement',
144
144
  'Affected by Disaster',
145
145
  'Affected by Substance Use',
@@ -152,9 +152,10 @@ const TARGET_POPULATIONS = [
152
152
  exports.TARGET_POPULATIONS = TARGET_POPULATIONS;
153
153
 
154
154
  const EVENT_TARGET_POPULATIONS = [
155
+ 'Children in Migrant and Seasonal Families',
155
156
  'Children/Families affected by systemic discrimination/bias/exclusion',
156
157
  'Children/Families affected by traumatic events',
157
- 'Parents/Families impacted by health disparities'
158
+ 'Parents/Families impacted by health disparities',
158
159
  ];
159
160
 
160
161
  exports.EVENT_TARGET_POPULATIONS = EVENT_TARGET_POPULATIONS;