@ttahub/common 2.0.10 → 2.0.12

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/constants.js +319 -312
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttahub/common",
3
- "version": "2.0.10",
3
+ "version": "2.0.12",
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
@@ -1,318 +1,325 @@
1
1
  const RECIPIENT_PARTICIPANTS = [
2
- 'CEO / CFO / Executive',
3
- 'Center Director / Site Director',
4
- 'Coach',
5
- 'Direct Service: Other',
6
- 'Family Service Worker / Case Manager',
7
- 'Fiscal Manager/Team',
8
- 'Governing Body / Tribal Council / Policy Council',
9
- 'Home Visitor',
10
- 'Manager / Coordinator / Specialist',
11
- 'Parent / Guardian',
12
- 'Program Director (HS / EHS)',
13
- 'Program Support / Administrative Assistant',
14
- 'Teacher / Infant-Toddler Caregiver',
15
- 'Volunteer',
16
- ];
17
- exports.RECIPIENT_PARTICIPANTS = RECIPIENT_PARTICIPANTS;
18
-
19
- const LANGUAGES = [
20
- 'English',
21
- 'Spanish',
2
+ 'CEO / CFO / Executive',
3
+ 'Center Director / Site Director',
4
+ 'Coach',
5
+ 'Direct Service: Other',
6
+ 'Family Service Worker / Case Manager',
7
+ 'Fiscal Manager/Team',
8
+ 'Governing Body / Tribal Council / Policy Council',
9
+ 'Home Visitor',
10
+ 'Manager / Coordinator / Specialist',
11
+ 'Parent / Guardian',
12
+ 'Program Director (HS / EHS)',
13
+ 'Program Support / Administrative Assistant',
14
+ 'Teacher / Infant-Toddler Caregiver',
15
+ 'Volunteer',
16
+ ];
17
+ exports.RECIPIENT_PARTICIPANTS = RECIPIENT_PARTICIPANTS;
18
+
19
+ const LANGUAGES = [
20
+ 'English',
21
+ 'Spanish',
22
22
  ];
23
23
  exports.LANGUAGES = LANGUAGES;
24
24
 
