UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

38 lines (32 loc) 1.4 kB
/** * Filter Node - Version 2.1 * Keep only items matching a condition */ // Helper types for special n8n fields type FilterValue = { conditions: Array<{ leftValue: unknown; operator: { type: string; operation: string }; rightValue: unknown }> }; export interface FilterV21Params { conditions?: FilterValue; /** * If the type of an expression doesn't match the type of the comparison, n8n will try to cast the expression to the required type. E.g. for booleans &lt;code&gt;"false"&lt;/code&gt; or &lt;code&gt;0&lt;/code&gt; will be cast to &lt;code&gt;false&lt;/code&gt; * @default false */ looseTypeValidation?: boolean | Expression<boolean>; options?: { /** Whether to ignore letter case when evaluating conditions * @default true */ ignoreCase?: boolean | Expression<boolean>; /** If the type of an expression doesn't match the type of the comparison, n8n will try to cast the expression to the required type. E.g. for booleans &lt;code&gt;"false"&lt;/code&gt; or &lt;code&gt;0&lt;/code&gt; will be cast to &lt;code&gt;false&lt;/code&gt; * @default true */ looseTypeValidation?: boolean | Expression<boolean>; }; } interface FilterV21NodeBase { type: 'n8n-nodes-base.filter'; version: 2.1; } export type FilterV21ParamsNode = FilterV21NodeBase & { config: NodeConfig<FilterV21Params>; }; export type FilterV21Node = FilterV21ParamsNode;