@solongate/proxy 0.83.16 → 0.83.17
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 +6 -6
- package/dist/tui/components.d.ts +5 -5
- package/dist/tui/index.js +6 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7638,7 +7638,7 @@ function StreamLine({ e, loc, selected, date }) {
|
|
|
7638
7638
|
hhmmss(e.at),
|
|
7639
7639
|
" "
|
|
7640
7640
|
] }),
|
|
7641
|
-
/* @__PURE__ */ jsx(Text, { color: loc ? theme.ok : "white", children: loc ? "
|
|
7641
|
+
/* @__PURE__ */ jsx(Text, { color: loc ? theme.ok : "white", children: loc ? "LOC" : "CLD" }),
|
|
7642
7642
|
/* @__PURE__ */ jsx(Text, { color: theme.dim, children: "] " }),
|
|
7643
7643
|
/* @__PURE__ */ jsx(Text, { color: decisionColor(e.decision), bold: e.decision !== "ALLOW", children: e.decision.padEnd(6) }),
|
|
7644
7644
|
/* @__PURE__ */ jsx(Text, { color: theme.accent, children: truncate2(e.tool, 12).padEnd(13) }),
|
|
@@ -9232,7 +9232,7 @@ function LivePanel({ active: active2 }) {
|
|
|
9232
9232
|
/* @__PURE__ */ jsx2(Text2, { backgroundColor: BG, color: "white", bold: true, children: " ENTRY " }),
|
|
9233
9233
|
/* @__PURE__ */ jsx2(Text2, { color: decisionColor(e.decision), bold: true, children: " " + e.decision }),
|
|
9234
9234
|
/* @__PURE__ */ jsx2(Text2, { color: theme.accent, bold: true, children: " " + e.tool }),
|
|
9235
|
-
/* @__PURE__ */ jsx2(Text2, { color: isLoc(e) ? theme.ok : "white", children: " " + (isLoc(e) ? "
|
|
9235
|
+
/* @__PURE__ */ jsx2(Text2, { color: isLoc(e) ? theme.ok : "white", children: " " + (isLoc(e) ? "LOC" : "CLD") }),
|
|
9236
9236
|
e.dlp ? /* @__PURE__ */ jsx2(Text2, { color: theme.bad, children: " DLP!" }) : null,
|
|
9237
9237
|
e.burst ? /* @__PURE__ */ jsx2(Text2, { color: theme.warn, children: " BURST" }) : null,
|
|
9238
9238
|
/* @__PURE__ */ jsx2(Text2, { color: theme.dim, children: " \u2190 back" })
|
|
@@ -9557,13 +9557,13 @@ function LivePanel({ active: active2 }) {
|
|
|
9557
9557
|
filter === "all" ? /* @__PURE__ */ jsxs2(Text2, { color: theme.dim, children: [
|
|
9558
9558
|
spin,
|
|
9559
9559
|
" awaiting traffic\u2026"
|
|
9560
|
-
] }) : /* @__PURE__ */ jsx2(Text2, { color: theme.dim, children: `${spin} no ${filter === "local" ? "
|
|
9560
|
+
] }) : /* @__PURE__ */ jsx2(Text2, { color: theme.dim, children: `${spin} no ${filter === "local" ? "LOC (this machine)" : "CLD (other devices)"} calls in the buffer \xB7 f switches origin` })
|
|
9561
9561
|
) : null,
|
|
9562
9562
|
windowed.map((e, i) => /* @__PURE__ */ jsx2(StreamLine, { e, loc: isLoc(e), selected: clampedScroll + i === selClamped }, e.id))
|
|
9563
9563
|
] }),
|
|
9564
9564
|
/* @__PURE__ */ jsxs2(Text2, { wrap: "truncate", children: [
|
|
9565
9565
|
/* @__PURE__ */ jsx2(Text2, { backgroundColor: BG, color: "white", bold: true, children: " LIVE " }),
|
|
9566
|
-
/* @__PURE__ */ jsx2(Text2, { backgroundColor: "#0b1530", color: "white", children: ` local-log ${localOn ? "on" : "off"} \xB7 ${localBuf.length}
|
|
9566
|
+
/* @__PURE__ */ jsx2(Text2, { backgroundColor: "#0b1530", color: "white", children: ` local-log ${localOn ? "on" : "off"} \xB7 ${localBuf.length} loc/${cloudBuf.length} cld \xB7 origin ${filter === "all" ? "all" : filter === "local" ? "LOC only" : "CLD only"} \xB7 top ${topTools.map(([t, c2]) => `${t}\xD7${c2}`).join(" ") || "\u2014"} ` }),
|
|
9567
9567
|
/* @__PURE__ */ jsx2(Text2, { backgroundColor: BG, color: "white", children: ` \u2191\u2193 select \xB7 enter full entry \xB7 f origin \xB7 / search \xB7 space copy \xB7 ? all keys \xB7 esc menu \xB7 q quit ` })
|
|
9568
9568
|
] })
|
|
9569
9569
|
] });
|
|
@@ -9613,7 +9613,7 @@ var init_Live = __esm({
|
|
|
9613
9613
|
["w", "whitelist the selected DENY (adds ALLOW rule)"],
|
|
9614
9614
|
["b", "block the selected ALLOW (adds DENY rule)"],
|
|
9615
9615
|
["d / x / r", "filter: denies / dlp hits / rate-limit bursts"],
|
|
9616
|
-
["f", "origin: all \u2192
|
|
9616
|
+
["f", "origin: all \u2192 LOC (this machine) \u2192 CLD (other devices)"],
|
|
9617
9617
|
["/", "live search (tool, agent, command\u2026) \xB7 enter done"],
|
|
9618
9618
|
["s", "session picker"],
|
|
9619
9619
|
["l", "layers detail (rate limit \xB7 dlp \xB7 ghost \xB7 guard)"],
|
|
@@ -11252,7 +11252,7 @@ function AuditPanel({ active: active2, focused }) {
|
|
|
11252
11252
|
/* @__PURE__ */ jsx7(Text7, { backgroundColor: BG2, color: "white", bold: true, children: " ENTRY " }),
|
|
11253
11253
|
/* @__PURE__ */ jsx7(Text7, { color: decisionColor(e.decision), bold: true, children: " " + e.decision }),
|
|
11254
11254
|
/* @__PURE__ */ jsx7(Text7, { color: theme.accent, bold: true, children: " " + e.tool }),
|
|
11255
|
-
/* @__PURE__ */ jsx7(Text7, { color: loc ? theme.ok : "white", children: " " + (loc ? "
|
|
11255
|
+
/* @__PURE__ */ jsx7(Text7, { color: loc ? theme.ok : "white", children: " " + (loc ? "LOC" : "CLD") }),
|
|
11256
11256
|
e.dlp.length ? /* @__PURE__ */ jsx7(Text7, { color: theme.bad, children: " DLP!" }) : null,
|
|
11257
11257
|
e.burst ? /* @__PURE__ */ jsx7(Text7, { color: theme.warn, children: " BURST" }) : null,
|
|
11258
11258
|
/* @__PURE__ */ jsx7(Text7, { color: theme.dim, children: " \u2190 back" })
|
package/dist/tui/components.d.ts
CHANGED
|
@@ -11,11 +11,11 @@ export declare function PaneTitle({ label, extra, width }: {
|
|
|
11
11
|
}): JSX.Element;
|
|
12
12
|
/**
|
|
13
13
|
* One tool-stream row, shared verbatim by Live (rolling buffer) and Audit (full
|
|
14
|
-
* history). `loc` tags where the call HAPPENED
|
|
15
|
-
* (another paired device).
|
|
16
|
-
*
|
|
17
|
-
*
|
|
18
|
-
* `selected` highlights + shows the ▸ cursor.
|
|
14
|
+
* history). `loc` tags where the call HAPPENED: LOC (this machine) vs CLD
|
|
15
|
+
* (another paired device). Note this is ORIGIN, not storage — a call made here
|
|
16
|
+
* reads LOC even when local logging is off and the record went to the cloud.
|
|
17
|
+
* The storage setting is spelled `local-log` in the footer so the two are not
|
|
18
|
+
* the same word. `selected` highlights + shows the ▸ cursor.
|
|
19
19
|
* Columns are fixed-width and NEVER conditional so scrolling can't reshuffle the
|
|
20
20
|
* line and glitch the frame.
|
|
21
21
|
*/
|
package/dist/tui/index.js
CHANGED
|
@@ -801,7 +801,7 @@ function StreamLine({ e, loc, selected, date }) {
|
|
|
801
801
|
hhmmss(e.at),
|
|
802
802
|
" "
|
|
803
803
|
] }),
|
|
804
|
-
/* @__PURE__ */ jsx(Text, { color: loc ? theme.ok : "white", children: loc ? "
|
|
804
|
+
/* @__PURE__ */ jsx(Text, { color: loc ? theme.ok : "white", children: loc ? "LOC" : "CLD" }),
|
|
805
805
|
/* @__PURE__ */ jsx(Text, { color: theme.dim, children: "] " }),
|
|
806
806
|
/* @__PURE__ */ jsx(Text, { color: decisionColor(e.decision), bold: e.decision !== "ALLOW", children: e.decision.padEnd(6) }),
|
|
807
807
|
/* @__PURE__ */ jsx(Text, { color: theme.accent, children: truncate(e.tool, 12).padEnd(13) }),
|
|
@@ -1746,7 +1746,7 @@ var LIVE_HELP = [
|
|
|
1746
1746
|
["w", "whitelist the selected DENY (adds ALLOW rule)"],
|
|
1747
1747
|
["b", "block the selected ALLOW (adds DENY rule)"],
|
|
1748
1748
|
["d / x / r", "filter: denies / dlp hits / rate-limit bursts"],
|
|
1749
|
-
["f", "origin: all \u2192
|
|
1749
|
+
["f", "origin: all \u2192 LOC (this machine) \u2192 CLD (other devices)"],
|
|
1750
1750
|
["/", "live search (tool, agent, command\u2026) \xB7 enter done"],
|
|
1751
1751
|
["s", "session picker"],
|
|
1752
1752
|
["l", "layers detail (rate limit \xB7 dlp \xB7 ghost \xB7 guard)"],
|
|
@@ -2347,7 +2347,7 @@ function LivePanel({ active: active2 }) {
|
|
|
2347
2347
|
/* @__PURE__ */ jsx2(Text2, { backgroundColor: BG, color: "white", bold: true, children: " ENTRY " }),
|
|
2348
2348
|
/* @__PURE__ */ jsx2(Text2, { color: decisionColor(e.decision), bold: true, children: " " + e.decision }),
|
|
2349
2349
|
/* @__PURE__ */ jsx2(Text2, { color: theme.accent, bold: true, children: " " + e.tool }),
|
|
2350
|
-
/* @__PURE__ */ jsx2(Text2, { color: isLoc(e) ? theme.ok : "white", children: " " + (isLoc(e) ? "
|
|
2350
|
+
/* @__PURE__ */ jsx2(Text2, { color: isLoc(e) ? theme.ok : "white", children: " " + (isLoc(e) ? "LOC" : "CLD") }),
|
|
2351
2351
|
e.dlp ? /* @__PURE__ */ jsx2(Text2, { color: theme.bad, children: " DLP!" }) : null,
|
|
2352
2352
|
e.burst ? /* @__PURE__ */ jsx2(Text2, { color: theme.warn, children: " BURST" }) : null,
|
|
2353
2353
|
/* @__PURE__ */ jsx2(Text2, { color: theme.dim, children: " \u2190 back" })
|
|
@@ -2672,13 +2672,13 @@ function LivePanel({ active: active2 }) {
|
|
|
2672
2672
|
filter === "all" ? /* @__PURE__ */ jsxs2(Text2, { color: theme.dim, children: [
|
|
2673
2673
|
spin,
|
|
2674
2674
|
" awaiting traffic\u2026"
|
|
2675
|
-
] }) : /* @__PURE__ */ jsx2(Text2, { color: theme.dim, children: `${spin} no ${filter === "local" ? "
|
|
2675
|
+
] }) : /* @__PURE__ */ jsx2(Text2, { color: theme.dim, children: `${spin} no ${filter === "local" ? "LOC (this machine)" : "CLD (other devices)"} calls in the buffer \xB7 f switches origin` })
|
|
2676
2676
|
) : null,
|
|
2677
2677
|
windowed.map((e, i) => /* @__PURE__ */ jsx2(StreamLine, { e, loc: isLoc(e), selected: clampedScroll + i === selClamped }, e.id))
|
|
2678
2678
|
] }),
|
|
2679
2679
|
/* @__PURE__ */ jsxs2(Text2, { wrap: "truncate", children: [
|
|
2680
2680
|
/* @__PURE__ */ jsx2(Text2, { backgroundColor: BG, color: "white", bold: true, children: " LIVE " }),
|
|
2681
|
-
/* @__PURE__ */ jsx2(Text2, { backgroundColor: "#0b1530", color: "white", children: ` local-log ${localOn ? "on" : "off"} \xB7 ${localBuf.length}
|
|
2681
|
+
/* @__PURE__ */ jsx2(Text2, { backgroundColor: "#0b1530", color: "white", children: ` local-log ${localOn ? "on" : "off"} \xB7 ${localBuf.length} loc/${cloudBuf.length} cld \xB7 origin ${filter === "all" ? "all" : filter === "local" ? "LOC only" : "CLD only"} \xB7 top ${topTools.map(([t, c2]) => `${t}\xD7${c2}`).join(" ") || "\u2014"} ` }),
|
|
2682
2682
|
/* @__PURE__ */ jsx2(Text2, { backgroundColor: BG, color: "white", children: ` \u2191\u2193 select \xB7 enter full entry \xB7 f origin \xB7 / search \xB7 space copy \xB7 ? all keys \xB7 esc menu \xB7 q quit ` })
|
|
2683
2683
|
] })
|
|
2684
2684
|
] });
|
|
@@ -4326,7 +4326,7 @@ function AuditPanel({ active: active2, focused }) {
|
|
|
4326
4326
|
/* @__PURE__ */ jsx7(Text7, { backgroundColor: BG2, color: "white", bold: true, children: " ENTRY " }),
|
|
4327
4327
|
/* @__PURE__ */ jsx7(Text7, { color: decisionColor(e.decision), bold: true, children: " " + e.decision }),
|
|
4328
4328
|
/* @__PURE__ */ jsx7(Text7, { color: theme.accent, bold: true, children: " " + e.tool }),
|
|
4329
|
-
/* @__PURE__ */ jsx7(Text7, { color: loc ? theme.ok : "white", children: " " + (loc ? "
|
|
4329
|
+
/* @__PURE__ */ jsx7(Text7, { color: loc ? theme.ok : "white", children: " " + (loc ? "LOC" : "CLD") }),
|
|
4330
4330
|
e.dlp.length ? /* @__PURE__ */ jsx7(Text7, { color: theme.bad, children: " DLP!" }) : null,
|
|
4331
4331
|
e.burst ? /* @__PURE__ */ jsx7(Text7, { color: theme.warn, children: " BURST" }) : null,
|
|
4332
4332
|
/* @__PURE__ */ jsx7(Text7, { color: theme.dim, children: " \u2190 back" })
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solongate/proxy",
|
|
3
|
-
"version": "0.83.
|
|
3
|
+
"version": "0.83.17",
|
|
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": {
|