mobbdev 1.0.199 → 1.0.200

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.
@@ -1647,6 +1647,19 @@ var getIssueTypeFriendlyString = (issueType) => {
1647
1647
  }
1648
1648
  return issueTypeMap[issueTypeZParseRes.data];
1649
1649
  };
1650
+ var statusMap = {
1651
+ ["Digested" /* Digested */]: "Digested",
1652
+ ["Error" /* Error */]: "Error",
1653
+ ["FalsePositive" /* FalsePositive */]: "False Positive",
1654
+ ["Filtered" /* Filtered */]: "Filtered",
1655
+ ["FilteredAiQuota" /* FilteredAiQuota */]: "Filtered AI Quota",
1656
+ ["Fixed" /* Fixed */]: "Fixable",
1657
+ ["NoFix" /* NoFix */]: "No Fix",
1658
+ ["Pending" /* Pending */]: "Pending",
1659
+ ["Unfixable" /* Unfixable */]: "Unfixable",
1660
+ ["Unsupported" /* Unsupported */]: "Unsupported"
1661
+ };
1662
+ var statusZ = z5.nativeEnum(Vulnerability_Report_Issue_State_Enum);
1650
1663
  var issueDescription = {
1651
1664
  ["AUTOGENERATED_CODE" /* AutogeneratedCode */]: "The flagged code is generated automatically by tools or frameworks as part of the build or runtime process. This categorization highlights that **the issue resides in non-manual code**, which often requires tool-specific solutions or exemptions.",
1652
1665
  ["AUXILIARY_CODE" /* AuxiliaryCode */]: "The flagged code is auxiliary or supporting code, such as configuration files, build scripts, or other non-application logic. This categorization indicates that the issue is not directly related to the application's core functionality.",
package/dist/index.mjs CHANGED
@@ -3075,6 +3075,19 @@ var getIssueTypeFriendlyString = (issueType) => {
3075
3075
  }
3076
3076
  return issueTypeMap[issueTypeZParseRes.data];
3077
3077
  };
3078
+ var statusMap = {
3079
+ ["Digested" /* Digested */]: "Digested",
3080
+ ["Error" /* Error */]: "Error",
3081
+ ["FalsePositive" /* FalsePositive */]: "False Positive",
3082
+ ["Filtered" /* Filtered */]: "Filtered",
3083
+ ["FilteredAiQuota" /* FilteredAiQuota */]: "Filtered AI Quota",
3084
+ ["Fixed" /* Fixed */]: "Fixable",
3085
+ ["NoFix" /* NoFix */]: "No Fix",
3086
+ ["Pending" /* Pending */]: "Pending",
3087
+ ["Unfixable" /* Unfixable */]: "Unfixable",
3088
+ ["Unsupported" /* Unsupported */]: "Unsupported"
3089
+ };
3090
+ var statusZ = z.nativeEnum(Vulnerability_Report_Issue_State_Enum);
3078
3091
  function getTagTooltip(tag) {
3079
3092
  switch (tag) {
3080
3093
  case "FALSE_POSITIVE":
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobbdev",
3
- "version": "1.0.199",
3
+ "version": "1.0.200",
4
4
  "description": "Automated secure code remediation tool",
5
5
  "repository": "git+https://github.com/mobb-dev/bugsy.git",
6
6
  "main": "dist/index.mjs",