fix(Invoice Ninja Node): Fix issue with custom invoice numbers not working with v5 (#8200)

## Summary
The v5 API expects the invoice number to under the `number` property
rather than `invoice_number`, At some point this month I am going to
bring in the big PR that fixes all of the v5 issues.

## Related tickets and issues
https://github.com/n8n-io/n8n/issues/8191
This commit is contained in:
Jon
2024-01-03 09:02:19 +00:00
committed by GitHub
parent cfe9525dd4
commit 3b6ae2d0a5
3 changed files with 16 additions and 2 deletions

View File

@@ -23,6 +23,8 @@ export interface IQuote {
invoice_items?: IItem[];
line_items?: IItem[];
invoice_number?: string;
// eslint-disable-next-line id-denylist
number?: string;
invoice_status_id?: number;
is_amount_discount?: boolean;
is_quote?: boolean;