dce-expresskit 4.0.0-beta.4 → 4.0.0-beta.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dce-expresskit",
3
- "version": "4.0.0-beta.4",
3
+ "version": "4.0.0-beta.5",
4
4
  "description": "Shared functions, helpers, and tools for Harvard DCE Express-based servers",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -9,13 +9,11 @@ import {
9
9
  ErrorWithCode,
10
10
  ParamType,
11
11
  LogFunction,
12
+ LOG_REVIEW_ROUTE_PATH_PREFIX,
13
+ LOG_ROUTE_PATH,
14
+ LOG_REVIEW_STATUS_ROUTE,
12
15
  } from 'dce-reactkit';
13
16
 
14
- // Import internal constants of dce-reactkit
15
- import LOG_REVIEW_ROUTE_PATH_PREFIX from 'dce-reactkit/src/constants/LOG_REVIEW_ROUTE_PATH_PREFIX';
16
- import LOG_ROUTE_PATH from 'dce-reactkit/src/constants/LOG_ROUTE_PATH';
17
- import LOG_REVIEW_STATUS_ROUTE from 'dce-reactkit/src/constants/LOG_REVIEW_STATUS_ROUTE';
18
-
19
17
  // Import shared helpers
20
18
  import genRouteHandler from './genRouteHandler';
21
19