@nsshunt/stsutils 1.8.5 → 1.8.6

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/status.js +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nsshunt/stsutils",
3
- "version": "1.8.5",
3
+ "version": "1.8.6",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/status.js CHANGED
@@ -10,7 +10,9 @@ const status = {
10
10
  unauthorized: 401,
11
11
  notfound: 404,
12
12
  conflict: 409,
13
- error: 500
13
+ error: 500,
14
+ // STS Specific Errors
15
+ serverErrorMalformed: 520
14
16
  };
15
17
 
16
18
  module.exports = { successMessage, errorMessage, status };