/** * Invoice Ninja Node - Version 1 * Discriminator: resource=invoice, operation=getAll */ interface Credentials { invoiceNinjaApi: CredentialReference; } /** Get data of many clients */ export type InvoiceNinjaV1InvoiceGetAllParams = { resource: 'invoice'; 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?: { /** Invoice Number */ invoiceNumber?: string | Expression | PlaceholderValue; /** Include * @default client */ include?: 'client' | 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; /** Client Status * @default all */ clientStatus?: 'all' | 'paid' | 'unpaid' | 'overdue' | Expression; }; }; export type InvoiceNinjaV1InvoiceGetAllNode = { type: 'n8n-nodes-base.invoiceNinja'; version: 1; credentials?: Credentials; config: NodeConfig; };