@solongate/proxy 0.81.29 → 0.81.30

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.
package/dist/index.js CHANGED
@@ -9213,16 +9213,22 @@ function AuditPanel({ active: active2, focused }) {
9213
9213
  /* @__PURE__ */ jsx6(Text6, { color: theme.dim, children: " (s) " })
9214
9214
  ] });
9215
9215
  if (showHelp) {
9216
+ const colOf = (groups) => /* @__PURE__ */ jsx6(Box6, { flexDirection: "column", width: "50%", paddingRight: 2, children: groups.map(([group, keys]) => /* @__PURE__ */ jsxs6(Box6, { flexDirection: "column", marginBottom: 1, children: [
9217
+ /* @__PURE__ */ jsx6(Text6, { bold: true, color: theme.accent, children: group }),
9218
+ keys.map(([k, desc]) => /* @__PURE__ */ jsxs6(Text6, { wrap: "truncate", children: [
9219
+ /* @__PURE__ */ jsx6(Text6, { color: theme.accentBright, children: (" " + k).padEnd(19) }),
9220
+ /* @__PURE__ */ jsx6(Text6, { color: theme.dim, children: desc })
9221
+ ] }, k))
9222
+ ] }, group)) });
9216
9223
  return /* @__PURE__ */ jsxs6(Box6, { flexDirection: "column", children: [
9217
- /* @__PURE__ */ jsx6(Text6, { bold: true, color: theme.accentBright, children: "AUDIT \u2014 all keys" }),
9218
- AUDIT_HELP.map(([group, keys]) => /* @__PURE__ */ jsxs6(Box6, { flexDirection: "column", marginTop: 1, children: [
9219
- /* @__PURE__ */ jsx6(Text6, { bold: true, color: theme.accent, children: group }),
9220
- keys.map(([k, desc]) => /* @__PURE__ */ jsxs6(Text6, { wrap: "truncate", children: [
9221
- /* @__PURE__ */ jsx6(Text6, { color: theme.accentBright, children: (" " + k).padEnd(20) }),
9222
- /* @__PURE__ */ jsx6(Text6, { color: theme.dim, children: desc })
9223
- ] }, k))
9224
- ] }, group)),
9225
- /* @__PURE__ */ jsx6(Box6, { marginTop: 1, children: /* @__PURE__ */ jsx6(Text6, { color: theme.dim, children: "press any key to close" }) })
9224
+ /* @__PURE__ */ jsxs6(Text6, { bold: true, color: theme.accentBright, children: [
9225
+ "AUDIT \u2014 all keys ",
9226
+ /* @__PURE__ */ jsx6(Text6, { color: theme.dim, children: "\xB7 press any key to close" })
9227
+ ] }),
9228
+ /* @__PURE__ */ jsxs6(Box6, { marginTop: 1, children: [
9229
+ colOf(AUDIT_HELP.slice(0, 1)),
9230
+ colOf(AUDIT_HELP.slice(1))
9231
+ ] })
9226
9232
  ] });
9227
9233
  }
9228
9234
  if (view === "detail" && current) {
package/dist/tui/index.js CHANGED
@@ -2617,16 +2617,22 @@ function AuditPanel({ active: active2, focused }) {
2617
2617
  /* @__PURE__ */ jsx6(Text6, { color: theme.dim, children: " (s) " })
2618
2618
  ] });
2619
2619
  if (showHelp) {
2620
+ const colOf = (groups) => /* @__PURE__ */ jsx6(Box6, { flexDirection: "column", width: "50%", paddingRight: 2, children: groups.map(([group, keys]) => /* @__PURE__ */ jsxs6(Box6, { flexDirection: "column", marginBottom: 1, children: [
2621
+ /* @__PURE__ */ jsx6(Text6, { bold: true, color: theme.accent, children: group }),
2622
+ keys.map(([k, desc]) => /* @__PURE__ */ jsxs6(Text6, { wrap: "truncate", children: [
2623
+ /* @__PURE__ */ jsx6(Text6, { color: theme.accentBright, children: (" " + k).padEnd(19) }),
2624
+ /* @__PURE__ */ jsx6(Text6, { color: theme.dim, children: desc })
2625
+ ] }, k))
2626
+ ] }, group)) });
2620
2627
  return /* @__PURE__ */ jsxs6(Box6, { flexDirection: "column", children: [
2621
- /* @__PURE__ */ jsx6(Text6, { bold: true, color: theme.accentBright, children: "AUDIT \u2014 all keys" }),
2622
- AUDIT_HELP.map(([group, keys]) => /* @__PURE__ */ jsxs6(Box6, { flexDirection: "column", marginTop: 1, children: [
2623
- /* @__PURE__ */ jsx6(Text6, { bold: true, color: theme.accent, children: group }),
2624
- keys.map(([k, desc]) => /* @__PURE__ */ jsxs6(Text6, { wrap: "truncate", children: [
2625
- /* @__PURE__ */ jsx6(Text6, { color: theme.accentBright, children: (" " + k).padEnd(20) }),
2626
- /* @__PURE__ */ jsx6(Text6, { color: theme.dim, children: desc })
2627
- ] }, k))
2628
- ] }, group)),
2629
- /* @__PURE__ */ jsx6(Box6, { marginTop: 1, children: /* @__PURE__ */ jsx6(Text6, { color: theme.dim, children: "press any key to close" }) })
2628
+ /* @__PURE__ */ jsxs6(Text6, { bold: true, color: theme.accentBright, children: [
2629
+ "AUDIT \u2014 all keys ",
2630
+ /* @__PURE__ */ jsx6(Text6, { color: theme.dim, children: "\xB7 press any key to close" })
2631
+ ] }),
2632
+ /* @__PURE__ */ jsxs6(Box6, { marginTop: 1, children: [
2633
+ colOf(AUDIT_HELP.slice(0, 1)),
2634
+ colOf(AUDIT_HELP.slice(1))
2635
+ ] })
2630
2636
  ] });
2631
2637
  }
2632
2638
  if (view === "detail" && current) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solongate/proxy",
3
- "version": "0.81.29",
3
+ "version": "0.81.30",
4
4
  "description": "AI tool security proxy: protect any AI tool server with customizable policies, path/command constraints, rate limiting, and audit logging. No code changes required.",
5
5
  "type": "module",
6
6
  "bin": {