/** * Coda Node - Version 1 * Discriminator: resource=table, operation=deleteRow */ interface Credentials { codaApi: CredentialReference; } /** Access data of tables in documents */ export type CodaV1TableDeleteRowParams = { 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; /** * 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; /** * Row IDs to delete */ rowId?: string | Expression | PlaceholderValue; }; export type CodaV1TableDeleteRowNode = { type: 'n8n-nodes-base.coda'; version: 1; credentials?: Credentials; config: NodeConfig; };