fix(Invoice Ninja Node): Fix emailing and marking invoice as paid / sent (#9589)

This commit is contained in:
CodeShakingSheep
2024-07-04 13:38:03 -05:00
committed by GitHub
parent 757feaf585
commit 908ddd8a24
4 changed files with 23 additions and 7 deletions

View File

@@ -15,10 +15,10 @@ export interface IInvoice {
client_id?: number;
custom_value1?: number;
custom_value2?: number;
email_invoice?: boolean;
email?: string;
discount?: number;
due_date?: string;
email_invoice?: boolean;
email?: string;
invoice_date?: string;
invoice_items?: IItem[];
line_items?: IItem[];