n8n-nodes-base
Version:
Base nodes of n8n
34 lines (30 loc) • 908 B
text/typescript
/**
* Baserow Node - Version 1
* Discriminator: resource=row, operation=get
*/
interface Credentials {
baserowApi: CredentialReference;
}
/** Retrieve a row */
export type BaserowV1RowGetParams = {
resource: 'row';
operation: 'get';
/**
* 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 return
*/
rowId?: string | Expression<string> | PlaceholderValue;
};
export type BaserowV1RowGetNode = {
type: 'n8n-nodes-base.baserow';
version: 1;
credentials?: Credentials;
config: NodeConfig<BaserowV1RowGetParams>;
};