powr-sdk-api 3.0.1 → 3.0.2

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/dist/index.js +5 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -17,6 +17,9 @@ const {
17
17
  createPowrRoutes,
18
18
  initializePlexx
19
19
  } = require("./routes");
20
+ const {
21
+ verifyToken
22
+ } = require("./middleware/jwtToken");
20
23
  module.exports = {
21
24
  errorCatcher,
22
25
  errorHandler,
@@ -24,5 +27,6 @@ module.exports = {
24
27
  createSwaggerSpec,
25
28
  notFoundHandler,
26
29
  createPowrRoutes,
27
- initializePlexx
30
+ initializePlexx,
31
+ verifyToken
28
32
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "powr-sdk-api",
3
- "version": "3.0.1",
3
+ "version": "3.0.2",
4
4
  "description": "Shared API core library for PowrStack projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",