@solongate/proxy 0.81.92 → 0.81.93
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 +11 -6
- package/dist/tui/index.js +11 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10928,7 +10928,16 @@ function SettingsPanel({
|
|
|
10928
10928
|
);
|
|
10929
10929
|
lineKey.push("");
|
|
10930
10930
|
}
|
|
10931
|
-
|
|
10931
|
+
lineEls.push(/* @__PURE__ */ jsx7(Text7, { children: " " }, "ver-sp"));
|
|
10932
|
+
lineKey.push("");
|
|
10933
|
+
lineEls.push(
|
|
10934
|
+
/* @__PURE__ */ jsxs7(Text7, { wrap: "truncate", color: theme.dim, children: [
|
|
10935
|
+
`solongate v${ver}`,
|
|
10936
|
+
latest ? newerThan(latest, ver) ? /* @__PURE__ */ jsx7(Text7, { color: theme.warn, children: ` \xB7 v${latest} on npm \u2014 auto-updating` }) : /* @__PURE__ */ jsx7(Text7, { color: theme.ok, children: " \xB7 latest" }) : null
|
|
10937
|
+
] }, "ver")
|
|
10938
|
+
);
|
|
10939
|
+
lineKey.push("");
|
|
10940
|
+
const budget = Math.max(4, rows - 2);
|
|
10932
10941
|
const selLine = Math.max(0, lineKey.indexOf(keyOf(cur)));
|
|
10933
10942
|
const maxStart = Math.max(0, lineEls.length - budget);
|
|
10934
10943
|
const startL = Math.min(Math.max(0, selLine - Math.floor(budget / 2)), maxStart);
|
|
@@ -10941,11 +10950,7 @@ function SettingsPanel({
|
|
|
10941
10950
|
/* @__PURE__ */ jsx7(Text7, { color: theme.warn, children: editing === "path" ? "local log path: " : "webhook url: " }),
|
|
10942
10951
|
/* @__PURE__ */ jsx7(TextInput5, { value: input, onChange: setInput, onSubmit: submitInput })
|
|
10943
10952
|
] }) : msg ? /* @__PURE__ */ jsx7(Text7, { wrap: "truncate", color: msg.level === "bad" ? theme.bad : theme.ok, children: truncate2(msg.text, cols) }) : login?.msg ? /* @__PURE__ */ jsx7(Text7, { wrap: "truncate", color: login.phase === "error" ? theme.bad : theme.ok, children: login.msg }) : /* @__PURE__ */ jsx7(Text7, { children: " " }),
|
|
10944
|
-
/* @__PURE__ */ jsx7(Box7, { flexDirection: "column", height: budget, overflow: "hidden", children: win })
|
|
10945
|
-
/* @__PURE__ */ jsxs7(Text7, { wrap: "truncate", color: theme.dim, children: [
|
|
10946
|
-
`solongate v${ver}`,
|
|
10947
|
-
latest ? newerThan(latest, ver) ? /* @__PURE__ */ jsx7(Text7, { color: theme.warn, children: ` \xB7 v${latest} on npm \u2014 auto-updating` }) : /* @__PURE__ */ jsx7(Text7, { color: theme.ok, children: " \xB7 latest" }) : null
|
|
10948
|
-
] })
|
|
10953
|
+
/* @__PURE__ */ jsx7(Box7, { flexDirection: "column", height: budget, overflow: "hidden", children: win })
|
|
10949
10954
|
] }) });
|
|
10950
10955
|
}
|
|
10951
10956
|
var EVENTS, SPIN2, SIGNALS2, SIGNAL_LABEL, WINDOWS, winLabel, THRESH_MIN, THRESH_MAX, nearestWindowIdx, editorFieldCount, acctLabel, alertChannel;
|
package/dist/tui/index.js
CHANGED
|
@@ -4172,7 +4172,16 @@ function SettingsPanel({
|
|
|
4172
4172
|
);
|
|
4173
4173
|
lineKey.push("");
|
|
4174
4174
|
}
|
|
4175
|
-
|
|
4175
|
+
lineEls.push(/* @__PURE__ */ jsx7(Text7, { children: " " }, "ver-sp"));
|
|
4176
|
+
lineKey.push("");
|
|
4177
|
+
lineEls.push(
|
|
4178
|
+
/* @__PURE__ */ jsxs7(Text7, { wrap: "truncate", color: theme.dim, children: [
|
|
4179
|
+
`solongate v${ver}`,
|
|
4180
|
+
latest ? newerThan(latest, ver) ? /* @__PURE__ */ jsx7(Text7, { color: theme.warn, children: ` \xB7 v${latest} on npm \u2014 auto-updating` }) : /* @__PURE__ */ jsx7(Text7, { color: theme.ok, children: " \xB7 latest" }) : null
|
|
4181
|
+
] }, "ver")
|
|
4182
|
+
);
|
|
4183
|
+
lineKey.push("");
|
|
4184
|
+
const budget = Math.max(4, rows - 2);
|
|
4176
4185
|
const selLine = Math.max(0, lineKey.indexOf(keyOf(cur)));
|
|
4177
4186
|
const maxStart = Math.max(0, lineEls.length - budget);
|
|
4178
4187
|
const startL = Math.min(Math.max(0, selLine - Math.floor(budget / 2)), maxStart);
|
|
@@ -4185,11 +4194,7 @@ function SettingsPanel({
|
|
|
4185
4194
|
/* @__PURE__ */ jsx7(Text7, { color: theme.warn, children: editing === "path" ? "local log path: " : "webhook url: " }),
|
|
4186
4195
|
/* @__PURE__ */ jsx7(TextInput5, { value: input, onChange: setInput, onSubmit: submitInput })
|
|
4187
4196
|
] }) : msg ? /* @__PURE__ */ jsx7(Text7, { wrap: "truncate", color: msg.level === "bad" ? theme.bad : theme.ok, children: truncate(msg.text, cols) }) : login?.msg ? /* @__PURE__ */ jsx7(Text7, { wrap: "truncate", color: login.phase === "error" ? theme.bad : theme.ok, children: login.msg }) : /* @__PURE__ */ jsx7(Text7, { children: " " }),
|
|
4188
|
-
/* @__PURE__ */ jsx7(Box7, { flexDirection: "column", height: budget, overflow: "hidden", children: win })
|
|
4189
|
-
/* @__PURE__ */ jsxs7(Text7, { wrap: "truncate", color: theme.dim, children: [
|
|
4190
|
-
`solongate v${ver}`,
|
|
4191
|
-
latest ? newerThan(latest, ver) ? /* @__PURE__ */ jsx7(Text7, { color: theme.warn, children: ` \xB7 v${latest} on npm \u2014 auto-updating` }) : /* @__PURE__ */ jsx7(Text7, { color: theme.ok, children: " \xB7 latest" }) : null
|
|
4192
|
-
] })
|
|
4197
|
+
/* @__PURE__ */ jsx7(Box7, { flexDirection: "column", height: budget, overflow: "hidden", children: win })
|
|
4193
4198
|
] }) });
|
|
4194
4199
|
}
|
|
4195
4200
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solongate/proxy",
|
|
3
|
-
"version": "0.81.
|
|
3
|
+
"version": "0.81.93",
|
|
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": {
|