fix(Xero Node): Fix some operations and add support for setting address and phone number (#3048)

* 🐛 Fix issue when sending Organization ID - Xero node

* 👕 Fix linting issue
This commit is contained in:
Ricardo Espinoza
2022-03-27 04:38:49 -04:00
committed by GitHub
parent bd9064cd0e
commit ab08c0df15
4 changed files with 374 additions and 370 deletions

View File

@@ -1,6 +1,6 @@
export interface IAddress {
Type?: string;
AddressType?: string;
AddressLine1?: string;
AddressLine2?: string;
City?: string;
@@ -11,7 +11,7 @@ export interface IAddress {
}
export interface IPhone {
Type?: string;
PhoneType?: string;
PhoneNumber?: string;
PhoneAreaCode?: string;
PhoneCountryCode?: string;