@ttahub/common 1.1.4 → 1.1.5

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/index.js +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttahub/common",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
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/index.js CHANGED
@@ -119,9 +119,9 @@ const TRAINING_REPORT_STATUSES = {
119
119
  exports.TRAINING_REPORT_STATUSES = TRAINING_REPORT_STATUSES;
120
120
 
121
121
  const TRAINING_REPORT_STATUSES_URL_PARAMS = {
122
- 'not-started': EVENT_STATUS.NOT_STARTED,
123
- 'in-progress': EVENT_STATUS.IN_PROGRESS,
124
- complete: EVENT_STATUS.COMPLETE,
122
+ 'not-started': TRAINING_REPORT_STATUSES.NOT_STARTED,
123
+ 'in-progress': TRAINING_REPORT_STATUSES.IN_PROGRESS,
124
+ complete: TRAINING_REPORT_STATUSES.COMPLETE,
125
125
  };
126
126
 
127
127
  exports.TRAINING_REPORT_STATUSES_URL_PARAMS = TRAINING_REPORT_STATUSES_URL_PARAMS;