/** * Coda Node - Version 1.1 * Discriminator: resource=formula, operation=get */ interface Credentials { codaApi: CredentialReference; } /** Formulas can be great for performing one-off computations */ export type CodaV11FormulaGetParams = { resource: 'formula'; operation: 'get'; /** * 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 formula to get the row from */ formulaId?: string | Expression | PlaceholderValue; }; export type CodaV11FormulaGetNode = { type: 'n8n-nodes-base.coda'; version: 1.1; credentials?: Credentials; config: NodeConfig; };