/** * Microsoft Excel Node - Version 1 * Discriminator: resource=table, operation=lookup */ interface Credentials { microsoftExcelOAuth2Api: CredentialReference; } /** Represents an Excel table */ export type MicrosoftExcelV1TableLookupParams = { resource: 'table'; operation: 'lookup'; /** * 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; /** * The name of the column in which to look for value */ lookupColumn?: string | Expression | PlaceholderValue; /** * The value to look for in column */ lookupValue?: string | Expression | PlaceholderValue; /** * Options * @default {} */ options?: { /** By default only the first result gets returned. If options gets set all found matches get returned. * @default false */ returnAllMatches?: boolean | Expression; }; }; export type MicrosoftExcelV1TableLookupNode = { type: 'n8n-nodes-base.microsoftExcel'; version: 1; credentials?: Credentials; config: NodeConfig; };