Files
n8n-mcp/dist/telemetry/mutation-tracker.d.ts
2025-12-05 12:01:31 +01:00

15 lines
657 B
TypeScript

import { WorkflowMutationData, WorkflowMutationRecord } from './mutation-types.js';
export declare class MutationTracker {
private recentMutations;
private readonly RECENT_MUTATIONS_LIMIT;
processMutation(data: WorkflowMutationData, userId: string): Promise<WorkflowMutationRecord | null>;
private validateMutationData;
private calculateChangeMetrics;
private calculateValidationMetrics;
private extractOperationTypes;
private addToRecentMutations;
clearRecentMutations(): void;
getRecentMutationsCount(): number;
}
export declare const mutationTracker: MutationTracker;
//# sourceMappingURL=mutation-tracker.d.ts.map