/** * Invoice Ninja Node - Version 2 * Discriminator: resource=task, operation=getAll */ interface Credentials { invoiceNinjaApi: CredentialReference; } /** Get data of many clients */ export type InvoiceNinjaV2TaskGetAllParams = { resource: 'task'; operation: 'getAll'; /** * API Version * @default v5 */ apiVersion?: 'v4' | 'v5' | Expression; /** * 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 50 */ limit?: number | Expression; /** * Options * @default {} */ options?: { /** Include * @default client */ include?: 'client' | Expression; }; }; export type InvoiceNinjaV2TaskGetAllNode = { type: 'n8n-nodes-base.invoiceNinja'; version: 2; credentials?: Credentials; config: NodeConfig; };