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-inputs-wrong-regular-node required the parameter inputs 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:
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:
MaSpeng
changed the title
Bug Replace with "['main'"] in node-class-description-inputs-wrong-regular-node
Bug Replace with "['main']" in node-class-description-inputs-wrong-regular-nodeOct 14, 2024
The rule
node-class-description-inputs-wrong-regular-node
required the parameterinputs
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: