/** * SeaTable Node - Version 2 * Discriminator: resource=row, operation=create */ interface Credentials { seaTableApi: CredentialReference; } /** Create a new row */ export type SeaTableV2RowCreateParams = { resource: 'row'; operation: 'create'; /** * 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; /** * Whether to insert the input data this node receives in the new row * @default defineBelow */ fieldsToSend?: 'autoMapInputData' | 'defineBelow' | Expression; /** * Whether to use the column default values to populate new rows during creation (only available for normal backend) * @displayOptions.show { bigdata: [false] } * @default false */ apply_default?: boolean | 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:mm. Duration: time in seconds. Checkbox: true, on or 1. Multi-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; }>; }; /** * Whether write to Big Data backend (true) or not (false). True requires the activation of the Big Data backend in the base. * @default false */ bigdata?: boolean | Expression; }; export type SeaTableV2RowCreateOutput = { _creator?: string; _ctime?: string; _id?: string; _last_modifier?: string; _mtime?: string; }; export type SeaTableV2RowCreateNode = { type: 'n8n-nodes-base.seaTable'; version: 2; credentials?: Credentials; config: NodeConfig; output?: Items; };