@solongate/proxy 0.81.24 → 0.81.26
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/audit.d.ts +13 -0
- package/dist/commands/index.js +8 -0
- package/dist/index.js +253 -256
- package/dist/tui/hooks.d.ts +3 -0
- package/dist/tui/index.js +209 -201
- package/dist/tui/local-log.d.ts +4 -0
- package/package.json +1 -1
- package/dist/tui/panels/Agents.d.ts +0 -4
- package/dist/tui/panels/Stats.d.ts +0 -3
package/dist/tui/local-log.d.ts
CHANGED
|
@@ -17,6 +17,10 @@ export interface LocalLogLine {
|
|
|
17
17
|
matched_rule_id?: string;
|
|
18
18
|
rate_limit_burst?: boolean;
|
|
19
19
|
}
|
|
20
|
+
/** Delete ONE matching line (ts + tool [+ session]) from the local log file. */
|
|
21
|
+
export declare function deleteLocalEntry(at: number, tool: string, session?: string | null): number;
|
|
22
|
+
/** Empty the local log file. Returns how many lines were removed. */
|
|
23
|
+
export declare function clearLocalLog(): number;
|
|
20
24
|
export declare function parseLocalLines(lines: string[]): Array<LocalLogLine & {
|
|
21
25
|
at: number;
|
|
22
26
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solongate/proxy",
|
|
3
|
-
"version": "0.81.
|
|
3
|
+
"version": "0.81.26",
|
|
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": {
|