Invoice Ninja Node and Trigger

This commit is contained in:
Ricardo Espinoza
2020-03-04 12:05:54 -05:00
parent dc10a5cfd4
commit 77148fe352
20 changed files with 5328 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
import { IDataObject } from "n8n-workflow";
export interface IContact {
first_name?: string;
last_name?: string;
email?: string;
phone?: string;
}
export interface IClient {
contacts?: IContact[],
name?: string;
address1?: string;
address2?: string;
city?: string;
state?: string;
postal_code?: string;
country_id?: number;
shipping_address1?: string;
shipping_address2?: string;
shipping_city?: string;
shipping_state?: string;
shipping_postal_code?: string;
shipping_country_id?: number;
work_phone?: string;
private_notes?: string;
website?: string;
vat_number?: string;
id_number?: string;
}