/** * NocoDB Node - Version 2 * Discriminator: resource=row, operation=get */ interface Credentials { nocoDb: CredentialReference; nocoDbApiToken: CredentialReference; } /** Retrieve a row */ export type NocoDbV2RowGetParams = { resource: 'row'; operation: 'get'; authentication?: 'nocoDbApiToken' | 'nocoDb' | Expression; /** * API Version * @default 2 */ version?: 1 | 2 | 3 | Expression; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> * @displayOptions.show { version: [3] } * @default none */ workspaceId?: string | Expression; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> * @displayOptions.show { version: [3, 1, 2] } */ projectId?: string | Expression; /** * The table to operate on. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. * @displayOptions.show { version: [2, 3, 1] } */ table?: string | Expression; /** * The value of the ID field * @displayOptions.show { version: [1, 2, 3] } */ id?: string | Expression | PlaceholderValue; /** * Whether the attachment fields define in 'Download Fields' will be downloaded * @default false */ downloadAttachments?: boolean | Expression; /** * Name of the fields of type 'attachment' that should be downloaded. Multiple ones can be defined separated by comma. Case sensitive. * @displayOptions.show { downloadAttachments: [true] } */ downloadFieldNames?: string | Expression | PlaceholderValue; }; export type NocoDbV2RowGetNode = { type: 'n8n-nodes-base.nocoDb'; version: 2; credentials?: Credentials; config: NodeConfig; };