pentesting 0.7.39 → 0.7.40

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 +4 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -7672,10 +7672,10 @@ ${list}`);
7672
7672
  state.credentials.length > 0 && ` \u2502 ${state.credentials.length} creds`,
7673
7673
  tokenUsage.total > 0 && ` \u2502 ${(tokenUsage.total / 1e3).toFixed(0)}k tokens`
7674
7674
  ] }),
7675
- /* @__PURE__ */ jsxs2(Text2, { dimColor: true, children: [
7676
- isProcessing && currentStatus && `${currentStatus.slice(0, 40)} \u2502 `,
7677
- isProcessing && "ESC"
7678
- ] })
7675
+ /* @__PURE__ */ jsx2(Box2, { children: pendingApproval ? /* @__PURE__ */ jsx2(Text2, { color: "#FFA500", bold: true, children: "\u26A0 WAITING APPROVAL" }) : isProcessing ? /* @__PURE__ */ jsxs2(Text2, { color: "#00FF00", children: [
7676
+ "\u25CF PROCESSING ",
7677
+ currentStatus && `(${currentStatus.slice(0, 20)}...)`
7678
+ ] }) : /* @__PURE__ */ jsx2(Text2, { color: "#888888", children: "\u25CB READY" }) })
7679
7679
  ] })
7680
7680
  ] });
7681
7681
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pentesting",
3
- "version": "0.7.39",
3
+ "version": "0.7.40",
4
4
  "description": "Autonomous Penetration Testing AI Agent",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",