n8n-nodes-base
Version:
Base nodes of n8n
34 lines (30 loc) • 921 B
text/typescript
/**
* 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 <a href="https://docs.n8n.io/code/expressions/">expression</a>.
*/
databaseId?: string | Expression<string>;
/**
* 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<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>;
};