n8n-nodes-base
Version:
Base nodes of n8n
34 lines (30 loc) • 1.01 kB
text/typescript
/**
* SeaTable Node - Version 2
* Discriminator: resource=link, operation=list
*/
interface Credentials {
seaTableApi: CredentialReference;
}
/** Get many rows from a table or a table view */
export type SeaTableV2LinkListParams = {
resource: 'link';
operation: 'list';
/**
* Choose from the list, of specify by using an expression. Provide it in the way "table_name:::table_id".
*/
tableName?: string | Expression<string>;
/**
* Choose from the list of specify the Link Column by using an expression. You have to provide it in the way "column_name:::link_id:::other_table_id:::column_key".
*/
linkColumn?: string | Expression<string>;
/**
* Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>
*/
rowId?: string | Expression<string>;
};
export type SeaTableV2LinkListNode = {
type: 'n8n-nodes-base.seaTable';
version: 2;
credentials?: Credentials;
config: NodeConfig<SeaTableV2LinkListParams>;
};