/** * Coda Node - Version 1.1 * Discriminator: resource=view, operation=get */ interface Credentials { codaApi: CredentialReference; } /** Access data of views in documents */ export type CodaV11ViewGetParams = { resource: 'view'; 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 view to get the row from */ viewId?: string | Expression | PlaceholderValue; }; export type CodaV11ViewGetOutput = { href?: string; items?: Array<{ browserLink?: string; href?: string; id?: string; name?: string; parent?: { browserLink?: string; href?: string; id?: string; name?: string; type?: string; }; tableType?: string; type?: string; }>; }; export type CodaV11ViewGetNode = { type: 'n8n-nodes-base.coda'; version: 1.1; credentials?: Credentials; config: NodeConfig; output?: Items; };