@ttahub/common 1.1.8 → 1.2.0

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 CHANGED
@@ -18,7 +18,10 @@ Whenever changes to this package are made, you will need to:
18
18
  If your PR depends on the latest version of this package, please don't forget to run `yarn upgrade @ttahub/common` and commit the changes to `package.json` and `yarn.lock`.
19
19
 
20
20
  ## Versions
21
- ### 1.1.6
21
+ ### 1.1.8
22
+ Reorder training report url param statuses so suspended is third tab and not second on TR landing
23
+
24
+ ### 1.1.6/7
22
25
  Add suspended as an option to training report URL params and status
23
26
 
24
27
  ### 1.1.4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttahub/common",
3
- "version": "1.1.8",
3
+ "version": "1.2.0",
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
@@ -231,7 +231,7 @@ const SCOPE_IDS = {
231
231
  UNLOCK_APPROVED_REPORTS: 6,
232
232
  READ_WRITE_TRAINING_REPORTS: 7,
233
233
  READ_TRAINING_REPORTS: 8,
234
- COLLABORATOR_TRAINING_REPORTS: 9,
234
+ POC_TRAINING_REPORTS: 9,
235
235
  };
236
236
  exports.SCOPE_IDS = SCOPE_IDS;
237
237