@solongate/proxy 0.81.29 → 0.81.31

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,24 @@ 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
+ copyBanner,
9225
+ /* @__PURE__ */ jsxs6(Text6, { bold: true, color: theme.accentBright, children: [
9226
+ "AUDIT \u2014 all keys",
9227
+ " ",
9228
+ /* @__PURE__ */ jsx6(Text6, { color: theme.dim, children: frozen ? "\xB7 screen frozen \u2014 space resumes, other keys are locked" : "\xB7 press any key to close \xB7 space = copy mode (works here too)" })
9229
+ ] }),
9230
+ /* @__PURE__ */ jsxs6(Box6, { marginTop: 1, children: [
9231
+ colOf(AUDIT_HELP.slice(0, 1)),
9232
+ colOf(AUDIT_HELP.slice(1))
9233
+ ] })
9226
9234
  ] });
9227
9235
  }
9228
9236
  if (view === "detail" && current) {
package/dist/tui/index.js CHANGED
@@ -2617,16 +2617,24 @@ 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
+ copyBanner,
2629
+ /* @__PURE__ */ jsxs6(Text6, { bold: true, color: theme.accentBright, children: [
2630
+ "AUDIT \u2014 all keys",
2631
+ " ",
2632
+ /* @__PURE__ */ jsx6(Text6, { color: theme.dim, children: frozen ? "\xB7 screen frozen \u2014 space resumes, other keys are locked" : "\xB7 press any key to close \xB7 space = copy mode (works here too)" })
2633
+ ] }),
2634
+ /* @__PURE__ */ jsxs6(Box6, { marginTop: 1, children: [
2635
+ colOf(AUDIT_HELP.slice(0, 1)),
2636
+ colOf(AUDIT_HELP.slice(1))
2637
+ ] })
2630
2638
  ] });
2631
2639
  }
2632
2640
  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.31",
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": {