/** * Invoice Ninja Node - Version 1 * Discriminator: resource=expense, operation=get */ interface Credentials { invoiceNinjaApi: CredentialReference; } /** Get data of a client */ export type InvoiceNinjaV1ExpenseGetParams = { resource: 'expense'; operation: 'get'; /** * API Version * @default v4 */ apiVersion?: 'v4' | 'v5' | Expression; /** * Expense ID */ expenseId?: string | Expression | PlaceholderValue; }; export type InvoiceNinjaV1ExpenseGetNode = { type: 'n8n-nodes-base.invoiceNinja'; version: 1; credentials?: Credentials; config: NodeConfig; };