/** * Baserow Node - Version 1.1 * Discriminator: resource=row, operation=create */ interface Credentials { baserowApi: CredentialReference; baserowTokenApi: CredentialReference; } /** Create a row */ export type BaserowV11RowCreateParams = { resource: 'row'; operation: 'create'; authentication?: 'usernamePassword' | 'databaseToken' | Expression; /** * Database to operate on. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. * @displayOptions.hide { authentication: ["databaseToken"] } * @default 0 */ databaseId?: string | Expression; /** * Table to operate on. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ tableId?: string | Expression; /** * Whether to insert the input data this node receives in the new row * @default defineBelow */ dataToSend?: 'autoMapInputData' | 'defineBelow' | Expression; /** * List of input properties to avoid sending, separated by commas. Leave empty to send all properties. * @displayOptions.show { dataToSend: ["autoMapInputData"] } */ inputsToIgnore?: string | Expression | PlaceholderValue; /** * Fields to Send * @displayOptions.show { dataToSend: ["defineBelow"] } * @default {} */ fieldsUi?: { /** Field */ fieldValues?: Array<{ /** Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ fieldId?: string | Expression; /** Field Value */ fieldValue?: string | Expression | PlaceholderValue; }>; }; }; export type BaserowV11RowCreateNode = { type: 'n8n-nodes-base.baserow'; version: 1.1; credentials?: Credentials; config: NodeConfig; };