/** * SeaTable Node - Version 2 * Discriminator: resource=row, operation=search */ interface Credentials { seaTableApi: CredentialReference; } /** Search one or multiple rows */ export type SeaTableV2RowSearchParams = { resource: 'row'; operation: 'search'; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ tableName?: string | Expression; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ rowId?: string | Expression; /** * Select the column to be searched. Not all column types are supported for search. Choose from the list, or specify a name using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>. */ searchColumn?: string | Expression; /** * What to look for? */ searchTerm?: string | Expression | PlaceholderValue; /** * Options * @default {} */ options?: { /** Whether the search ignores case sensitivity (true). Otherwise, it distinguishes between uppercase and lowercase characters. * @default false */ insensitive?: boolean | Expression; /** Whether the search only results perfect matches (true). Otherwise, it finds a row even if the search value is part of a string (false). * @default true */ wildcard?: boolean | Expression; /** Whether to return a simplified version of the response instead of the raw data * @default true */ simple?: boolean | Expression; /** Whether to return the column keys (false) or the column names (true) * @default true */ convert?: boolean | Expression; }; }; export type SeaTableV2RowSearchNode = { type: 'n8n-nodes-base.seaTable'; version: 2; credentials?: Credentials; config: NodeConfig; };