@n8n-plus/n8n-plus
Version:
n8n Workflow Automation Tool (plus edition)
17 lines (16 loc) • 577 B
TypeScript
import type { BreakingChangeInstanceIssue, BreakingChangeRecommendation, BreakingChangeWorkflowIssue } from '@n8n/api-types';
export interface WorkflowDetectionReport {
isAffected: boolean;
issues: BreakingChangeWorkflowIssue[];
}
export interface InstanceDetectionReport {
isAffected: boolean;
instanceIssues: BreakingChangeInstanceIssue[];
recommendations: BreakingChangeRecommendation[];
}
export interface BatchWorkflowDetectionReport {
affectedWorkflows: Array<{
workflowId: string;
issues: BreakingChangeWorkflowIssue[];
}>;
}