mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
⚡ Add full continue-on-fail support to all nodes (#1996)
* Update Compression node * Update Crypto node * Update DateTime node * Update EditImage node * Update EmailSend node * Update ExecuteWorkflow node * Update FTP node * Update Function node * Update FunctionItem node * Update ExecuteCommand node * Update OpenWeatherMap node * Update ReadBinaryFile node * Update ReadPdf node * Update RssFeedRead node & add URL validation * Update SpreadsheetFile node * Update Switch node * Update WriteBinaryFile node * Update Xml node * Update ActiveCampaign node * Update Airtable node * Update ApiTemplateIo node * Update Asana node * Update AwsLambda node * Update AwsSns node * Update AwsComprehend node * Update AwsRekognition node * Update AwsS3 node * Fix Error item * Update AwsSes node * Update AwsSqs node * Update Amqp node * Update Bitly node * Update Box node * Update Brandfetch node * Update CircleCi node * Update Clearbit node * Update ClickUp node * Update Cockpit node * Update CoinGecko node * Update Contentful node * Update ConvertKit node * Update Cortex node * Update CustomerIo node * Update DeepL node * Update Demio node * Update Disqus node * Update Drift node * Update Dropbox node * Update GetResponse node * Refactor & Update Ghost node * Update Github node * Update Gitlab node * Update GoogleAnalytics node * Update GoogleBooks node * Update GoogleCalendar node * Update GoogleDrive node * Update Gmail node * Update GoogleSheets node * Update GoogleSlides node * Update GoogleTasks node * Update Gotify node * Update GraphQL node * Update HackerNews node * Update Harvest node * Update HtmlExtract node * Update Hubspot node * Update Hunter node * Update Intercom node * Update Kafka node * Refactor & update Line node * Update LinkedIn node * Update Mailchimp node * Update Mandrill node * Update Matrix node * Update Mautic node * Update Medium node * Update MessageBird node * Update Mindee node * Update Mocean node * Update MondayCom node * Update MicrosoftExcel node * Update MicrosoftOneDrive node * Update MicrosoftOutlook node * Update Affinity node * Update Chargebee node * Update Discourse node * Update Freshdesk node * Update YouTube node * Update InvoiceNinja node * Update MailerLite node * Update Mailgun node * Update Mailjet node * Update Mattermost node * Update Nasa node * Update NextCloud node * Update OpenThesaurus node * Update Orbit node * Update PagerDuty node * Update PayPal node * Update Peekalink node * Update Phantombuster node * Update PostHog node * Update ProfitWell node * Refactor & Update Pushbullet node * Update QuickBooks node * Update Raindrop node * Update Reddit node * Update Rocketchat node * Update S3 node * Update Salesforce node * Update SendGrid node * Update SentryIo node * Update Shopify node * Update Signl4 node * Update Slack node * Update Spontit node * Update Spotify node * Update Storyblok node * Refactor & Update Strapi node * Refactor & Update Strava node * Update Taiga node * Refactor & update Tapfiliate node * Update Telegram node * Update TheHive node * Update Todoist node * Update TravisCi node * Update Trello node * Update Twilio node * Update Twist node * Update Twitter node * Update Uplead node * Update UProc node * Update Vero node * Update Webflow node * Update Wekan node * Update Wordpress node * Update Xero node * Update Yourls node * Update Zendesk node * Update ZohoCrm node * Refactor & Update Zoom node * Update Zulip node * Update Clockify node * Update MongoDb node * Update MySql node * Update MicrosoftTeams node * Update Stackby node * Refactor Discourse node * Support corner-case in Github node update * Support corner-case in Gitlab node update * Refactor & Update GoogleContacts node * Refactor Mindee node * Update Coda node * Lint fixes * Update Beeminder node * Update Google Firebase RealtimeDatabase node * Update HelpScout node * Update Mailcheck node * Update Paddle node * Update Pipedrive node * Update Pushover node * Update Segment node * Refactor & Update Vonage node * Added new conditions to warnings on execute batch cmd * Added keep only properties flag * Fixed code for keep only props * Added dependencies for image editing Co-authored-by: dali <servfrdali@yahoo.fr>
This commit is contained in:
@@ -210,112 +210,24 @@ export class Xero implements INodeType {
|
||||
const qs: IDataObject = {};
|
||||
let responseData;
|
||||
for (let i = 0; i < length; i++) {
|
||||
const resource = this.getNodeParameter('resource', 0) as string;
|
||||
const operation = this.getNodeParameter('operation', 0) as string;
|
||||
//https://developer.xero.com/documentation/api/invoices
|
||||
if (resource === 'invoice') {
|
||||
if (operation === 'create') {
|
||||
const organizationId = this.getNodeParameter('organizationId', i) as string;
|
||||
const type = this.getNodeParameter('type', i) as string;
|
||||
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
||||
const contactId = this.getNodeParameter('contactId', i) as string;
|
||||
const lineItemsValues = ((this.getNodeParameter('lineItemsUi', i) as IDataObject).lineItemsValues as IDataObject[]);
|
||||
try {
|
||||
const resource = this.getNodeParameter('resource', 0) as string;
|
||||
const operation = this.getNodeParameter('operation', 0) as string;
|
||||
//https://developer.xero.com/documentation/api/invoices
|
||||
if (resource === 'invoice') {
|
||||
if (operation === 'create') {
|
||||
const organizationId = this.getNodeParameter('organizationId', i) as string;
|
||||
const type = this.getNodeParameter('type', i) as string;
|
||||
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
||||
const contactId = this.getNodeParameter('contactId', i) as string;
|
||||
const lineItemsValues = ((this.getNodeParameter('lineItemsUi', i) as IDataObject).lineItemsValues as IDataObject[]);
|
||||
|
||||
const body: IInvoice = {
|
||||
organizationId,
|
||||
Type: type,
|
||||
Contact: { ContactID: contactId },
|
||||
};
|
||||
const body: IInvoice = {
|
||||
organizationId,
|
||||
Type: type,
|
||||
Contact: { ContactID: contactId },
|
||||
};
|
||||
|
||||
if (lineItemsValues) {
|
||||
const lineItems: ILineItem[] = [];
|
||||
for (const lineItemValue of lineItemsValues) {
|
||||
const lineItem: ILineItem = {
|
||||
Tracking: [],
|
||||
};
|
||||
lineItem.AccountCode = lineItemValue.accountCode as string;
|
||||
lineItem.Description = lineItemValue.description as string;
|
||||
lineItem.DiscountRate = lineItemValue.discountRate as string;
|
||||
lineItem.ItemCode = lineItemValue.itemCode as string;
|
||||
lineItem.LineAmount = lineItemValue.lineAmount as string;
|
||||
lineItem.Quantity = (lineItemValue.quantity as number).toString();
|
||||
lineItem.TaxAmount = lineItemValue.taxAmount as string;
|
||||
lineItem.TaxType = lineItemValue.taxType as string;
|
||||
lineItem.UnitAmount = lineItemValue.unitAmount as string;
|
||||
// if (lineItemValue.trackingUi) {
|
||||
// //@ts-ignore
|
||||
// const { trackingValues } = lineItemValue.trackingUi as IDataObject[];
|
||||
// if (trackingValues) {
|
||||
// for (const trackingValue of trackingValues) {
|
||||
// const tracking: IDataObject = {};
|
||||
// tracking.Name = trackingValue.name as string;
|
||||
// tracking.Option = trackingValue.option as string;
|
||||
// lineItem.Tracking!.push(tracking);
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
lineItems.push(lineItem);
|
||||
}
|
||||
body.LineItems = lineItems;
|
||||
}
|
||||
|
||||
if (additionalFields.brandingThemeId) {
|
||||
body.BrandingThemeID = additionalFields.brandingThemeId as string;
|
||||
}
|
||||
if (additionalFields.currency) {
|
||||
body.CurrencyCode = additionalFields.currency as string;
|
||||
}
|
||||
if (additionalFields.currencyRate) {
|
||||
body.CurrencyRate = additionalFields.currencyRate as string;
|
||||
}
|
||||
if (additionalFields.date) {
|
||||
body.Date = additionalFields.date as string;
|
||||
}
|
||||
if (additionalFields.dueDate) {
|
||||
body.DueDate = additionalFields.dueDate as string;
|
||||
}
|
||||
if (additionalFields.dueDate) {
|
||||
body.DueDate = additionalFields.dueDate as string;
|
||||
}
|
||||
if (additionalFields.expectedPaymentDate) {
|
||||
body.ExpectedPaymentDate = additionalFields.expectedPaymentDate as string;
|
||||
}
|
||||
if (additionalFields.invoiceNumber) {
|
||||
body.InvoiceNumber = additionalFields.invoiceNumber as string;
|
||||
}
|
||||
if (additionalFields.lineAmountType) {
|
||||
body.LineAmountType = additionalFields.lineAmountType as string;
|
||||
}
|
||||
if (additionalFields.plannedPaymentDate) {
|
||||
body.PlannedPaymentDate = additionalFields.plannedPaymentDate as string;
|
||||
}
|
||||
if (additionalFields.reference) {
|
||||
body.Reference = additionalFields.reference as string;
|
||||
}
|
||||
if (additionalFields.sendToContact) {
|
||||
body.SentToContact = additionalFields.sendToContact as boolean;
|
||||
}
|
||||
if (additionalFields.status) {
|
||||
body.Status = additionalFields.status as string;
|
||||
}
|
||||
if (additionalFields.url) {
|
||||
body.Url = additionalFields.url as string;
|
||||
}
|
||||
|
||||
responseData = await xeroApiRequest.call(this, 'POST', '/Invoices', body);
|
||||
responseData = responseData.Invoices;
|
||||
}
|
||||
if (operation === 'update') {
|
||||
const invoiceId = this.getNodeParameter('invoiceId', i) as string;
|
||||
const organizationId = this.getNodeParameter('organizationId', i) as string;
|
||||
const updateFields = this.getNodeParameter('updateFields', i) as IDataObject;
|
||||
|
||||
const body: IInvoice = {
|
||||
organizationId,
|
||||
};
|
||||
|
||||
if (updateFields.lineItemsUi) {
|
||||
const lineItemsValues = (updateFields.lineItemsUi as IDataObject).lineItemsValues as IDataObject[];
|
||||
if (lineItemsValues) {
|
||||
const lineItems: ILineItem[] = [];
|
||||
for (const lineItemValue of lineItemsValues) {
|
||||
@@ -347,333 +259,429 @@ export class Xero implements INodeType {
|
||||
}
|
||||
body.LineItems = lineItems;
|
||||
}
|
||||
}
|
||||
|
||||
if (updateFields.type) {
|
||||
body.Type = updateFields.type as string;
|
||||
}
|
||||
if (updateFields.Contact) {
|
||||
body.Contact = { ContactID: updateFields.contactId as string };
|
||||
}
|
||||
if (updateFields.brandingThemeId) {
|
||||
body.BrandingThemeID = updateFields.brandingThemeId as string;
|
||||
}
|
||||
if (updateFields.currency) {
|
||||
body.CurrencyCode = updateFields.currency as string;
|
||||
}
|
||||
if (updateFields.currencyRate) {
|
||||
body.CurrencyRate = updateFields.currencyRate as string;
|
||||
}
|
||||
if (updateFields.date) {
|
||||
body.Date = updateFields.date as string;
|
||||
}
|
||||
if (updateFields.dueDate) {
|
||||
body.DueDate = updateFields.dueDate as string;
|
||||
}
|
||||
if (updateFields.dueDate) {
|
||||
body.DueDate = updateFields.dueDate as string;
|
||||
}
|
||||
if (updateFields.expectedPaymentDate) {
|
||||
body.ExpectedPaymentDate = updateFields.expectedPaymentDate as string;
|
||||
}
|
||||
if (updateFields.invoiceNumber) {
|
||||
body.InvoiceNumber = updateFields.invoiceNumber as string;
|
||||
}
|
||||
if (updateFields.lineAmountType) {
|
||||
body.LineAmountType = updateFields.lineAmountType as string;
|
||||
}
|
||||
if (updateFields.plannedPaymentDate) {
|
||||
body.PlannedPaymentDate = updateFields.plannedPaymentDate as string;
|
||||
}
|
||||
if (updateFields.reference) {
|
||||
body.Reference = updateFields.reference as string;
|
||||
}
|
||||
if (updateFields.sendToContact) {
|
||||
body.SentToContact = updateFields.sendToContact as boolean;
|
||||
}
|
||||
if (updateFields.status) {
|
||||
body.Status = updateFields.status as string;
|
||||
}
|
||||
if (updateFields.url) {
|
||||
body.Url = updateFields.url as string;
|
||||
}
|
||||
if (additionalFields.brandingThemeId) {
|
||||
body.BrandingThemeID = additionalFields.brandingThemeId as string;
|
||||
}
|
||||
if (additionalFields.currency) {
|
||||
body.CurrencyCode = additionalFields.currency as string;
|
||||
}
|
||||
if (additionalFields.currencyRate) {
|
||||
body.CurrencyRate = additionalFields.currencyRate as string;
|
||||
}
|
||||
if (additionalFields.date) {
|
||||
body.Date = additionalFields.date as string;
|
||||
}
|
||||
if (additionalFields.dueDate) {
|
||||
body.DueDate = additionalFields.dueDate as string;
|
||||
}
|
||||
if (additionalFields.dueDate) {
|
||||
body.DueDate = additionalFields.dueDate as string;
|
||||
}
|
||||
if (additionalFields.expectedPaymentDate) {
|
||||
body.ExpectedPaymentDate = additionalFields.expectedPaymentDate as string;
|
||||
}
|
||||
if (additionalFields.invoiceNumber) {
|
||||
body.InvoiceNumber = additionalFields.invoiceNumber as string;
|
||||
}
|
||||
if (additionalFields.lineAmountType) {
|
||||
body.LineAmountType = additionalFields.lineAmountType as string;
|
||||
}
|
||||
if (additionalFields.plannedPaymentDate) {
|
||||
body.PlannedPaymentDate = additionalFields.plannedPaymentDate as string;
|
||||
}
|
||||
if (additionalFields.reference) {
|
||||
body.Reference = additionalFields.reference as string;
|
||||
}
|
||||
if (additionalFields.sendToContact) {
|
||||
body.SentToContact = additionalFields.sendToContact as boolean;
|
||||
}
|
||||
if (additionalFields.status) {
|
||||
body.Status = additionalFields.status as string;
|
||||
}
|
||||
if (additionalFields.url) {
|
||||
body.Url = additionalFields.url as string;
|
||||
}
|
||||
|
||||
responseData = await xeroApiRequest.call(this, 'POST', `/Invoices/${invoiceId}`, body);
|
||||
responseData = responseData.Invoices;
|
||||
}
|
||||
if (operation === 'get') {
|
||||
const organizationId = this.getNodeParameter('organizationId', i) as string;
|
||||
const invoiceId = this.getNodeParameter('invoiceId', i) as string;
|
||||
responseData = await xeroApiRequest.call(this, 'GET', `/Invoices/${invoiceId}`, { organizationId });
|
||||
responseData = responseData.Invoices;
|
||||
}
|
||||
if (operation === 'getAll') {
|
||||
const organizationId = this.getNodeParameter('organizationId', i) as string;
|
||||
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
||||
const options = this.getNodeParameter('options', i) as IDataObject;
|
||||
if (options.statuses) {
|
||||
qs.statuses = (options.statuses as string[]).join(',');
|
||||
}
|
||||
if (options.orderBy) {
|
||||
qs.order = `${options.orderBy} ${(options.sortOrder === undefined) ? 'DESC' : options.sortOrder}`;
|
||||
}
|
||||
if (options.where) {
|
||||
qs.where = options.where;
|
||||
}
|
||||
if (options.createdByMyApp) {
|
||||
qs.createdByMyApp = options.createdByMyApp as boolean;
|
||||
}
|
||||
if (returnAll) {
|
||||
responseData = await xeroApiRequestAllItems.call(this, 'Invoices', 'GET', '/Invoices', { organizationId }, qs);
|
||||
} else {
|
||||
const limit = this.getNodeParameter('limit', i) as number;
|
||||
responseData = await xeroApiRequest.call(this, 'GET', `/Invoices`, { organizationId }, qs);
|
||||
responseData = await xeroApiRequest.call(this, 'POST', '/Invoices', body);
|
||||
responseData = responseData.Invoices;
|
||||
responseData = responseData.splice(0, limit);
|
||||
}
|
||||
if (operation === 'update') {
|
||||
const invoiceId = this.getNodeParameter('invoiceId', i) as string;
|
||||
const organizationId = this.getNodeParameter('organizationId', i) as string;
|
||||
const updateFields = this.getNodeParameter('updateFields', i) as IDataObject;
|
||||
|
||||
const body: IInvoice = {
|
||||
organizationId,
|
||||
};
|
||||
|
||||
if (updateFields.lineItemsUi) {
|
||||
const lineItemsValues = (updateFields.lineItemsUi as IDataObject).lineItemsValues as IDataObject[];
|
||||
if (lineItemsValues) {
|
||||
const lineItems: ILineItem[] = [];
|
||||
for (const lineItemValue of lineItemsValues) {
|
||||
const lineItem: ILineItem = {
|
||||
Tracking: [],
|
||||
};
|
||||
lineItem.AccountCode = lineItemValue.accountCode as string;
|
||||
lineItem.Description = lineItemValue.description as string;
|
||||
lineItem.DiscountRate = lineItemValue.discountRate as string;
|
||||
lineItem.ItemCode = lineItemValue.itemCode as string;
|
||||
lineItem.LineAmount = lineItemValue.lineAmount as string;
|
||||
lineItem.Quantity = (lineItemValue.quantity as number).toString();
|
||||
lineItem.TaxAmount = lineItemValue.taxAmount as string;
|
||||
lineItem.TaxType = lineItemValue.taxType as string;
|
||||
lineItem.UnitAmount = lineItemValue.unitAmount as string;
|
||||
// if (lineItemValue.trackingUi) {
|
||||
// //@ts-ignore
|
||||
// const { trackingValues } = lineItemValue.trackingUi as IDataObject[];
|
||||
// if (trackingValues) {
|
||||
// for (const trackingValue of trackingValues) {
|
||||
// const tracking: IDataObject = {};
|
||||
// tracking.Name = trackingValue.name as string;
|
||||
// tracking.Option = trackingValue.option as string;
|
||||
// lineItem.Tracking!.push(tracking);
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
lineItems.push(lineItem);
|
||||
}
|
||||
body.LineItems = lineItems;
|
||||
}
|
||||
}
|
||||
|
||||
if (updateFields.type) {
|
||||
body.Type = updateFields.type as string;
|
||||
}
|
||||
if (updateFields.Contact) {
|
||||
body.Contact = { ContactID: updateFields.contactId as string };
|
||||
}
|
||||
if (updateFields.brandingThemeId) {
|
||||
body.BrandingThemeID = updateFields.brandingThemeId as string;
|
||||
}
|
||||
if (updateFields.currency) {
|
||||
body.CurrencyCode = updateFields.currency as string;
|
||||
}
|
||||
if (updateFields.currencyRate) {
|
||||
body.CurrencyRate = updateFields.currencyRate as string;
|
||||
}
|
||||
if (updateFields.date) {
|
||||
body.Date = updateFields.date as string;
|
||||
}
|
||||
if (updateFields.dueDate) {
|
||||
body.DueDate = updateFields.dueDate as string;
|
||||
}
|
||||
if (updateFields.dueDate) {
|
||||
body.DueDate = updateFields.dueDate as string;
|
||||
}
|
||||
if (updateFields.expectedPaymentDate) {
|
||||
body.ExpectedPaymentDate = updateFields.expectedPaymentDate as string;
|
||||
}
|
||||
if (updateFields.invoiceNumber) {
|
||||
body.InvoiceNumber = updateFields.invoiceNumber as string;
|
||||
}
|
||||
if (updateFields.lineAmountType) {
|
||||
body.LineAmountType = updateFields.lineAmountType as string;
|
||||
}
|
||||
if (updateFields.plannedPaymentDate) {
|
||||
body.PlannedPaymentDate = updateFields.plannedPaymentDate as string;
|
||||
}
|
||||
if (updateFields.reference) {
|
||||
body.Reference = updateFields.reference as string;
|
||||
}
|
||||
if (updateFields.sendToContact) {
|
||||
body.SentToContact = updateFields.sendToContact as boolean;
|
||||
}
|
||||
if (updateFields.status) {
|
||||
body.Status = updateFields.status as string;
|
||||
}
|
||||
if (updateFields.url) {
|
||||
body.Url = updateFields.url as string;
|
||||
}
|
||||
|
||||
responseData = await xeroApiRequest.call(this, 'POST', `/Invoices/${invoiceId}`, body);
|
||||
responseData = responseData.Invoices;
|
||||
}
|
||||
if (operation === 'get') {
|
||||
const organizationId = this.getNodeParameter('organizationId', i) as string;
|
||||
const invoiceId = this.getNodeParameter('invoiceId', i) as string;
|
||||
responseData = await xeroApiRequest.call(this, 'GET', `/Invoices/${invoiceId}`, { organizationId });
|
||||
responseData = responseData.Invoices;
|
||||
}
|
||||
if (operation === 'getAll') {
|
||||
const organizationId = this.getNodeParameter('organizationId', i) as string;
|
||||
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
||||
const options = this.getNodeParameter('options', i) as IDataObject;
|
||||
if (options.statuses) {
|
||||
qs.statuses = (options.statuses as string[]).join(',');
|
||||
}
|
||||
if (options.orderBy) {
|
||||
qs.order = `${options.orderBy} ${(options.sortOrder === undefined) ? 'DESC' : options.sortOrder}`;
|
||||
}
|
||||
if (options.where) {
|
||||
qs.where = options.where;
|
||||
}
|
||||
if (options.createdByMyApp) {
|
||||
qs.createdByMyApp = options.createdByMyApp as boolean;
|
||||
}
|
||||
if (returnAll) {
|
||||
responseData = await xeroApiRequestAllItems.call(this, 'Invoices', 'GET', '/Invoices', { organizationId }, qs);
|
||||
} else {
|
||||
const limit = this.getNodeParameter('limit', i) as number;
|
||||
responseData = await xeroApiRequest.call(this, 'GET', `/Invoices`, { organizationId }, qs);
|
||||
responseData = responseData.Invoices;
|
||||
responseData = responseData.splice(0, limit);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if (resource === 'contact') {
|
||||
if (operation === 'create') {
|
||||
const organizationId = this.getNodeParameter('organizationId', i) as string;
|
||||
const name = this.getNodeParameter('name', i) as string;
|
||||
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
||||
// const addressesUi = additionalFields.addressesUi as IDataObject;
|
||||
// const phonesUi = additionalFields.phonesUi as IDataObject;
|
||||
if (resource === 'contact') {
|
||||
if (operation === 'create') {
|
||||
const organizationId = this.getNodeParameter('organizationId', i) as string;
|
||||
const name = this.getNodeParameter('name', i) as string;
|
||||
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
||||
// const addressesUi = additionalFields.addressesUi as IDataObject;
|
||||
// const phonesUi = additionalFields.phonesUi as IDataObject;
|
||||
|
||||
const body: IContact = {
|
||||
Name: name,
|
||||
};
|
||||
const body: IContact = {
|
||||
Name: name,
|
||||
};
|
||||
|
||||
if (additionalFields.accountNumber) {
|
||||
body.AccountNumber = additionalFields.accountNumber as string;
|
||||
}
|
||||
if (additionalFields.accountNumber) {
|
||||
body.AccountNumber = additionalFields.accountNumber as string;
|
||||
}
|
||||
|
||||
if (additionalFields.bankAccountDetails) {
|
||||
body.BankAccountDetails = additionalFields.bankAccountDetails as string;
|
||||
}
|
||||
if (additionalFields.bankAccountDetails) {
|
||||
body.BankAccountDetails = additionalFields.bankAccountDetails as string;
|
||||
}
|
||||
|
||||
if (additionalFields.contactNumber) {
|
||||
body.ContactNumber = additionalFields.contactNumber as string;
|
||||
}
|
||||
if (additionalFields.contactNumber) {
|
||||
body.ContactNumber = additionalFields.contactNumber as string;
|
||||
}
|
||||
|
||||
if (additionalFields.contactStatus) {
|
||||
body.ContactStatus = additionalFields.contactStatus as string;
|
||||
}
|
||||
if (additionalFields.contactStatus) {
|
||||
body.ContactStatus = additionalFields.contactStatus as string;
|
||||
}
|
||||
|
||||
if (additionalFields.defaultCurrency) {
|
||||
body.DefaultCurrency = additionalFields.defaultCurrency as string;
|
||||
}
|
||||
if (additionalFields.defaultCurrency) {
|
||||
body.DefaultCurrency = additionalFields.defaultCurrency as string;
|
||||
}
|
||||
|
||||
if (additionalFields.emailAddress) {
|
||||
body.EmailAddress = additionalFields.emailAddress as string;
|
||||
}
|
||||
if (additionalFields.emailAddress) {
|
||||
body.EmailAddress = additionalFields.emailAddress as string;
|
||||
}
|
||||
|
||||
if (additionalFields.firstName) {
|
||||
body.FirstName = additionalFields.firstName as string;
|
||||
}
|
||||
if (additionalFields.firstName) {
|
||||
body.FirstName = additionalFields.firstName as string;
|
||||
}
|
||||
|
||||
if (additionalFields.lastName) {
|
||||
body.LastName = additionalFields.lastName as string;
|
||||
}
|
||||
if (additionalFields.lastName) {
|
||||
body.LastName = additionalFields.lastName as string;
|
||||
}
|
||||
|
||||
if (additionalFields.purchasesDefaultAccountCode) {
|
||||
body.PurchasesDefaultAccountCode = additionalFields.purchasesDefaultAccountCode as string;
|
||||
}
|
||||
if (additionalFields.purchasesDefaultAccountCode) {
|
||||
body.PurchasesDefaultAccountCode = additionalFields.purchasesDefaultAccountCode as string;
|
||||
}
|
||||
|
||||
if (additionalFields.salesDefaultAccountCode) {
|
||||
body.SalesDefaultAccountCode = additionalFields.salesDefaultAccountCode as string;
|
||||
}
|
||||
if (additionalFields.salesDefaultAccountCode) {
|
||||
body.SalesDefaultAccountCode = additionalFields.salesDefaultAccountCode as string;
|
||||
}
|
||||
|
||||
if (additionalFields.skypeUserName) {
|
||||
body.SkypeUserName = additionalFields.skypeUserName as string;
|
||||
}
|
||||
if (additionalFields.skypeUserName) {
|
||||
body.SkypeUserName = additionalFields.skypeUserName as string;
|
||||
}
|
||||
|
||||
if (additionalFields.taxNumber) {
|
||||
body.taxNumber = additionalFields.taxNumber as string;
|
||||
}
|
||||
if (additionalFields.taxNumber) {
|
||||
body.taxNumber = additionalFields.taxNumber as string;
|
||||
}
|
||||
|
||||
if (additionalFields.xeroNetworkKey) {
|
||||
body.xeroNetworkKey = additionalFields.xeroNetworkKey as string;
|
||||
}
|
||||
if (additionalFields.xeroNetworkKey) {
|
||||
body.xeroNetworkKey = additionalFields.xeroNetworkKey as string;
|
||||
}
|
||||
|
||||
// if (phonesUi) {
|
||||
// const phoneValues = phonesUi?.phonesValues as IDataObject[];
|
||||
// if (phoneValues) {
|
||||
// const phones: IPhone[] = [];
|
||||
// for (const phoneValue of phoneValues) {
|
||||
// const phone: IPhone = {};
|
||||
// phone.Type = phoneValue.type as string;
|
||||
// phone.PhoneNumber = phoneValue.PhoneNumber as string;
|
||||
// phone.PhoneAreaCode = phoneValue.phoneAreaCode as string;
|
||||
// phone.PhoneCountryCode = phoneValue.phoneCountryCode as string;
|
||||
// phones.push(phone);
|
||||
// }
|
||||
// body.Phones = phones;
|
||||
// }
|
||||
// }
|
||||
// if (phonesUi) {
|
||||
// const phoneValues = phonesUi?.phonesValues as IDataObject[];
|
||||
// if (phoneValues) {
|
||||
// const phones: IPhone[] = [];
|
||||
// for (const phoneValue of phoneValues) {
|
||||
// const phone: IPhone = {};
|
||||
// phone.Type = phoneValue.type as string;
|
||||
// phone.PhoneNumber = phoneValue.PhoneNumber as string;
|
||||
// phone.PhoneAreaCode = phoneValue.phoneAreaCode as string;
|
||||
// phone.PhoneCountryCode = phoneValue.phoneCountryCode as string;
|
||||
// phones.push(phone);
|
||||
// }
|
||||
// body.Phones = phones;
|
||||
// }
|
||||
// }
|
||||
|
||||
// if (addressesUi) {
|
||||
// const addressValues = addressesUi?.addressesValues as IDataObject[];
|
||||
// if (addressValues) {
|
||||
// const addresses: IAddress[] = [];
|
||||
// for (const addressValue of addressValues) {
|
||||
// const address: IAddress = {};
|
||||
// address.Type = addressValue.type as string;
|
||||
// address.AddressLine1 = addressValue.line1 as string;
|
||||
// address.AddressLine2 = addressValue.line2 as string;
|
||||
// address.City = addressValue.city as string;
|
||||
// address.Region = addressValue.region as string;
|
||||
// address.PostalCode = addressValue.postalCode as string;
|
||||
// address.Country = addressValue.country as string;
|
||||
// address.AttentionTo = addressValue.attentionTo as string;
|
||||
// addresses.push(address);
|
||||
// }
|
||||
// body.Addresses = addresses;
|
||||
// }
|
||||
// }
|
||||
// if (addressesUi) {
|
||||
// const addressValues = addressesUi?.addressesValues as IDataObject[];
|
||||
// if (addressValues) {
|
||||
// const addresses: IAddress[] = [];
|
||||
// for (const addressValue of addressValues) {
|
||||
// const address: IAddress = {};
|
||||
// address.Type = addressValue.type as string;
|
||||
// address.AddressLine1 = addressValue.line1 as string;
|
||||
// address.AddressLine2 = addressValue.line2 as string;
|
||||
// address.City = addressValue.city as string;
|
||||
// address.Region = addressValue.region as string;
|
||||
// address.PostalCode = addressValue.postalCode as string;
|
||||
// address.Country = addressValue.country as string;
|
||||
// address.AttentionTo = addressValue.attentionTo as string;
|
||||
// addresses.push(address);
|
||||
// }
|
||||
// body.Addresses = addresses;
|
||||
// }
|
||||
// }
|
||||
|
||||
responseData = await xeroApiRequest.call(this, 'POST', '/Contacts', { organizationId, Contacts: [body] });
|
||||
responseData = responseData.Contacts;
|
||||
}
|
||||
if (operation === 'get') {
|
||||
const organizationId = this.getNodeParameter('organizationId', i) as string;
|
||||
const contactId = this.getNodeParameter('contactId', i) as string;
|
||||
responseData = await xeroApiRequest.call(this, 'GET', `/Contacts/${contactId}`, { organizationId });
|
||||
responseData = responseData.Contacts;
|
||||
}
|
||||
if (operation === 'getAll') {
|
||||
const organizationId = this.getNodeParameter('organizationId', i) as string;
|
||||
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
||||
const options = this.getNodeParameter('options', i) as IDataObject;
|
||||
if (options.includeArchived) {
|
||||
qs.includeArchived = options.includeArchived as boolean;
|
||||
}
|
||||
if (options.orderBy) {
|
||||
qs.order = `${options.orderBy} ${(options.sortOrder === undefined) ? 'DESC' : options.sortOrder}`;
|
||||
}
|
||||
if (options.where) {
|
||||
qs.where = options.where;
|
||||
}
|
||||
if (returnAll) {
|
||||
responseData = await xeroApiRequestAllItems.call(this, 'Contacts', 'GET', '/Contacts', { organizationId }, qs);
|
||||
} else {
|
||||
const limit = this.getNodeParameter('limit', i) as number;
|
||||
responseData = await xeroApiRequest.call(this, 'GET', `/Contacts`, { organizationId }, qs);
|
||||
responseData = await xeroApiRequest.call(this, 'POST', '/Contacts', { organizationId, Contacts: [body] });
|
||||
responseData = responseData.Contacts;
|
||||
responseData = responseData.splice(0, limit);
|
||||
}
|
||||
if (operation === 'get') {
|
||||
const organizationId = this.getNodeParameter('organizationId', i) as string;
|
||||
const contactId = this.getNodeParameter('contactId', i) as string;
|
||||
responseData = await xeroApiRequest.call(this, 'GET', `/Contacts/${contactId}`, { organizationId });
|
||||
responseData = responseData.Contacts;
|
||||
}
|
||||
if (operation === 'getAll') {
|
||||
const organizationId = this.getNodeParameter('organizationId', i) as string;
|
||||
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
||||
const options = this.getNodeParameter('options', i) as IDataObject;
|
||||
if (options.includeArchived) {
|
||||
qs.includeArchived = options.includeArchived as boolean;
|
||||
}
|
||||
if (options.orderBy) {
|
||||
qs.order = `${options.orderBy} ${(options.sortOrder === undefined) ? 'DESC' : options.sortOrder}`;
|
||||
}
|
||||
if (options.where) {
|
||||
qs.where = options.where;
|
||||
}
|
||||
if (returnAll) {
|
||||
responseData = await xeroApiRequestAllItems.call(this, 'Contacts', 'GET', '/Contacts', { organizationId }, qs);
|
||||
} else {
|
||||
const limit = this.getNodeParameter('limit', i) as number;
|
||||
responseData = await xeroApiRequest.call(this, 'GET', `/Contacts`, { organizationId }, qs);
|
||||
responseData = responseData.Contacts;
|
||||
responseData = responseData.splice(0, limit);
|
||||
}
|
||||
|
||||
}
|
||||
if (operation === 'update') {
|
||||
const organizationId = this.getNodeParameter('organizationId', i) as string;
|
||||
const contactId = this.getNodeParameter('contactId', i) as string;
|
||||
const updateFields = this.getNodeParameter('updateFields', i) as IDataObject;
|
||||
// const addressesUi = updateFields.addressesUi as IDataObject;
|
||||
// const phonesUi = updateFields.phonesUi as IDataObject;
|
||||
|
||||
const body: IContact = {};
|
||||
|
||||
if (updateFields.accountNumber) {
|
||||
body.AccountNumber = updateFields.accountNumber as string;
|
||||
}
|
||||
|
||||
if (updateFields.name) {
|
||||
body.Name = updateFields.name as string;
|
||||
}
|
||||
|
||||
if (updateFields.bankAccountDetails) {
|
||||
body.BankAccountDetails = updateFields.bankAccountDetails as string;
|
||||
}
|
||||
|
||||
if (updateFields.contactNumber) {
|
||||
body.ContactNumber = updateFields.contactNumber as string;
|
||||
}
|
||||
|
||||
if (updateFields.contactStatus) {
|
||||
body.ContactStatus = updateFields.contactStatus as string;
|
||||
}
|
||||
|
||||
if (updateFields.defaultCurrency) {
|
||||
body.DefaultCurrency = updateFields.defaultCurrency as string;
|
||||
}
|
||||
|
||||
if (updateFields.emailAddress) {
|
||||
body.EmailAddress = updateFields.emailAddress as string;
|
||||
}
|
||||
|
||||
if (updateFields.firstName) {
|
||||
body.FirstName = updateFields.firstName as string;
|
||||
}
|
||||
|
||||
if (updateFields.lastName) {
|
||||
body.LastName = updateFields.lastName as string;
|
||||
}
|
||||
|
||||
if (updateFields.purchasesDefaultAccountCode) {
|
||||
body.PurchasesDefaultAccountCode = updateFields.purchasesDefaultAccountCode as string;
|
||||
}
|
||||
|
||||
if (updateFields.salesDefaultAccountCode) {
|
||||
body.SalesDefaultAccountCode = updateFields.salesDefaultAccountCode as string;
|
||||
}
|
||||
|
||||
if (updateFields.skypeUserName) {
|
||||
body.SkypeUserName = updateFields.skypeUserName as string;
|
||||
}
|
||||
|
||||
if (updateFields.taxNumber) {
|
||||
body.taxNumber = updateFields.taxNumber as string;
|
||||
}
|
||||
|
||||
if (updateFields.xeroNetworkKey) {
|
||||
body.xeroNetworkKey = updateFields.xeroNetworkKey as string;
|
||||
}
|
||||
|
||||
// if (phonesUi) {
|
||||
// const phoneValues = phonesUi?.phonesValues as IDataObject[];
|
||||
// if (phoneValues) {
|
||||
// const phones: IPhone[] = [];
|
||||
// for (const phoneValue of phoneValues) {
|
||||
// const phone: IPhone = {};
|
||||
// phone.Type = phoneValue.type as string;
|
||||
// phone.PhoneNumber = phoneValue.PhoneNumber as string;
|
||||
// phone.PhoneAreaCode = phoneValue.phoneAreaCode as string;
|
||||
// phone.PhoneCountryCode = phoneValue.phoneCountryCode as string;
|
||||
// phones.push(phone);
|
||||
// }
|
||||
// body.Phones = phones;
|
||||
// }
|
||||
// }
|
||||
|
||||
// if (addressesUi) {
|
||||
// const addressValues = addressesUi?.addressesValues as IDataObject[];
|
||||
// if (addressValues) {
|
||||
// const addresses: IAddress[] = [];
|
||||
// for (const addressValue of addressValues) {
|
||||
// const address: IAddress = {};
|
||||
// address.Type = addressValue.type as string;
|
||||
// address.AddressLine1 = addressValue.line1 as string;
|
||||
// address.AddressLine2 = addressValue.line2 as string;
|
||||
// address.City = addressValue.city as string;
|
||||
// address.Region = addressValue.region as string;
|
||||
// address.PostalCode = addressValue.postalCode as string;
|
||||
// address.Country = addressValue.country as string;
|
||||
// address.AttentionTo = addressValue.attentionTo as string;
|
||||
// addresses.push(address);
|
||||
// }
|
||||
// body.Addresses = addresses;
|
||||
// }
|
||||
// }
|
||||
|
||||
responseData = await xeroApiRequest.call(this, 'POST', `/Contacts/${contactId}`, { organizationId, Contacts: [body] });
|
||||
responseData = responseData.Contacts;
|
||||
}
|
||||
}
|
||||
if (operation === 'update') {
|
||||
const organizationId = this.getNodeParameter('organizationId', i) as string;
|
||||
const contactId = this.getNodeParameter('contactId', i) as string;
|
||||
const updateFields = this.getNodeParameter('updateFields', i) as IDataObject;
|
||||
// const addressesUi = updateFields.addressesUi as IDataObject;
|
||||
// const phonesUi = updateFields.phonesUi as IDataObject;
|
||||
|
||||
const body: IContact = {};
|
||||
|
||||
if (updateFields.accountNumber) {
|
||||
body.AccountNumber = updateFields.accountNumber as string;
|
||||
}
|
||||
|
||||
if (updateFields.name) {
|
||||
body.Name = updateFields.name as string;
|
||||
}
|
||||
|
||||
if (updateFields.bankAccountDetails) {
|
||||
body.BankAccountDetails = updateFields.bankAccountDetails as string;
|
||||
}
|
||||
|
||||
if (updateFields.contactNumber) {
|
||||
body.ContactNumber = updateFields.contactNumber as string;
|
||||
}
|
||||
|
||||
if (updateFields.contactStatus) {
|
||||
body.ContactStatus = updateFields.contactStatus as string;
|
||||
}
|
||||
|
||||
if (updateFields.defaultCurrency) {
|
||||
body.DefaultCurrency = updateFields.defaultCurrency as string;
|
||||
}
|
||||
|
||||
if (updateFields.emailAddress) {
|
||||
body.EmailAddress = updateFields.emailAddress as string;
|
||||
}
|
||||
|
||||
if (updateFields.firstName) {
|
||||
body.FirstName = updateFields.firstName as string;
|
||||
}
|
||||
|
||||
if (updateFields.lastName) {
|
||||
body.LastName = updateFields.lastName as string;
|
||||
}
|
||||
|
||||
if (updateFields.purchasesDefaultAccountCode) {
|
||||
body.PurchasesDefaultAccountCode = updateFields.purchasesDefaultAccountCode as string;
|
||||
}
|
||||
|
||||
if (updateFields.salesDefaultAccountCode) {
|
||||
body.SalesDefaultAccountCode = updateFields.salesDefaultAccountCode as string;
|
||||
}
|
||||
|
||||
if (updateFields.skypeUserName) {
|
||||
body.SkypeUserName = updateFields.skypeUserName as string;
|
||||
}
|
||||
|
||||
if (updateFields.taxNumber) {
|
||||
body.taxNumber = updateFields.taxNumber as string;
|
||||
}
|
||||
|
||||
if (updateFields.xeroNetworkKey) {
|
||||
body.xeroNetworkKey = updateFields.xeroNetworkKey as string;
|
||||
}
|
||||
|
||||
// if (phonesUi) {
|
||||
// const phoneValues = phonesUi?.phonesValues as IDataObject[];
|
||||
// if (phoneValues) {
|
||||
// const phones: IPhone[] = [];
|
||||
// for (const phoneValue of phoneValues) {
|
||||
// const phone: IPhone = {};
|
||||
// phone.Type = phoneValue.type as string;
|
||||
// phone.PhoneNumber = phoneValue.PhoneNumber as string;
|
||||
// phone.PhoneAreaCode = phoneValue.phoneAreaCode as string;
|
||||
// phone.PhoneCountryCode = phoneValue.phoneCountryCode as string;
|
||||
// phones.push(phone);
|
||||
// }
|
||||
// body.Phones = phones;
|
||||
// }
|
||||
// }
|
||||
|
||||
// if (addressesUi) {
|
||||
// const addressValues = addressesUi?.addressesValues as IDataObject[];
|
||||
// if (addressValues) {
|
||||
// const addresses: IAddress[] = [];
|
||||
// for (const addressValue of addressValues) {
|
||||
// const address: IAddress = {};
|
||||
// address.Type = addressValue.type as string;
|
||||
// address.AddressLine1 = addressValue.line1 as string;
|
||||
// address.AddressLine2 = addressValue.line2 as string;
|
||||
// address.City = addressValue.city as string;
|
||||
// address.Region = addressValue.region as string;
|
||||
// address.PostalCode = addressValue.postalCode as string;
|
||||
// address.Country = addressValue.country as string;
|
||||
// address.AttentionTo = addressValue.attentionTo as string;
|
||||
// addresses.push(address);
|
||||
// }
|
||||
// body.Addresses = addresses;
|
||||
// }
|
||||
// }
|
||||
|
||||
responseData = await xeroApiRequest.call(this, 'POST', `/Contacts/${contactId}`, { organizationId, Contacts: [body] });
|
||||
responseData = responseData.Contacts;
|
||||
if (Array.isArray(responseData)) {
|
||||
returnData.push.apply(returnData, responseData as IDataObject[]);
|
||||
} else {
|
||||
returnData.push(responseData as IDataObject);
|
||||
}
|
||||
}
|
||||
if (Array.isArray(responseData)) {
|
||||
returnData.push.apply(returnData, responseData as IDataObject[]);
|
||||
} else {
|
||||
returnData.push(responseData as IDataObject);
|
||||
} catch (error) {
|
||||
if (this.continueOnFail()) {
|
||||
returnData.push({ error: error.message });
|
||||
continue;
|
||||
}
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
return [this.helpers.returnJsonArray(returnData)];
|
||||
|
||||
Reference in New Issue
Block a user