/** * Invoice Ninja Node - Version 1 * Discriminator: resource=client, operation=getAll */ interface Credentials { invoiceNinjaApi: CredentialReference; } /** Get data of many clients */ export type InvoiceNinjaV1ClientGetAllParams = { resource: 'client'; 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 invoices */ include?: 'invoices' | Expression; /** Status * @default active */ status?: 'active' | 'archived' | 'deleted' | Expression; /** Created At */ createdAt?: string | Expression; /** Updated At */ updatedAt?: string | Expression; /** Is Deleted * @default false */ isDeleted?: boolean | Expression; }; }; export type InvoiceNinjaV1ClientGetAllNode = { type: 'n8n-nodes-base.invoiceNinja'; version: 1; credentials?: Credentials; config: NodeConfig; };