chore: add pre-built dist folder for npx usage

This commit is contained in:
thesved
2025-12-04 20:22:02 +02:00
committed by Romuald Członkowski
parent a70d96a373
commit 5057481e70
716 changed files with 48021 additions and 0 deletions

20
dist/telemetry/mutation-validator.d.ts vendored Normal file
View 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