@ttahub/common 2.2.21 → 2.2.23
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/package.json +1 -1
- package/src/constants.js +25 -1
package/package.json
CHANGED
package/src/constants.js
CHANGED
|
@@ -299,6 +299,30 @@ const ALERT_SIZES = {
|
|
|
299
299
|
};
|
|
300
300
|
exports.ALERT_SIZES = ALERT_SIZES;
|
|
301
301
|
|
|
302
|
+
const COMMUNICATION_GOALS = [
|
|
303
|
+
'Child Safety',
|
|
304
|
+
'CLASS Monitoring',
|
|
305
|
+
'CQI and Data',
|
|
306
|
+
'Development and Learning',
|
|
307
|
+
'Disaster Recovery',
|
|
308
|
+
'ERSEA',
|
|
309
|
+
'Family Engagement',
|
|
310
|
+
'Family Support FEI',
|
|
311
|
+
'Fiscal Management',
|
|
312
|
+
'Governance',
|
|
313
|
+
'Mental Health',
|
|
314
|
+
'Monitoring',
|
|
315
|
+
'New Leaders',
|
|
316
|
+
'Physical Health',
|
|
317
|
+
'Professional Development',
|
|
318
|
+
'Program Structure',
|
|
319
|
+
'RAN investigation',
|
|
320
|
+
'Teaching Practices',
|
|
321
|
+
'Workforce Development',
|
|
322
|
+
];
|
|
323
|
+
|
|
324
|
+
exports.COMMUNICATION_GOALS = COMMUNICATION_GOALS;
|
|
325
|
+
|
|
302
326
|
const COMMUNICATION_METHODS = [
|
|
303
327
|
'Email',
|
|
304
328
|
'Phone',
|
|
@@ -446,7 +470,7 @@ const TRACE_IDS = {
|
|
|
446
470
|
ACTIVE_DEFICIENCIES_WITH_TTA_SUPPORT: 'active-deficiencies-with-tta-support',
|
|
447
471
|
ALL_ACTIVE_DEFICIENCIES: 'all-active-deficiencies',
|
|
448
472
|
};
|
|
449
|
-
|
|
473
|
+
|
|
450
474
|
exports.TRACE_IDS = TRACE_IDS;
|
|
451
475
|
|
|
452
476
|
const COLLAB_REPORT_PARTICIPANTS = [
|