@ttahub/common 2.2.7 → 2.2.9
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 +6 -0
- package/package.json +1 -1
- package/src/constants.js +10 -3
package/README.md
CHANGED
|
@@ -21,6 +21,12 @@ 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.9
|
|
25
|
+
Added activity report "why was the activity conducted?" values.
|
|
26
|
+
|
|
27
|
+
# 2.2.7
|
|
28
|
+
Additional variations of disallowed ECLKC and HeadStart URLS.
|
|
29
|
+
|
|
24
30
|
# 2.2.3
|
|
25
31
|
Target population and reason changes
|
|
26
32
|
|
package/package.json
CHANGED
package/src/constants.js
CHANGED
|
@@ -229,6 +229,15 @@ const GOAL_SOURCES = [
|
|
|
229
229
|
|
|
230
230
|
exports.GOAL_SOURCES = GOAL_SOURCES;
|
|
231
231
|
|
|
232
|
+
const ACTIVITY_REASONS = [
|
|
233
|
+
'Federal monitoring issues, including CLASS and RANs',
|
|
234
|
+
'Recipient requested',
|
|
235
|
+
'Regional Office requested',
|
|
236
|
+
'Training event follow-up',
|
|
237
|
+
];
|
|
238
|
+
|
|
239
|
+
exports.ACTIVITY_REASONS = ACTIVITY_REASONS;
|
|
240
|
+
|
|
232
241
|
const APPROVER_STATUSES = {
|
|
233
242
|
APPROVED: 'approved',
|
|
234
243
|
NEEDS_ACTION: 'needs_action',
|
|
@@ -280,9 +289,7 @@ const COMMUNICATION_METHODS = [
|
|
|
280
289
|
exports.COMMUNICATION_METHODS = COMMUNICATION_METHODS;
|
|
281
290
|
|
|
282
291
|
const COMMUNICATION_PURPOSES = [
|
|
283
|
-
'
|
|
284
|
-
'FEI',
|
|
285
|
-
'Monitoring',
|
|
292
|
+
'General Check-In',
|
|
286
293
|
'New TTA request',
|
|
287
294
|
'Program Specialist or Regional Office meeting',
|
|
288
295
|
'Program Specialist\'s Monthly contact',
|