/** * Baserow Node - Version 1 * Discriminator: resource=row, operation=get */ interface Credentials { baserowApi: CredentialReference; baserowTokenApi: CredentialReference; } /** Retrieve a row */ export type BaserowV1RowGetParams = { resource: 'row'; operation: 'get'; 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; /** * ID of the row to return */ rowId?: string | Expression | PlaceholderValue; }; export type BaserowV1RowGetNode = { type: 'n8n-nodes-base.baserow'; version: 1; credentials?: Credentials; config: NodeConfig; };