You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The rule node-class-description-outputs-wrong required the parameter outputs to contain a entry called main.
The INodeTypeDescription interface from n8n-workflow has been updated and expects the parameter inputs to now contain Array<NodeConnectionType | INodeInputConfiguration> | ExpressionString.
NodeConnectionType is a enum which contains Main as property and is declared as:
The rule
node-class-description-outputs-wrong
required the parameteroutputs
to contain a entry calledmain
.The
INodeTypeDescription
interface fromn8n-workflow
has been updated and expects the parameterinputs
to now containArray<NodeConnectionType | INodeInputConfiguration> | ExpressionString
.NodeConnectionType
is a enum which containsMain
as property and is declared as:This means that:
Has to be changed to:
This should be reflected by the rule/autofixer, depending on the existence of the mentioned const.
The text was updated successfully, but these errors were encountered: