UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

34 lines (30 loc) 921 B
/** * Baserow Node - Version 1 * Discriminator: resource=row, operation=delete */ interface Credentials { baserowApi: CredentialReference; } /** Delete a row */ export type BaserowV1RowDeleteParams = { resource: 'row'; operation: 'delete'; /** * Database to operate on. Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt;. */ databaseId?: string | Expression<string>; /** * Table to operate on. Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt;. */ tableId?: string | Expression<string>; /** * ID of the row to delete */ rowId?: string | Expression<string> | PlaceholderValue; }; export type BaserowV1RowDeleteNode = { type: 'n8n-nodes-base.baserow'; version: 1; credentials?: Credentials; config: NodeConfig<BaserowV1RowDeleteParams>; };