@ttahub/common 2.2.10 → 2.2.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.
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.11
25
+ Remove duplicate goal close reason.
26
+
24
27
  # 2.2.10
25
28
  Change the values for "why was the activity conducted?".
26
29
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttahub/common",
3
- "version": "2.2.10",
3
+ "version": "2.2.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
@@ -204,7 +204,6 @@ const CLOSE_SUSPEND_REASONS = [
204
204
  exports.CLOSE_SUSPEND_REASONS = CLOSE_SUSPEND_REASONS;
205
205
 
206
206
  const GOAL_CLOSE_REASONS = [
207
- 'Duplicate goal',
208
207
  'Recipient request',
209
208
  'Regional Office request',
210
209
  'TTA complete',
@@ -425,3 +424,30 @@ const TOTAL_HOURS_AND_RECIPIENT_GRAPH_TRACE_IDS = {
425
424
  BOTH: 'both',
426
425
  };
427
426
  exports.TOTAL_HOURS_AND_RECIPIENT_GRAPH_TRACE_IDS = TOTAL_HOURS_AND_RECIPIENT_GRAPH_TRACE_IDS;
427
+
428
+
429
+ const COLLAB_REPORT_PARTICIPANTS = [
430
+ "Child Care and Development Fund",
431
+ "Child care licensing",
432
+ "Child Care Training and Technical Assistance Network",
433
+ "DOE/State PreK",
434
+ "Head Start Collaboration Office",
435
+ "Head Start Recipients",
436
+ "Health department/WIC",
437
+ "Office of Child Care",
438
+ "Quality Rating and Improvement System",
439
+ "State and territory adminstrators",
440
+ "Regional HSA",
441
+ "Regional Office staff",
442
+ "State HSA",
443
+ "State environmental health and safety systems",
444
+ "State family engagement systems",
445
+ "State health and welness systems",
446
+ "State homelessness agency/McKinney Vento liason",
447
+ "State Professional development system",
448
+ "TTA staff",
449
+ "Other",
450
+ ];
451
+
452
+ exports.COLLAB_REPORT_PARTICIPANTS = COLLAB_REPORT_PARTICIPANTS;
453
+