/** * Coda Node - Version 1.1 * Discriminator: resource=control, operation=get */ interface Credentials { codaApi: CredentialReference; } /** Controls provide a user-friendly way to input a value that can affect other parts of the doc */ export type CodaV11ControlGetParams = { resource: 'control'; 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 control to get the row from */ controlId?: string | Expression | PlaceholderValue; }; export type CodaV11ControlGetNode = { type: 'n8n-nodes-base.coda'; version: 1.1; credentials?: Credentials; config: NodeConfig; };