n8n
Version:
n8n Workflow Automation Tool
11 lines (10 loc) • 582 B
TypeScript
import type { RedactableExecution } from '../../../../executions/execution-redaction';
import type { IExecutionRedactionStrategy, RedactionContext } from '../execution-redaction.interfaces';
export declare class FullItemRedactionStrategy implements IExecutionRedactionStrategy {
readonly name = "full-item-redaction";
requiresRedaction(_execution: RedactableExecution, _context: RedactionContext): boolean;
apply(execution: RedactableExecution, context: RedactionContext): Promise<void>;
private redactConnections;
private redactItem;
private redactError;
}