@ttahub/common 2.2.14 → 2.2.16

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 +8 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttahub/common",
3
- "version": "2.2.14",
3
+ "version": "2.2.16",
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
@@ -130,6 +130,13 @@ const TRAINING_REPORT_STATUSES = {
130
130
  };
131
131
  exports.TRAINING_REPORT_STATUSES = TRAINING_REPORT_STATUSES;
132
132
 
133
+ const NAVIGATOR_PAGE_STATUSES = {
134
+ NOT_STARTED: 'Not started',
135
+ IN_PROGRESS: 'In progress',
136
+ COMPLETE: 'Complete',
137
+ };
138
+ exports.NAVIGATOR_PAGE_STATUSES = NAVIGATOR_PAGE_STATUSES;
139
+
133
140
  const TRAINING_REPORT_STATUSES_URL_PARAMS = {
134
141
  'not-started': TRAINING_REPORT_STATUSES.NOT_STARTED,
135
142
  'in-progress': TRAINING_REPORT_STATUSES.IN_PROGRESS,
@@ -452,4 +459,4 @@ const TOTAL_HOURS_AND_RECIPIENT_GRAPH_TRACE_IDS = {
452
459
  ];
453
460
 
454
461
  exports.COLLAB_REPORT_PARTICIPANTS = COLLAB_REPORT_PARTICIPANTS;
455
-
462
+