mobbdev 0.0.66 → 0.0.67

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.mjs +2 -0
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -2228,6 +2228,8 @@ var getIssueType = (issueType) => {
2228
2228
  return "Cookie is not HttpOnly";
2229
2229
  case "INSECURE_COOKIE" /* InsecureCookie */:
2230
2230
  return "Insecure Cookie";
2231
+ case "TRUST_BOUNDARY_VIOLATION" /* TrustBoundaryViolation */:
2232
+ return "Trust Boundary Violation";
2231
2233
  default: {
2232
2234
  return issueType ? issueType.replaceAll("_", " ") : "Other";
2233
2235
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobbdev",
3
- "version": "0.0.66",
3
+ "version": "0.0.67",
4
4
  "description": "Automated secure code remediation tool",
5
5
  "repository": "https://github.com/mobb-dev/bugsy",
6
6
  "main": "dist/index.js",