@ttahub/common 2.2.22 → 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/README.md +0 -3
- package/package.json +1 -1
- package/src/constants.js +25 -2
package/README.md
CHANGED
package/package.json
CHANGED
package/src/constants.js
CHANGED
|
@@ -121,7 +121,6 @@ const PRIORITY_INDICATORS = [
|
|
|
121
121
|
'New recipient',
|
|
122
122
|
'New staff',
|
|
123
123
|
'No TTA',
|
|
124
|
-
'Underenrolled',
|
|
125
124
|
];
|
|
126
125
|
|
|
127
126
|
exports.PRIORITY_INDICATORS = PRIORITY_INDICATORS;
|
|
@@ -300,6 +299,30 @@ const ALERT_SIZES = {
|
|
|
300
299
|
};
|
|
301
300
|
exports.ALERT_SIZES = ALERT_SIZES;
|
|
302
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
|
+
|
|
303
326
|
const COMMUNICATION_METHODS = [
|
|
304
327
|
'Email',
|
|
305
328
|
'Phone',
|
|
@@ -447,7 +470,7 @@ const TRACE_IDS = {
|
|
|
447
470
|
ACTIVE_DEFICIENCIES_WITH_TTA_SUPPORT: 'active-deficiencies-with-tta-support',
|
|
448
471
|
ALL_ACTIVE_DEFICIENCIES: 'all-active-deficiencies',
|
|
449
472
|
};
|
|
450
|
-
|
|
473
|
+
|
|
451
474
|
exports.TRACE_IDS = TRACE_IDS;
|
|
452
475
|
|
|
453
476
|
const COLLAB_REPORT_PARTICIPANTS = [
|