@solongate/proxy 0.48.1 → 0.49.0

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.
@@ -0,0 +1,2 @@
1
+ import type { AuditData, CheckResult, DeepAnalysis } from '../types.js';
2
+ export declare function checkGoalHijacking(data: AuditData, deep?: DeepAnalysis): CheckResult;
@@ -0,0 +1,2 @@
1
+ import type { AuditData, CheckResult, DeepAnalysis } from '../types.js';
2
+ export declare function checkToolMisuse(data: AuditData, deep?: DeepAnalysis): CheckResult;
@@ -0,0 +1,2 @@
1
+ import type { AuditData, CheckResult, DeepAnalysis } from '../types.js';
2
+ export declare function checkIdentityAbuse(data: AuditData, deep?: DeepAnalysis): CheckResult;
@@ -0,0 +1,2 @@
1
+ import type { AuditData, CheckResult } from '../types.js';
2
+ export declare function checkSupplyChain(data: AuditData): CheckResult;
@@ -0,0 +1,2 @@
1
+ import type { AuditData, CheckResult, DeepAnalysis } from '../types.js';
2
+ export declare function checkCodeExecution(data: AuditData, deep?: DeepAnalysis): CheckResult;
@@ -0,0 +1,2 @@
1
+ import type { AuditData, CheckResult } from '../types.js';
2
+ export declare function checkMemoryPoisoning(data: AuditData): CheckResult;
@@ -0,0 +1,2 @@
1
+ import type { AuditData, CheckResult } from '../types.js';
2
+ export declare function checkInterAgent(data: AuditData): CheckResult;
@@ -0,0 +1,2 @@
1
+ import type { AuditData, CheckResult, DeepAnalysis } from '../types.js';
2
+ export declare function checkCascadingFailures(data: AuditData, deep?: DeepAnalysis): CheckResult;
@@ -0,0 +1,2 @@
1
+ import type { AuditData, CheckResult, DeepAnalysis } from '../types.js';
2
+ export declare function checkHumanTrust(data: AuditData, deep?: DeepAnalysis): CheckResult;
@@ -0,0 +1,2 @@
1
+ import type { AuditData, CheckResult, DeepAnalysis } from '../types.js';
2
+ export declare function checkRogueAgents(data: AuditData, deep?: DeepAnalysis): CheckResult;
@@ -0,0 +1,7 @@
1
+ import type { SessionInfo, SessionBaseline, SessionAnomaly, PermissionDrift, UnsolicitedAction } from '../types.js';
2
+ export declare function findUnsolicitedActions(sessions: SessionInfo[]): UnsolicitedAction[];
3
+ export declare function analyzeBaseline(sessions: SessionInfo[]): {
4
+ baselines: SessionBaseline[];
5
+ anomalies: SessionAnomaly[];
6
+ permissionDrifts: PermissionDrift[];
7
+ };
@@ -0,0 +1,2 @@
1
+ import type { SessionInfo, ChainMatch } from '../types.js';
2
+ export declare function analyzeChains(sessions: SessionInfo[]): ChainMatch[];
@@ -0,0 +1,2 @@
1
+ import type { SessionInfo, DataFlowLeak } from '../types.js';
2
+ export declare function analyzeDataFlow(sessions: SessionInfo[]): DataFlowLeak[];
@@ -0,0 +1,2 @@
1
+ import type { AuditData, CheckResult } from '../types.js';
2
+ export declare function runAllChecks(data: AuditData): CheckResult[];
@@ -0,0 +1,2 @@
1
+ import type { AuditData } from './types.js';
2
+ export declare function collectLogs(): AuditData;
@@ -0,0 +1,9 @@
1
+ interface Config {
2
+ customDirs: string[];
3
+ }
4
+ export declare function loadConfig(): Config;
5
+ export declare function addDir(dir: string): void;
6
+ export declare function removeDir(dir: string): void;
7
+ export declare function listDirs(): void;
8
+ export declare function searchLogs(): void;
9
+ export {};
@@ -0,0 +1,12 @@
1
+ import type { AuditData, CheckResult } from './types.js';
2
+ interface ExportPayload {
3
+ data: AuditData;
4
+ results: CheckResult[];
5
+ }
6
+ export declare function exportJSON({ data, results }: ExportPayload): string;
7
+ export declare function exportCSV({ data }: ExportPayload): string;
8
+ export declare function exportHTML({ data, results }: ExportPayload): string;
9
+ export declare function exportPDF(payload: ExportPayload): string;
10
+ export declare function exportAll(payload: ExportPayload): string[];
11
+ export declare function runExport(format: string, payload: ExportPayload): void;
12
+ export {};
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ export {};