mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-02-06 05:23:08 +00:00
15 lines
657 B
TypeScript
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
|