mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-21 20:00:02 +00:00
fix(Invoice Ninja Node): Fix assigning an invoice to a payment (#9590)
This commit is contained in:
@@ -2,7 +2,14 @@ export interface IPayment {
|
||||
invoice_id?: number;
|
||||
amount?: number;
|
||||
payment_type_id?: number;
|
||||
type_id?: number;
|
||||
transaction_reference?: string;
|
||||
private_notes?: string;
|
||||
client_id?: string;
|
||||
invoices?: IInvoice[];
|
||||
}
|
||||
|
||||
export interface IInvoice {
|
||||
invoice_id: string;
|
||||
amount: number;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user