mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-02-06 05:23:08 +00:00
chore: add pre-built dist folder for npx usage
This commit is contained in:
committed by
Romuald Członkowski
parent
a70d96a373
commit
5057481e70
20
dist/telemetry/mutation-validator.d.ts
vendored
Normal file
20
dist/telemetry/mutation-validator.d.ts
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
import { WorkflowMutationData, MutationDataQualityResult, MutationTrackingOptions } from './mutation-types.js';
|
||||
export declare const DEFAULT_MUTATION_TRACKING_OPTIONS: Required<MutationTrackingOptions>;
|
||||
export declare class MutationValidator {
|
||||
private options;
|
||||
constructor(options?: MutationTrackingOptions);
|
||||
validate(data: WorkflowMutationData): MutationDataQualityResult;
|
||||
private isValidWorkflow;
|
||||
private getWorkflowSizeKb;
|
||||
private hasMeaningfulChange;
|
||||
hashWorkflow(workflow: any): string;
|
||||
shouldExclude(data: WorkflowMutationData): boolean;
|
||||
isDuplicate(workflowBefore: any, workflowAfter: any, operations: any[], recentMutations: Array<{
|
||||
hashBefore: string;
|
||||
hashAfter: string;
|
||||
operations: any[];
|
||||
}>): boolean;
|
||||
private hashOperations;
|
||||
}
|
||||
export declare const mutationValidator: MutationValidator;
|
||||
//# sourceMappingURL=mutation-validator.d.ts.map
|
||||
Reference in New Issue
Block a user