@solongate/proxy 0.81.57 → 0.81.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.
package/dist/index.js
CHANGED
|
@@ -7719,7 +7719,7 @@ function useTermSize() {
|
|
|
7719
7719
|
function usePanelSize() {
|
|
7720
7720
|
const { cols, rows } = useTermSize();
|
|
7721
7721
|
const wide = cols >= 82;
|
|
7722
|
-
const shellRows = wide ?
|
|
7722
|
+
const shellRows = wide ? 16 : 10;
|
|
7723
7723
|
return { cols: Math.max(30, cols - 22), rows: Math.max(8, rows - shellRows) };
|
|
7724
7724
|
}
|
|
7725
7725
|
var init_hooks = __esm({
|
|
@@ -10581,6 +10581,10 @@ function SettingsPanel({
|
|
|
10581
10581
|
rowsAll.forEach((r) => {
|
|
10582
10582
|
const sec = sectionOf(r);
|
|
10583
10583
|
if (sec !== lastSec) {
|
|
10584
|
+
if (lastSec) {
|
|
10585
|
+
lineEls.push(/* @__PURE__ */ jsx7(Text7, { children: " " }, "sp:" + sec));
|
|
10586
|
+
lineKey.push("");
|
|
10587
|
+
}
|
|
10584
10588
|
lastSec = sec;
|
|
10585
10589
|
lineEls.push(
|
|
10586
10590
|
/* @__PURE__ */ jsxs7(Text7, { wrap: "truncate", children: [
|
|
@@ -10589,6 +10593,12 @@ function SettingsPanel({
|
|
|
10589
10593
|
] }, "h:" + sec)
|
|
10590
10594
|
);
|
|
10591
10595
|
lineKey.push("");
|
|
10596
|
+
if ((sec === "WEBHOOKS" || sec === "ALERTS") && local?.enabled) {
|
|
10597
|
+
lineEls.push(
|
|
10598
|
+
/* @__PURE__ */ jsx7(Text7, { wrap: "truncate", color: theme.warn, children: ` \u26A0 local logs on \u2014 real denials stay on this machine, so ${sec.toLowerCase()} do NOT fire (t test still works)` }, "warn:" + sec)
|
|
10599
|
+
);
|
|
10600
|
+
lineKey.push("");
|
|
10601
|
+
}
|
|
10592
10602
|
}
|
|
10593
10603
|
lineEls.push(/* @__PURE__ */ jsx7(Box7, { children: rowLine(r) }, keyOf(r)));
|
|
10594
10604
|
lineKey.push(keyOf(r));
|
package/dist/tui/index.js
CHANGED
|
@@ -817,7 +817,7 @@ function useTermSize() {
|
|
|
817
817
|
function usePanelSize() {
|
|
818
818
|
const { cols, rows } = useTermSize();
|
|
819
819
|
const wide = cols >= 82;
|
|
820
|
-
const shellRows = wide ?
|
|
820
|
+
const shellRows = wide ? 16 : 10;
|
|
821
821
|
return { cols: Math.max(30, cols - 22), rows: Math.max(8, rows - shellRows) };
|
|
822
822
|
}
|
|
823
823
|
|
|
@@ -3708,6 +3708,10 @@ function SettingsPanel({
|
|
|
3708
3708
|
rowsAll.forEach((r) => {
|
|
3709
3709
|
const sec = sectionOf(r);
|
|
3710
3710
|
if (sec !== lastSec) {
|
|
3711
|
+
if (lastSec) {
|
|
3712
|
+
lineEls.push(/* @__PURE__ */ jsx7(Text7, { children: " " }, "sp:" + sec));
|
|
3713
|
+
lineKey.push("");
|
|
3714
|
+
}
|
|
3711
3715
|
lastSec = sec;
|
|
3712
3716
|
lineEls.push(
|
|
3713
3717
|
/* @__PURE__ */ jsxs7(Text7, { wrap: "truncate", children: [
|
|
@@ -3716,6 +3720,12 @@ function SettingsPanel({
|
|
|
3716
3720
|
] }, "h:" + sec)
|
|
3717
3721
|
);
|
|
3718
3722
|
lineKey.push("");
|
|
3723
|
+
if ((sec === "WEBHOOKS" || sec === "ALERTS") && local?.enabled) {
|
|
3724
|
+
lineEls.push(
|
|
3725
|
+
/* @__PURE__ */ jsx7(Text7, { wrap: "truncate", color: theme.warn, children: ` \u26A0 local logs on \u2014 real denials stay on this machine, so ${sec.toLowerCase()} do NOT fire (t test still works)` }, "warn:" + sec)
|
|
3726
|
+
);
|
|
3727
|
+
lineKey.push("");
|
|
3728
|
+
}
|
|
3719
3729
|
}
|
|
3720
3730
|
lineEls.push(/* @__PURE__ */ jsx7(Box7, { children: rowLine(r) }, keyOf(r)));
|
|
3721
3731
|
lineKey.push(keyOf(r));
|
|
@@ -6,3 +6,12 @@
|
|
|
6
6
|
{"ms":4,"ts":1784137524268,"tool":"Bash","session":"4aefeb66-3bff-4335-b710-e4f70d3adadf"}
|
|
7
7
|
{"ms":5,"ts":1784138159970,"tool":"Bash","session":"4aefeb66-3bff-4335-b710-e4f70d3adadf"}
|
|
8
8
|
{"ms":2,"ts":1784138167398,"tool":"Bash","session":"4aefeb66-3bff-4335-b710-e4f70d3adadf"}
|
|
9
|
+
{"ms":3,"ts":1784325350846,"tool":"Bash","session":"f5933c65-c315-4440-9afb-7136fce6b695"}
|
|
10
|
+
{"ms":6,"ts":1784325372017,"tool":"Bash","session":"f5933c65-c315-4440-9afb-7136fce6b695"}
|
|
11
|
+
{"ms":3,"ts":1784325440597,"tool":"AskUserQuestion","session":"f5933c65-c315-4440-9afb-7136fce6b695"}
|
|
12
|
+
{"ms":4,"ts":1784325486162,"tool":"Bash","session":"f5933c65-c315-4440-9afb-7136fce6b695"}
|
|
13
|
+
{"ms":2,"ts":1784325515528,"tool":"AskUserQuestion","session":"f5933c65-c315-4440-9afb-7136fce6b695"}
|
|
14
|
+
{"ms":3,"ts":1784326355922,"tool":"Bash","session":"f5933c65-c315-4440-9afb-7136fce6b695"}
|
|
15
|
+
{"ms":2,"ts":1784326365762,"tool":"Bash","session":"f5933c65-c315-4440-9afb-7136fce6b695"}
|
|
16
|
+
{"ms":3,"ts":1784326398280,"tool":"Edit","session":"f5933c65-c315-4440-9afb-7136fce6b695"}
|
|
17
|
+
{"ms":1,"ts":1784326403539,"tool":"Bash","session":"f5933c65-c315-4440-9afb-7136fce6b695"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"ms":
|
|
1
|
+
{"ms":1,"ts":1784326403539,"tool":"Bash","session":"f5933c65-c315-4440-9afb-7136fce6b695"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
1784326398329
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solongate/proxy",
|
|
3
|
-
"version": "0.81.
|
|
3
|
+
"version": "0.81.59",
|
|
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": {
|