25
- const OTHER_ENTITY_PARTICIPANTS = [
26
- 'HSCO',
27
- 'Local or State Agency',
28
- 'OCC Regional Office',
29
- 'OHS Regional Office',
30
- 'Regional Head Start Association',
31
- 'Regional TTA Team / Specialists',
32
- 'State Early Learning System',
33
- 'State Head Start Association',
34
- 'Other',
35
- ];
36
- exports.OTHER_ENTITY_PARTICIPANTS = OTHER_ENTITY_PARTICIPANTS;
37
-
38
- const ALL_PARTICIPANTS = [
39
- ...RECIPIENT_PARTICIPANTS,
40
- ...OTHER_ENTITY_PARTICIPANTS,
41
- ];
42
- exports.ALL_PARTICIPANTS = ALL_PARTICIPANTS;
43
-
44
- const TOPICS = [
45
- 'Behavioral / Mental Health / Trauma',
46
- 'Child Screening and Assessment',
47
- 'CLASS: Classroom Organization',
48
- 'CLASS: Emotional Support',
49
- 'CLASS: Instructional Support',
50
- 'Coaching',
51
- 'Communication',
52
- 'Community and Self-Assessment',
53
- 'Culture & Language',
54
- 'Curriculum (Instructional or Parenting)',
55
- 'Data and Evaluation',
56
- 'Disabilities Services',
57
- 'ERSEA',
58
- 'Environmental Health and Safety / EPRR',
59
- 'Equity',
60
- 'Facilities',
61
- 'Family Support Services',
62
- 'Fatherhood / Male Caregiving',
63
- 'Fiscal / Budget',
64
- 'Five-Year Grant',
65
- 'Home Visiting',
66
- 'Human Resources',
67
- 'Leadership / Governance',
68
- 'Learning Environments',
69
- 'Nutrition',
70
- 'Ongoing Monitoring and Continuous Improvement',
71
- 'Oral Health',
72
- 'Parent and Family Engagement',
73
- 'Partnerships and Community Engagement',
74
- 'Physical Health and Screenings',
75
- 'Pregnancy Services / Expectant Families',
76
- 'Program Planning and Services',
77
- 'Quality Improvement Plan / QIP',
78
- 'Recordkeeping and Reporting',
79
- 'Safety Practices',
80
- 'Staff Wellness',
81
- 'Teaching / Caregiving Practices',
82
- 'Technology and Information Systems',
83
- 'Training and Professional Development',
84
- 'Transition Practices',
85
- 'Transportation',
86
- ];
87
- exports.TOPICS = TOPICS;
88
-
89
- const REASONS = [
90
- 'Below Competitive Threshold (CLASS)',
91
- 'Below Quality Threshold (CLASS)',
92
- 'Change in Scope',
93
- 'Child Incident',
94
- 'Complaint',
95
- 'COVID-19 response',
96
- 'Full Enrollment',
97
- 'New Recipient',
98
- 'New Director or Management',
99
- 'New Program Option',
100
- 'New Staff / Turnover',
101
- 'Ongoing Quality Improvement',
102
- 'Planning/Coordination',
103
- 'School Readiness Goals',
104
- 'Monitoring | Area of Concern',
105
- 'Monitoring | Noncompliance',
106
- 'Monitoring | Deficiency',
107
- ];
108
- exports.REASONS = REASONS;
109
-
110
- const REPORT_STATUSES = {
111
- DRAFT: 'draft',
112
- DELETED: 'deleted',
113
- SUBMITTED: 'submitted',
114
- APPROVED: 'approved',
115
- NEEDS_ACTION: 'needs_action',
116
- };
117
- exports.REPORT_STATUSES = REPORT_STATUSES;
118
-
119
- const TRAINING_REPORT_STATUSES = {
120
- NOT_STARTED: 'Not started',
121
- IN_PROGRESS: 'In progress',
122
- COMPLETE: 'Complete',
123
- SUSPENDED: 'Suspended',
124
- };
125
- exports.TRAINING_REPORT_STATUSES = TRAINING_REPORT_STATUSES;
126
-
127
- const TRAINING_REPORT_STATUSES_URL_PARAMS = {
128
- 'not-started': TRAINING_REPORT_STATUSES.NOT_STARTED,
129
- 'in-progress': TRAINING_REPORT_STATUSES.IN_PROGRESS,
130
- suspended: TRAINING_REPORT_STATUSES.SUSPENDED,
131
- complete: TRAINING_REPORT_STATUSES.COMPLETE,
132
- };
133
-
134
- exports.TRAINING_REPORT_STATUSES_URL_PARAMS = TRAINING_REPORT_STATUSES_URL_PARAMS;
135
-
136
- const EVENT_REPORT_STATUSES = {
137
- IN_PROGRESS: 'In progress',
138
- COMPLETE: 'Complete',
139
- }
140
-
141
- exports.EVENT_REPORT_STATUSES = EVENT_REPORT_STATUSES;
142
-
143
- const TARGET_POPULATIONS = [
144
- 'Infants and Toddlers (ages birth to 3)',
145
- 'Preschool Children (ages 3-5)',
146
- 'Pregnant Women / Pregnant Persons',
147
- 'Affected by Child Welfare Involvement',
148
- 'Affected by Disaster',
149
- 'Affected by Substance Use',
150
- 'Children Experiencing Homelessness',
151
- 'Children in Migrant and Seasonal Families',
152
- 'Children with Disabilities',
153
- 'Children with Special Health Care Needs',
154
- 'Dual-Language Learners',
155
- 'Program Staff',
156
- ];
157
- exports.TARGET_POPULATIONS = TARGET_POPULATIONS;
158
-
159
- const EVENT_TARGET_POPULATIONS = [
160
- 'Children/Families affected by systemic discrimination/bias/exclusion',
161
- 'Children/Families affected by traumatic events',
162
- 'Parents/Families impacted by health disparities',
163
- ];
164
-
165
- exports.EVENT_TARGET_POPULATIONS = EVENT_TARGET_POPULATIONS;
166
-
167
- const USER_ROLES = [
168
- 'Central Office',
169
- 'Other Federal Staff',
170
- 'National Center',
171
- 'Regional Program Manager',
172
- 'COR',
173
- 'Supervisory Program Specialist',
174
- 'Program Specialist',
175
- 'Grants Specialist',
176
- 'Customer Service Contract',
177
- 'TTAC',
178
- 'Admin. Assistant',
179
- 'Early Childhood Manager',
180
- 'Early Childhood Specialist',
181
- 'Family Engagement Specialist',
182
- 'Grantee Specialist Manager',
183
- 'Grantee Specialist',
184
- 'Health Specialist',
185
- 'System Specialist',
186
- ];
187
- exports.USER_ROLES = USER_ROLES;
188
-
189
- const CLOSE_SUSPEND_REASONS = [
190
- 'Duplicate goal',
191
- 'Key staff turnover / vacancies',
192
- 'Recipient is not responding',
193
- 'Recipient request',
194
- 'Regional Office request',
195
- 'TTA complete',
196
- ];
197
-
198
- exports.CLOSE_SUSPEND_REASONS = CLOSE_SUSPEND_REASONS;
199
-
200
- const GOAL_CLOSE_REASONS = [
201
- 'Duplicate goal',
202
- 'Recipient request',
203
- 'Regional Office request',
204
- 'TTA complete',
205
- ];
206
- exports.GOAL_CLOSE_REASONS = GOAL_CLOSE_REASONS;
207
-
208
- const GOAL_SUSPEND_REASONS = [
209
- 'Key staff turnover / vacancies',
210
- 'Recipient request',
211
- 'Recipient is not responding',
212
- 'Regional Office request',
213
- ];
214
- exports.GOAL_SUSPEND_REASONS = GOAL_SUSPEND_REASONS;
215
-
216
- const GOAL_SOURCES = [
217
- 'Federal monitoring issues, including CLASS and RANs',
218
- 'RTTAPA development',
219
- 'Recipient request',
220
- 'Regional office priority',
221
- 'Training event follow-up',
222
- ];
223
-
224
- exports.GOAL_SOURCES = GOAL_SOURCES;
225
-
226
- const APPROVER_STATUSES = {
227
- APPROVED: 'approved',
228
- NEEDS_ACTION: 'needs_action',
229
- };
230
- exports.APPROVER_STATUSES = APPROVER_STATUSES;
231
-
232
- const SCOPE_IDS = {
233
- SITE_ACCESS: 1,
234
- ADMIN: 2,
235
- READ_WRITE_ACTIVITY_REPORTS: 3,
236
- READ_REPORTS: 4,
237
- READ_ACTIVITY_REPORTS: 4,
238
- APPROVE_ACTIVITY_REPORTS: 5,
239
- UNLOCK_APPROVED_REPORTS: 6,
240
- READ_WRITE_TRAINING_REPORTS: 7,
241
- POC_TRAINING_REPORTS: 9,
242
- };
243
- exports.SCOPE_IDS = SCOPE_IDS;
244
-
245
- const DECIMAL_BASE = 10;
246
- exports.DECIMAL_BASE = DECIMAL_BASE;
247
-
248
- const ALERT_STATUSES = {
249
- UNPUBLISHED: 'Unpublished',
250
- PUBLISHED: 'Published'
251
- };
252
- exports.ALERT_STATUSES = ALERT_STATUSES;
253
-
254
- const ALERT_VARIANTS = {
255
- INFO: 'info',
256
- EMERGENCY: 'emergency'
257
- };
258
- exports.ALERT_VARIANTS = ALERT_VARIANTS;
259
-
260
- const ALERT_SIZES = {
261
- STANDARD: 'standard',
262
- SLIM: 'slim',
263
- LARGE: 'large'
264
- };
265
- exports.ALERT_SIZES = ALERT_SIZES;
266
-
267
- const COMMUNICATION_METHODS = [
268
- 'Email',
269
- 'Phone',
270
- 'In person',
271
- 'Virtual',
272
- ];
273
-
274
- exports.COMMUNICATION_METHODS = COMMUNICATION_METHODS;
275
-
276
- const COMMUNICATION_PURPOSES = [
277
- 'CLASS',
278
- 'FEI',
279
- 'Monitoring',
280
- 'New TTA request',
281
- 'Program Specialist or Regional Office meeting',
282
- 'Program Specialist\'s Monthly contact',
283
- 'Program Specialist\'s site visit',
284
- 'Recipient question/feedback',
285
- 'RTTAPA updates',
286
- 'RTTAPA Initial Plan / New Recipient',
287
- 'TTA planning or scheduling',
288
- ];
289
-
290
- exports.COMMUNICATION_PURPOSES = COMMUNICATION_PURPOSES;
291
-
292
- const COMMUNICATION_RESULTS = [
293
- 'New TTA accepted',
294
- 'New TTA declined',
295
- 'RTTAPA declined',
296
- 'Next Steps identified',
297
- ];
298
-
299
- exports.COMMUNICATION_RESULTS = COMMUNICATION_RESULTS;
300
-
301
- const GOAL_STATUS = {
302
- DRAFT: 'Draft',
303
- NOT_STARTED: 'Not Started',
304
- IN_PROGRESS: 'In Progress',
305
- SUSPENDED: 'Suspended',
306
- CLOSED: 'Closed',
307
- };
308
-
309
- exports.GOAL_STATUS = GOAL_STATUS;
310
-
311
- const SUPPORT_TYPES = [
312
- 'Introducing',
313
- 'Planning',
314
- 'Implementing',
315
- 'Maintaining',
25
+ const OTHER_ENTITY_PARTICIPANTS = [
26
+ 'HSCO',
27
+ 'Local or State Agency',
28
+ 'OCC Regional Office',
29
+ 'OHS Regional Office',
30
+ 'Regional Head Start Association',
31
+ 'Regional TTA Team / Specialists',
32
+ 'State Early Learning System',
33
+ 'State Head Start Association',
34
+ 'Other',
35
+ ];
36
+ exports.OTHER_ENTITY_PARTICIPANTS = OTHER_ENTITY_PARTICIPANTS;
37
+
38
+ const ALL_PARTICIPANTS = [
39
+ ...RECIPIENT_PARTICIPANTS,
40
+ ...OTHER_ENTITY_PARTICIPANTS,
41
+ ];
42
+ exports.ALL_PARTICIPANTS = ALL_PARTICIPANTS;
43
+
44
+ const TOPICS = [
45
+ 'Behavioral / Mental Health / Trauma',
46
+ 'Child Screening and Assessment',
47
+ 'CLASS: Classroom Organization',
48
+ 'CLASS: Emotional Support',
49
+ 'CLASS: Instructional Support',
50
+ 'Coaching',
51
+ 'Communication',
52
+ 'Community and Self-Assessment',
53
+ 'Culture & Language',
54
+ 'Curriculum (Instructional or Parenting)',
55
+ 'Data and Evaluation',
56
+ 'Disabilities Services',
57
+ 'ERSEA',
58
+ 'Environmental Health and Safety / EPRR',
59
+ 'Equity',
60
+ 'Facilities',
61
+ 'Family Support Services',
62
+ 'Fatherhood / Male Caregiving',
63
+ 'Fiscal / Budget',
64
+ 'Five-Year Grant',
65
+ 'Home Visiting',
66
+ 'Human Resources',
67
+ 'Leadership / Governance',
68
+ 'Learning Environments',
69
+ 'Nutrition',
70
+ 'Ongoing Monitoring and Continuous Improvement',
71
+ 'Oral Health',
72
+ 'Parent and Family Engagement',
73
+ 'Partnerships and Community Engagement',
74
+ 'Physical Health and Screenings',
75
+ 'Pregnancy Services / Expectant Families',
76
+ 'Program Planning and Services',
77
+ 'Quality Improvement Plan / QIP',
78
+ 'Recordkeeping and Reporting',
79
+ 'Safety Practices',
80
+ 'Staff Wellness',
81
+ 'Teaching / Caregiving Practices',
82
+ 'Technology and Information Systems',
83
+ 'Training and Professional Development',
84
+ 'Transition Practices',
85
+ 'Transportation',
86
+ ];
87
+ exports.TOPICS = TOPICS;
88
+
89
+ const REASONS = [
90
+ 'Below Competitive Threshold (CLASS)',
91
+ 'Below Quality Threshold (CLASS)',
92
+ 'Change in Scope',
93
+ 'Child Incident',
94
+ 'Complaint',
95
+ 'COVID-19 response',
96
+ 'Full Enrollment',
97
+ 'New Recipient',
98
+ 'New Director or Management',
99
+ 'New Program Option',
100
+ 'New Staff / Turnover',
101
+ 'Ongoing Quality Improvement',
102
+ 'Planning/Coordination',
103
+ 'School Readiness Goals',
104
+ 'Monitoring | Area of Concern',
105
+ 'Monitoring | Noncompliance',
106
+ 'Monitoring | Deficiency',
107
+ ];
108
+ exports.REASONS = REASONS;
109
+
110
+ const REPORT_STATUSES = {
111
+ DRAFT: 'draft',
112
+ DELETED: 'deleted',
113
+ SUBMITTED: 'submitted',
114
+ APPROVED: 'approved',
115
+ NEEDS_ACTION: 'needs_action',
116
+ };
117
+ exports.REPORT_STATUSES = REPORT_STATUSES;
118
+
119
+ const TRAINING_REPORT_STATUSES = {
120
+ NOT_STARTED: 'Not started',
121
+ IN_PROGRESS: 'In progress',
122
+ COMPLETE: 'Complete',
123
+ SUSPENDED: 'Suspended',
124
+ };
125
+ exports.TRAINING_REPORT_STATUSES = TRAINING_REPORT_STATUSES;
126
+
127
+ const TRAINING_REPORT_STATUSES_URL_PARAMS = {
128
+ 'not-started': TRAINING_REPORT_STATUSES.NOT_STARTED,
129
+ 'in-progress': TRAINING_REPORT_STATUSES.IN_PROGRESS,
130
+ suspended: TRAINING_REPORT_STATUSES.SUSPENDED,
131
+ complete: TRAINING_REPORT_STATUSES.COMPLETE,
132
+ };
133
+
134
+ exports.TRAINING_REPORT_STATUSES_URL_PARAMS = TRAINING_REPORT_STATUSES_URL_PARAMS;
135
+
136
+ const EVENT_REPORT_STATUSES = {
137
+ IN_PROGRESS: 'In progress',
138
+ COMPLETE: 'Complete',
139
+ }
140
+
141
+ exports.EVENT_REPORT_STATUSES = EVENT_REPORT_STATUSES;
142
+
143
+ const TARGET_POPULATIONS = [
144
+ 'Infants and Toddlers (ages birth to 3)',
145
+ 'Preschool Children (ages 3-5)',
146
+ 'Pregnant Women / Pregnant Persons',
147
+ 'Affected by Child Welfare Involvement',
148
+ 'Affected by Disaster',
149
+ 'Affected by Substance Use',
150
+ 'Children Experiencing Homelessness',
151
+ 'Children in Migrant and Seasonal Families',
152
+ 'Children with Disabilities',
153
+ 'Children with Special Health Care Needs',
154
+ 'Dual-Language Learners',
155
+ 'Program Staff',
156
+ ];
157
+ exports.TARGET_POPULATIONS = TARGET_POPULATIONS;
158
+
159
+ const EVENT_TARGET_POPULATIONS = [
160
+ 'Children/Families affected by systemic discrimination/bias/exclusion',
161
+ 'Children/Families affected by traumatic events',
162
+ 'Parents/Families impacted by health disparities',
163
+ ];
164
+
165
+ exports.EVENT_TARGET_POPULATIONS = EVENT_TARGET_POPULATIONS;
166
+
167
+ const USER_ROLES = [
168
+ 'Central Office',
169
+ 'Other Federal Staff',
170
+ 'National Center',
171
+ 'Regional Program Manager',
172
+ 'COR',
173
+ 'Supervisory Program Specialist',
174
+ 'Program Specialist',
175
+ 'Grants Specialist',
176
+ 'Customer Service Contract',
177
+ 'TTAC',
178
+ 'Admin. Assistant',
179
+ 'Early Childhood Manager',
180
+ 'Early Childhood Specialist',
181
+ 'Family Engagement Specialist',
182
+ 'Grantee Specialist Manager',
183
+ 'Grantee Specialist',
184
+ 'Health Specialist',
185
+ 'System Specialist',
186
+ ];
187
+ exports.USER_ROLES = USER_ROLES;
188
+
189
+ const CLOSE_SUSPEND_REASONS = [
190
+ 'Duplicate goal',
191
+ 'Key staff turnover / vacancies',
192
+ 'Recipient is not responding',
193
+ 'Recipient request',
194
+ 'Regional Office request',
195
+ 'TTA complete',
196
+ ];
197
+
198
+ exports.CLOSE_SUSPEND_REASONS = CLOSE_SUSPEND_REASONS;
199
+
200
+ const GOAL_CLOSE_REASONS = [
201
+ 'Duplicate goal',
202
+ 'Recipient request',
203
+ 'Regional Office request',
204
+ 'TTA complete',
205
+ ];
206
+ exports.GOAL_CLOSE_REASONS = GOAL_CLOSE_REASONS;
207
+
208
+ const GOAL_SUSPEND_REASONS = [
209
+ 'Key staff turnover / vacancies',
210
+ 'Recipient request',
211
+ 'Recipient is not responding',
212
+ 'Regional Office request',
213
+ ];
214
+ exports.GOAL_SUSPEND_REASONS = GOAL_SUSPEND_REASONS;
215
+
216
+ const GOAL_SOURCES = [
217
+ 'Federal monitoring issues, including CLASS and RANs',
218
+ 'RTTAPA development',
219
+ 'Recipient request',
220
+ 'Regional office priority',
221
+ 'Training event follow-up',
222
+ ];
223
+
224
+ exports.GOAL_SOURCES = GOAL_SOURCES;
225
+
226
+ const APPROVER_STATUSES = {
227
+ APPROVED: 'approved',
228
+ NEEDS_ACTION: 'needs_action',
229
+ };
230
+ exports.APPROVER_STATUSES = APPROVER_STATUSES;
231
+
232
+ const SCOPE_IDS = {
233
+ SITE_ACCESS: 1,
234
+ ADMIN: 2,
235
+ READ_WRITE_ACTIVITY_REPORTS: 3,
236
+ READ_REPORTS: 4,
237
+ READ_ACTIVITY_REPORTS: 4,
238
+ APPROVE_ACTIVITY_REPORTS: 5,
239
+ UNLOCK_APPROVED_REPORTS: 6,
240
+ READ_WRITE_TRAINING_REPORTS: 7,
241
+ POC_TRAINING_REPORTS: 9,
242
+ };
243
+ exports.SCOPE_IDS = SCOPE_IDS;
244
+
245
+ const DECIMAL_BASE = 10;
246
+ exports.DECIMAL_BASE = DECIMAL_BASE;
247
+
248
+ const ALERT_STATUSES = {
249
+ UNPUBLISHED: 'Unpublished',
250
+ PUBLISHED: 'Published'
251
+ };
252
+ exports.ALERT_STATUSES = ALERT_STATUSES;
253
+
254
+ const ALERT_VARIANTS = {
255
+ INFO: 'info',
256
+ EMERGENCY: 'emergency'
257
+ };
258
+ exports.ALERT_VARIANTS = ALERT_VARIANTS;
259
+
260
+ const ALERT_SIZES = {
261
+ STANDARD: 'standard',
262
+ SLIM: 'slim',
263
+ LARGE: 'large'
264
+ };
265
+ exports.ALERT_SIZES = ALERT_SIZES;
266
+
267
+ const COMMUNICATION_METHODS = [
268
+ 'Email',
269
+ 'Phone',
270
+ 'In person',
271
+ 'Virtual',
272
+ ];
273
+
274
+ exports.COMMUNICATION_METHODS = COMMUNICATION_METHODS;
275
+
276
+ const COMMUNICATION_PURPOSES = [
277
+ 'CLASS',
278
+ 'FEI',
279
+ 'Monitoring',
280
+ 'New TTA request',
281
+ 'Program Specialist or Regional Office meeting',
282
+ 'Program Specialist\'s Monthly contact',
283
+ 'Program Specialist\'s site visit',
284
+ 'Recipient question/feedback',
285
+ 'RTTAPA updates',
286
+ 'RTTAPA Initial Plan / New Recipient',
287
+ 'TTA planning or scheduling',
288
+ ];
289
+
290
+ exports.COMMUNICATION_PURPOSES = COMMUNICATION_PURPOSES;
291
+
292
+ const COMMUNICATION_RESULTS = [
293
+ 'New TTA accepted',
294
+ 'New TTA declined',
295
+ 'RTTAPA declined',
296
+ 'Next Steps identified',
297
+ ];
298
+
299
+ exports.COMMUNICATION_RESULTS = COMMUNICATION_RESULTS;
300
+
301
+ const GOAL_STATUS = {
302
+ DRAFT: 'Draft',
303
+ NOT_STARTED: 'Not Started',
304
+ IN_PROGRESS: 'In Progress',
305
+ SUSPENDED: 'Suspended',
306
+ CLOSED: 'Closed',
307
+ };
308
+
309
+ exports.GOAL_STATUS = GOAL_STATUS;
310
+
311
+ const SUPPORT_TYPES = [
312
+ 'Introducing',
313
+ 'Planning',
314
+ 'Implementing',
315
+ 'Maintaining',
316
+ ];
317
+
318
+ exports.SUPPORT_TYPES = SUPPORT_TYPES;
319
+
320
+ const EVENT_AUDIENCE = [
321
+ 'Recipients',
322
+ 'Regional office/TTA',
316
323
  ];
317
324
 
318
- exports.SUPPORT_TYPES = SUPPORT_TYPES;
325
+ exports.EVENT_AUDIENCE = EVENT_AUDIENCE;