n8n-nodes-base
Version:
Base nodes of n8n
38 lines (34 loc) • 1.26 kB
text/typescript
/**
* Coda Node - Version 1.1
* Discriminator: resource=view, operation=pushViewButton
*/
interface Credentials {
codaApi: CredentialReference;
}
/** Access data of views in documents */
export type CodaV11ViewPushViewButtonParams = {
resource: 'view';
operation: 'pushViewButton';
/**
* 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 view to get the row from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.
*/
viewId?: string | Expression<string>;
/**
* The view to get the row from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.
*/
rowId?: string | Expression<string>;
/**
* Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>
*/
columnId?: string | Expression<string>;
};
export type CodaV11ViewPushViewButtonNode = {
type: 'n8n-nodes-base.coda';
version: 1.1;
credentials?: Credentials;
config: NodeConfig<CodaV11ViewPushViewButtonParams>;
};