/** * Invoice Ninja Node - Version 1 * Discriminator: resource=task, operation=getAll */ interface Credentials { invoiceNinjaApi: CredentialReference; } /** Get data of many clients */ export type InvoiceNinjaV1TaskGetAllParams = { resource: 'task'; operation: 'getAll'; /** * API Version * @default v4 */ 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 InvoiceNinjaV1TaskGetAllNode = { type: 'n8n-nodes-base.invoiceNinja'; version: 1; credentials?: Credentials; config: NodeConfig; };