mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-01-30 06:22:04 +00:00
9 lines
375 B
TypeScript
9 lines
375 B
TypeScript
export declare class IntentSanitizer {
|
|
sanitize(intent: string): string;
|
|
containsPII(intent: string): boolean;
|
|
detectPIITypes(intent: string): string[];
|
|
truncate(intent: string, maxLength?: number): string;
|
|
isSafeForTelemetry(intent: string): boolean;
|
|
}
|
|
export declare const intentSanitizer: IntentSanitizer;
|
|
//# sourceMappingURL=intent-sanitizer.d.ts.map
|