fix: Fix sending pin data twice causing payload too large errors (#9710)

This commit is contained in:
Tomi Turtiainen
2024-06-12 15:11:39 +03:00
committed by GitHub
parent e08b4337c9
commit 6c1a4c8ebf
5 changed files with 14 additions and 22 deletions

View File

@@ -1,13 +1,6 @@
import type { IWorkflowDb } from '@/Interfaces';
import type { AuthenticatedRequest, ListQuery } from '@/requests';
import type {
INode,
IConnections,
IWorkflowSettings,
IRunData,
IPinData,
StartNodeData,
} from 'n8n-workflow';
import type { INode, IConnections, IWorkflowSettings, IRunData, StartNodeData } from 'n8n-workflow';
export declare namespace WorkflowRequest {
type CreateUpdatePayload = Partial<{
@@ -26,7 +19,6 @@ export declare namespace WorkflowRequest {
type ManualRunPayload = {
workflowData: IWorkflowDb;
runData: IRunData;
pinData: IPinData;
startNodes?: StartNodeData[];
destinationNode?: string;
};