@ttahub/common 2.2.17 → 2.2.18
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 +3 -0
- package/package.json +1 -1
- package/src/constants.js +12 -0
package/README.md
CHANGED
package/package.json
CHANGED
package/src/constants.js
CHANGED
|
@@ -113,6 +113,18 @@ const DEPRECATED_REASONS = [
|
|
|
113
113
|
|
|
114
114
|
exports.DEPRECATED_REASONS = DEPRECATED_REASONS;
|
|
115
115
|
|
|
116
|
+
const PRIORITY_INDICATORS = [
|
|
117
|
+
'Child incidents',
|
|
118
|
+
'Deficiency',
|
|
119
|
+
'DRS',
|
|
120
|
+
'FEI',
|
|
121
|
+
'New recipient',
|
|
122
|
+
'New staff',
|
|
123
|
+
'No TTA',
|
|
124
|
+
];
|
|
125
|
+
|
|
126
|
+
exports.PRIORITY_INDICATORS = PRIORITY_INDICATORS;
|
|
127
|
+
|
|
116
128
|
const REPORT_STATUSES = {
|
|
117
129
|
DRAFT: 'draft',
|
|
118
130
|
DELETED: 'deleted',
|