/** * Microsoft Excel Node - Version 1 * Discriminator: resource=table, operation=addRow */ interface Credentials { microsoftExcelOAuth2Api: CredentialReference; } /** Represents an Excel table */ export type MicrosoftExcelV1TableAddRowParams = { resource: 'table'; operation: 'addRow'; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ workbook?: string | Expression; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ worksheet?: string | Expression; /** * Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ table?: string | Expression; /** * Additional Fields * @default {} */ additionalFields?: { /** Specifies the relative position of the new row. If not defined, the addition happens at the end. Any rows below the inserted row are shifted downwards. Zero-indexed * @default 0 */ index?: number | Expression; }; }; export type MicrosoftExcelV1TableAddRowNode = { type: 'n8n-nodes-base.microsoftExcel'; version: 1; credentials?: Credentials; config: NodeConfig; };