@solongate/proxy 0.82.85 → 0.82.86
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 +1 -1
- package/dist/tui/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -12193,7 +12193,7 @@ function App() {
|
|
|
12193
12193
|
setViewKey(next?.apiKey);
|
|
12194
12194
|
setViewNonce((n) => n + 1);
|
|
12195
12195
|
};
|
|
12196
|
-
const locked = accounts.length === 0;
|
|
12196
|
+
const locked = accounts.length === 0 || !isAuthenticated();
|
|
12197
12197
|
const effectiveSection = locked ? SETTINGS_SECTION : section;
|
|
12198
12198
|
useInput8((input, key) => {
|
|
12199
12199
|
if (help) {
|
package/dist/tui/index.js
CHANGED
|
@@ -5386,7 +5386,7 @@ function App() {
|
|
|
5386
5386
|
setViewKey(next?.apiKey);
|
|
5387
5387
|
setViewNonce((n) => n + 1);
|
|
5388
5388
|
};
|
|
5389
|
-
const locked = accounts.length === 0;
|
|
5389
|
+
const locked = accounts.length === 0 || !isAuthenticated();
|
|
5390
5390
|
const effectiveSection = locked ? SETTINGS_SECTION : section;
|
|
5391
5391
|
useInput8((input, key) => {
|
|
5392
5392
|
if (help) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solongate/proxy",
|
|
3
|
-
"version": "0.82.
|
|
3
|
+
"version": "0.82.86",
|
|
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": {
|