mobbdev 1.4.57 → 1.4.59
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.
|
@@ -293,6 +293,7 @@ var init_client_generates = __esm({
|
|
|
293
293
|
return Vulnerability_Report_Issue_State_Enum2;
|
|
294
294
|
})(Vulnerability_Report_Issue_State_Enum || {});
|
|
295
295
|
Vulnerability_Report_Issue_Tag_Enum = /* @__PURE__ */ ((Vulnerability_Report_Issue_Tag_Enum3) => {
|
|
296
|
+
Vulnerability_Report_Issue_Tag_Enum3["AcceptedRisk"] = "ACCEPTED_RISK";
|
|
296
297
|
Vulnerability_Report_Issue_Tag_Enum3["AgenticRemediationInProgress"] = "AGENTIC_REMEDIATION_IN_PROGRESS";
|
|
297
298
|
Vulnerability_Report_Issue_Tag_Enum3["AutogeneratedCode"] = "AUTOGENERATED_CODE";
|
|
298
299
|
Vulnerability_Report_Issue_Tag_Enum3["AuxiliaryCode"] = "AUXILIARY_CODE";
|
|
@@ -1727,6 +1728,7 @@ var init_getIssueType = __esm({
|
|
|
1727
1728
|
["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.",
|
|
1728
1729
|
["FALSE_POSITIVE" /* FalsePositive */]: "The flagged code **does not represent an actual vulnerability within the application's context.** This categorization indicates that the issue is either misidentified by the scanner or deemed irrelevant to the application's functionality.",
|
|
1729
1730
|
["TEST_CODE" /* TestCode */]: "The flagged code resides in a test-specific path or context. This categorization indicates that **it supports testing scenarios and is isolated from production use**.",
|
|
1731
|
+
["ACCEPTED_RISK" /* AcceptedRisk */]: "The flagged code is a real issue, but the risk has been reviewed and accepted as-is. This categorization records a deliberate decision rather than a dispute about the finding.",
|
|
1730
1732
|
["UNFIXABLE" /* Unfixable */]: "The flagged code cannot be fixed",
|
|
1731
1733
|
["VENDOR_CODE" /* VendorCode */]: "The flagged code originates from a third-party library or dependency maintained externally. This categorization suggests that **the issue lies outside the application's direct control** and should be addressed by the vendor if necessary.",
|
|
1732
1734
|
["SUPPRESSED" /* Suppressed */]: "Suppressed in the scan report.",
|
package/dist/index.mjs
CHANGED
|
@@ -293,6 +293,7 @@ var init_client_generates = __esm({
|
|
|
293
293
|
return Vulnerability_Report_Issue_State_Enum2;
|
|
294
294
|
})(Vulnerability_Report_Issue_State_Enum || {});
|
|
295
295
|
Vulnerability_Report_Issue_Tag_Enum = /* @__PURE__ */ ((Vulnerability_Report_Issue_Tag_Enum3) => {
|
|
296
|
+
Vulnerability_Report_Issue_Tag_Enum3["AcceptedRisk"] = "ACCEPTED_RISK";
|
|
296
297
|
Vulnerability_Report_Issue_Tag_Enum3["AgenticRemediationInProgress"] = "AGENTIC_REMEDIATION_IN_PROGRESS";
|
|
297
298
|
Vulnerability_Report_Issue_Tag_Enum3["AutogeneratedCode"] = "AUTOGENERATED_CODE";
|
|
298
299
|
Vulnerability_Report_Issue_Tag_Enum3["AuxiliaryCode"] = "AUXILIARY_CODE";
|
|
@@ -1314,6 +1315,8 @@ function getTagTooltip(tag2) {
|
|
|
1314
1315
|
switch (tag2) {
|
|
1315
1316
|
case "FALSE_POSITIVE":
|
|
1316
1317
|
return "Issue was found to be a false positive";
|
|
1318
|
+
case "ACCEPTED_RISK":
|
|
1319
|
+
return "Issue was accepted as an acknowledged risk";
|
|
1317
1320
|
case "TEST_CODE":
|
|
1318
1321
|
return "Issue found in test files, not production code";
|
|
1319
1322
|
case "VENDOR_CODE":
|
|
@@ -1378,6 +1381,7 @@ var init_getIssueType = __esm({
|
|
|
1378
1381
|
["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.",
|
|
1379
1382
|
["FALSE_POSITIVE" /* FalsePositive */]: "The flagged code **does not represent an actual vulnerability within the application's context.** This categorization indicates that the issue is either misidentified by the scanner or deemed irrelevant to the application's functionality.",
|
|
1380
1383
|
["TEST_CODE" /* TestCode */]: "The flagged code resides in a test-specific path or context. This categorization indicates that **it supports testing scenarios and is isolated from production use**.",
|
|
1384
|
+
["ACCEPTED_RISK" /* AcceptedRisk */]: "The flagged code is a real issue, but the risk has been reviewed and accepted as-is. This categorization records a deliberate decision rather than a dispute about the finding.",
|
|
1381
1385
|
["UNFIXABLE" /* Unfixable */]: "The flagged code cannot be fixed",
|
|
1382
1386
|
["VENDOR_CODE" /* VendorCode */]: "The flagged code originates from a third-party library or dependency maintained externally. This categorization suggests that **the issue lies outside the application's direct control** and should be addressed by the vendor if necessary.",
|
|
1383
1387
|
["SUPPRESSED" /* Suppressed */]: "Suppressed in the scan report.",
|
|
@@ -18558,7 +18562,7 @@ function createLogger(config2) {
|
|
|
18558
18562
|
|
|
18559
18563
|
// src/features/claude_code/hook_logger.ts
|
|
18560
18564
|
var DD_RUM_TOKEN = true ? "pubf59c0182545bfb4c299175119f1abf9b" : "";
|
|
18561
|
-
var CLI_VERSION = true ? "1.4.
|
|
18565
|
+
var CLI_VERSION = true ? "1.4.59" : "unknown";
|
|
18562
18566
|
var NAMESPACE = "mobbdev-claude-code-hook-logs";
|
|
18563
18567
|
var claudeCodeVersion;
|
|
18564
18568
|
function buildDdTags() {
|