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