anomaly-express
Version:
Anomaly Express is a security framework for Express.js that provides a set of tools and utilities to help you build secure applications.
15 lines • 420 B
TypeScript
import { ResultFromCheckingFunction } from "./Policy";
export interface RequestCollectionDataFromSDK {
timestamp: number;
url: string;
method: string;
headers: string;
body: string;
ipAddress: string;
statusCode: number;
duration_ms: number;
anomaly: null | ResultFromCheckingFunction;
detected_by_policy_id: string;
blocked: number;
}
//# sourceMappingURL=Collection.d.ts.map