@solongate/proxy 0.81.69 → 0.81.71
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/api-client/client.d.ts +8 -0
- package/dist/global-install.d.ts +1 -0
- package/dist/global-install.js +10 -1
- package/dist/index.js +597 -559
- package/dist/login.js +1 -1
- package/dist/tui/components.d.ts +31 -0
- package/dist/tui/index.js +233 -173
- package/dist/tui/panels/Settings.d.ts +4 -1
- package/package.json +1 -1
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { type SavedAccount } from '../../api-client/client.js';
|
|
2
|
-
export declare function SettingsPanel({ active, focused, viewApiKey, onView, }: {
|
|
2
|
+
export declare function SettingsPanel({ active, focused, viewApiKey, onView, onAccountsChanged, }: {
|
|
3
3
|
active: boolean;
|
|
4
4
|
focused: boolean;
|
|
5
5
|
viewApiKey?: string;
|
|
6
6
|
onView?: (acc: SavedAccount) => void;
|
|
7
|
+
/** Fired after this panel mutates the on-disk account set so the App shell can
|
|
8
|
+
* re-derive its header / view / locked state from disk. */
|
|
9
|
+
onAccountsChanged?: () => void;
|
|
7
10
|
}): JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solongate/proxy",
|
|
3
|
-
"version": "0.81.
|
|
3
|
+
"version": "0.81.71",
|
|
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": {
|