n8n-nodes-base
Version:
Base nodes of n8n
31 lines (27 loc) • 850 B
text/typescript
/**
* SeaTable Node - Version 2
* Discriminator: resource=row, operation=remove
*/
interface Credentials {
seaTableApi: CredentialReference;
}
/** Delete a row */
export type SeaTableV2RowRemoveParams = {
resource: 'row';
operation: 'remove';
/**
* Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>
*/
tableName?: string | Expression<string>;
/**
* Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>
* @displayOptions.hide { operation: ["create", "list", "search"] }
*/
rowId?: string | Expression<string>;
};
export type SeaTableV2RowRemoveNode = {
type: 'n8n-nodes-base.seaTable';
version: 2;
credentials?: Credentials;
config: NodeConfig<SeaTableV2RowRemoveParams>;
};