/** * SeaTable Node - Version 2 * Discriminator: resource=row, operation=update */ interface Credentials { seaTableApi: CredentialReference; } /** Update the content of a row */ export type SeaTableV2RowUpdateParams = { resource: 'row'; operation: 'update'; /** * 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> * @displayOptions.hide { operation: ["create", "list", "search"] } */ rowId?: string | Expression; /** * Whether to insert the input data this node receives in the new row * @default defineBelow */ fieldsToSend?: 'autoMapInputData' | 'defineBelow' | Expression; /** * List of input properties to avoid sending, separated by commas. Leave empty to send all properties. * @displayOptions.show { fieldsToSend: ["autoMapInputData"] } */ inputsToIgnore?: string | Expression | PlaceholderValue; /** * Add destination column with its value. Provide the value in this way:Date: YYYY-MM-DD or YYYY-MM-DD hh:mmDuration: time in secondsCheckbox: true, on or 1Multi-Select: comma-separated list. * @displayOptions.show { fieldsToSend: ["defineBelow"] } * @default {} */ columnsUi?: { /** Column */ columnValues?: Array<{ /** Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ columnName?: string | Expression; /** Column Value */ columnValue?: string | Expression | PlaceholderValue; }>; }; }; export type SeaTableV2RowUpdateNode = { type: 'n8n-nodes-base.seaTable'; version: 2; credentials?: Credentials; config: NodeConfig; };