@solongate/proxy 0.81.19 → 0.81.21
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/settings.d.ts +16 -0
- package/dist/commands/index.js +17 -1
- package/dist/index.js +539 -92
- package/dist/tui/hooks.d.ts +14 -0
- package/dist/tui/index.js +526 -91
- package/dist/tui/panels/Settings.d.ts +4 -0
- package/dist/tui/theme.d.ts +4 -0
- package/package.json +1 -1
package/dist/tui/theme.d.ts
CHANGED
|
@@ -11,5 +11,9 @@ export declare function decisionColor(decision: string): string;
|
|
|
11
11
|
/** Ink `color` for a layer/agent mode/status. */
|
|
12
12
|
export declare function modeColor(m: string): string;
|
|
13
13
|
export declare function sparkline(values: number[], width?: number): string;
|
|
14
|
+
/** Pretty-print a JSON string; non-JSON comes back unchanged. */
|
|
15
|
+
export declare function prettyJson(s: string): string;
|
|
16
|
+
/** Hard-wrap text to `width` columns (existing newlines preserved). */
|
|
17
|
+
export declare function wrapLines(s: string, width: number): string[];
|
|
14
18
|
export declare function truncate(s: string, n: number): string;
|
|
15
19
|
export declare function ago(ts: string | number): string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solongate/proxy",
|
|
3
|
-
"version": "0.81.
|
|
3
|
+
"version": "0.81.21",
|
|
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": {
|