/** * Coda Node - Version 1.1 * Discriminator: resource=table, operation=createRow */ interface Credentials { codaApi: CredentialReference; } /** Access data of tables in documents */ export type CodaV11TableCreateRowParams = { resource: 'table'; operation: 'createRow'; /** * 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 table to create the row in. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ tableId?: string | Expression; /** * Options * @default {} */ options?: { /** Whether the API will not attempt to parse the data in any way * @default false */ disableParsing?: boolean | Expression; /** Optional column IDs, URLs, or names (fragile and discouraged), specifying columns to be used as upsert keys. If more than one separate by a comma (,). */ keyColumns?: string | Expression | PlaceholderValue; }; }; export type CodaV11TableCreateRowOutput = { InboundMessage?: string; LeadEmail?: string; LeadID?: string; LeadLinkedInURL?: string; LeadName?: string; MsgStatus?: string; }; export type CodaV11TableCreateRowNode = { type: 'n8n-nodes-base.coda'; version: 1.1; credentials?: Credentials; config: NodeConfig; output?: Items; };