/** * Invoice Ninja Node - Version 2 * Discriminator: resource=client, operation=get */ interface Credentials { invoiceNinjaApi: CredentialReference; } /** Get data of a client */ export type InvoiceNinjaV2ClientGetParams = { resource: 'client'; operation: 'get'; /** * API Version * @default v5 */ apiVersion?: 'v4' | 'v5' | Expression; /** * Client ID */ clientId?: string | Expression | PlaceholderValue; /** * Options * @default {} */ options?: { /** Include * @default invoices */ include?: 'invoices' | Expression; }; }; export type InvoiceNinjaV2ClientGetNode = { type: 'n8n-nodes-base.invoiceNinja'; version: 2; credentials?: Credentials; config: NodeConfig; };