UNPKG

n8n

Version:

n8n Workflow Automation Tool

17 lines (16 loc) 577 B
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[]; }>; }