n8n-nodes-base
Version:
Base nodes of n8n
34 lines (30 loc) • 948 B
text/typescript
/**
* Coda Node - Version 1.1
* Discriminator: resource=table, operation=deleteRow
*/
interface Credentials {
codaApi: CredentialReference;
}
/** Access data of tables in documents */
export type CodaV11TableDeleteRowParams = {
resource: 'table';
operation: 'deleteRow';
/**
* ID of the doc. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.
*/
docId?: string | Expression<string>;
/**
* The table to delete the row in. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.
*/
tableId?: string | Expression<string>;
/**
* Row IDs to delete
*/
rowId?: string | Expression<string> | PlaceholderValue;
};
export type CodaV11TableDeleteRowNode = {
type: 'n8n-nodes-base.coda';
version: 1.1;
credentials?: Credentials;
config: NodeConfig<CodaV11TableDeleteRowParams>;
};