powr-sdk-api 1.4.1 → 1.4.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
@@ -11,6 +11,9 @@ const {
11
11
  validateAuth,
12
12
  generateToken
13
13
  } = require("./middleware/auth");
14
+ const {
15
+ notFoundHandler
16
+ } = require("./middleware/notfound");
14
17
  const createSwaggerSpec = require("./swagger");
15
18
  const logger = require("./logger");
16
19
  module.exports = {
@@ -20,5 +23,6 @@ module.exports = {
20
23
  logger,
21
24
  createSwaggerSpec,
22
25
  generateToken,
23
- validateAuth
26
+ validateAuth,
27
+ notFoundHandler
24
28
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "powr-sdk-api",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "Shared API core library for PowrStack projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",