refactor(core): Use IWorkflowBase over WorkflowEntity in most places (#13225)

This commit is contained in:
Tomi Turtiainen
2025-02-13 10:54:11 +02:00
committed by GitHub
parent 11cf1cd23a
commit f001edb2a2
54 changed files with 190 additions and 192 deletions

View File

@@ -5,9 +5,9 @@ import type {
IRunData,
StartNodeData,
ITaskData,
IWorkflowBase,
} from 'n8n-workflow';
import type { IWorkflowDb } from '@/interfaces';
import type { AuthenticatedRequest, ListQuery } from '@/requests';
export declare namespace WorkflowRequest {
@@ -25,7 +25,7 @@ export declare namespace WorkflowRequest {
}>;
type ManualRunPayload = {
workflowData: IWorkflowDb;
workflowData: IWorkflowBase;
runData: IRunData;
startNodes?: StartNodeData[];
destinationNode?: string;