/** * Microsoft Excel Node - Version 1 * Discriminator: resource=workbook, operation=getAll */ interface Credentials { microsoftExcelOAuth2Api: CredentialReference; } /** Workbook is the top level object which contains related workbook objects such as worksheets, tables, ranges, etc */ export type MicrosoftExcelV1WorkbookGetAllParams = { resource: 'workbook'; operation: 'getAll'; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 100 */ limit?: number | Expression; /** * Filters * @default {} */ filters?: { /** Fields the response will containt. Multiple can be added separated by ,. */ fields?: string | Expression | PlaceholderValue; }; }; export type MicrosoftExcelV1WorkbookGetAllNode = { type: 'n8n-nodes-base.microsoftExcel'; version: 1; credentials?: Credentials; config: NodeConfig; };