mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 12:57:29 -08:00
✨ Add Microsoft Dynamics CRM Node (#2292)
* ✨ Microsoft Dynamics CRM * ⚡ Improvements * ⚡ Improvements * ⚡ Minor improvements Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
parent
e39678b54f
commit
a798c6c0f6
|
@ -0,0 +1,30 @@
|
||||||
|
import {
|
||||||
|
ICredentialType,
|
||||||
|
INodeProperties,
|
||||||
|
} from 'n8n-workflow';
|
||||||
|
|
||||||
|
export class MicrosoftDynamicsOAuth2Api implements ICredentialType {
|
||||||
|
name = 'microsoftDynamicsOAuth2Api';
|
||||||
|
extends = [
|
||||||
|
'microsoftOAuth2Api',
|
||||||
|
];
|
||||||
|
displayName = 'Microsoft Dynamics OAuth2 API';
|
||||||
|
documentationUrl = 'microsoft';
|
||||||
|
properties: INodeProperties[] = [
|
||||||
|
//https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-permissions-and-consent
|
||||||
|
{
|
||||||
|
displayName: 'Subdomain',
|
||||||
|
name: 'subdomain',
|
||||||
|
type: 'string',
|
||||||
|
required: true,
|
||||||
|
placeholder: 'organization',
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Scope',
|
||||||
|
name: 'scope',
|
||||||
|
type: 'hidden',
|
||||||
|
default: '=openid offline_access https://{{$self.subdomain}}.crm.dynamics.com/.default',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
502
packages/nodes-base/nodes/Microsoft/Dynamics/GenericFunctions.ts
Normal file
502
packages/nodes-base/nodes/Microsoft/Dynamics/GenericFunctions.ts
Normal file
|
@ -0,0 +1,502 @@
|
||||||
|
import {
|
||||||
|
OptionsWithUri,
|
||||||
|
} from 'request';
|
||||||
|
|
||||||
|
import {
|
||||||
|
IExecuteFunctions,
|
||||||
|
IExecuteSingleFunctions,
|
||||||
|
ILoadOptionsFunctions,
|
||||||
|
} from 'n8n-core';
|
||||||
|
|
||||||
|
import {
|
||||||
|
IDataObject,
|
||||||
|
INodePropertyOptions,
|
||||||
|
NodeApiError,
|
||||||
|
} from 'n8n-workflow';
|
||||||
|
|
||||||
|
export async function microsoftApiRequest(this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, method: string, resource: string, body: any = {}, qs: IDataObject = {}, uri?: string, option: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
||||||
|
const credenitals = await this.getCredentials('microsoftDynamicsOAuth2Api') as { domain: string };
|
||||||
|
|
||||||
|
let options: OptionsWithUri = {
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json',
|
||||||
|
'accept': 'application/json',
|
||||||
|
'Prefer': 'return=representation',
|
||||||
|
},
|
||||||
|
method,
|
||||||
|
body,
|
||||||
|
qs,
|
||||||
|
uri: uri || `https://${credenitals.subdomain}.crm.dynamics.com/api/data/v9.2${resource}`,
|
||||||
|
json: true,
|
||||||
|
};
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (Object.keys(option).length !== 0) {
|
||||||
|
options = Object.assign({}, options, option);
|
||||||
|
}
|
||||||
|
//@ts-ignore
|
||||||
|
return await this.helpers.requestOAuth2.call(this, 'microsoftDynamicsOAuth2Api', options, { property: 'id_token' });
|
||||||
|
} catch (error) {
|
||||||
|
throw new NodeApiError(this.getNode(), error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function microsoftApiRequestAllItems(this: IExecuteFunctions | ILoadOptionsFunctions, propertyName: string, method: string, endpoint: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
||||||
|
|
||||||
|
const returnData: IDataObject[] = [];
|
||||||
|
|
||||||
|
let responseData;
|
||||||
|
let uri: string | undefined;
|
||||||
|
query['$top'] = 100;
|
||||||
|
|
||||||
|
do {
|
||||||
|
responseData = await microsoftApiRequest.call(this, method, endpoint, body, query, uri);
|
||||||
|
uri = responseData['@odata.nextLink'];
|
||||||
|
returnData.push.apply(returnData, responseData[propertyName]);
|
||||||
|
} while (
|
||||||
|
responseData['@odata.nextLink'] !== undefined
|
||||||
|
);
|
||||||
|
|
||||||
|
return returnData;
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function getPicklistOptions(this: ILoadOptionsFunctions, entityName: string, attributeName: string): Promise<INodePropertyOptions[]> {
|
||||||
|
const returnData: INodePropertyOptions[] = [];
|
||||||
|
const endpoint = `/EntityDefinitions(LogicalName='${entityName}')/Attributes(LogicalName='${attributeName}')/Microsoft.Dynamics.CRM.PicklistAttributeMetadata?$select=LogicalName&$expand=OptionSet($select=Options),GlobalOptionSet($select=Options)`;
|
||||||
|
const { OptionSet: { Options: options } } = await microsoftApiRequest.call(this, 'GET', endpoint);
|
||||||
|
for (const option of options) {
|
||||||
|
returnData.push({
|
||||||
|
name: option.Label.UserLocalizedLabel.Label,
|
||||||
|
value: option.Value,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return returnData;
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function getEntityFields(this: ILoadOptionsFunctions, entityName: string): Promise<IField[]> {
|
||||||
|
const endpoint = `/EntityDefinitions(LogicalName='${entityName}')/Attributes`;
|
||||||
|
const { value } = await microsoftApiRequest.call(this, 'GET', endpoint);
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function adjustAddresses(addresses: [{ [key: string]: string }]) {
|
||||||
|
// tslint:disable-next-line: no-any
|
||||||
|
const results: { [key: string]: any } = {};
|
||||||
|
for (const [index, address] of addresses.entries()) {
|
||||||
|
for (const key of Object.keys(address)) {
|
||||||
|
if (address[key] !== '') {
|
||||||
|
results[`address${index + 1}_${key}`] = address[key];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return results;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getAccountFields() {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
displayName: 'Account Category',
|
||||||
|
name: 'accountcategorycode',
|
||||||
|
type: 'options',
|
||||||
|
typeOptions: {
|
||||||
|
loadOptionsMethod: 'getAccountCategories',
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
description: 'Category to indicate whether the customer account is standard or preferred',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Account Rating',
|
||||||
|
name: 'accountratingcode',
|
||||||
|
type: 'options',
|
||||||
|
typeOptions: {
|
||||||
|
loadOptionsMethod: 'getAccountRatingCodes',
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Address',
|
||||||
|
name: 'addresses',
|
||||||
|
type: 'fixedCollection',
|
||||||
|
default: {},
|
||||||
|
typeOptions: {
|
||||||
|
multipleValues: true,
|
||||||
|
},
|
||||||
|
placeholder: 'Add Address Field',
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
displayName: 'Address Fields',
|
||||||
|
name: 'address',
|
||||||
|
values: [
|
||||||
|
{
|
||||||
|
displayName: 'Address Type',
|
||||||
|
name: 'addresstypecode',
|
||||||
|
type: 'options',
|
||||||
|
typeOptions: {
|
||||||
|
loadOptionsMethod: 'getAddressTypes',
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Line1',
|
||||||
|
name: 'line1',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Line2',
|
||||||
|
name: 'line2',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Line3',
|
||||||
|
name: 'line3',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'City',
|
||||||
|
name: 'city',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'State or Province',
|
||||||
|
name: 'stateorprovince',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Country',
|
||||||
|
name: 'country',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Name',
|
||||||
|
name: 'name',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Postalcode',
|
||||||
|
name: 'postalcode',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Primary Contact Name',
|
||||||
|
name: 'primarycontactname',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Telephone1',
|
||||||
|
name: 'telephone1',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Telephone2',
|
||||||
|
name: 'telephone2',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Fax',
|
||||||
|
name: 'fax',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Business Type',
|
||||||
|
name: 'businesstypecode',
|
||||||
|
type: 'options',
|
||||||
|
typeOptions: {
|
||||||
|
loadOptionsMethod: 'getBusinessTypes',
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
description: 'The legal designation or other business type of the account for contracts or reporting purposes',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Customer Size',
|
||||||
|
name: 'customersizecode',
|
||||||
|
type: 'options',
|
||||||
|
typeOptions: {
|
||||||
|
loadOptionsMethod: 'getCustomerSizeCodes',
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Customer Type',
|
||||||
|
name: 'customertypecode',
|
||||||
|
type: 'options',
|
||||||
|
typeOptions: {
|
||||||
|
loadOptionsMethod: 'getCustomerTypeCodes',
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Description',
|
||||||
|
name: 'description',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: 'Additional information to describe the account, such as an excerpt from the company’s website',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Email Address 1',
|
||||||
|
name: 'emailaddress1',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: 'The primary email address for the account',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Email Address 2',
|
||||||
|
name: 'emailaddress2',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: 'The secondary email address for the account',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Email Address 3',
|
||||||
|
name: 'emailaddress3',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: 'Alternate email address for the account',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Fax',
|
||||||
|
name: 'fax',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'FTP site URL',
|
||||||
|
name: 'ftpsiteurl',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: 'URL for the account’s FTP site to enable users to access data and share documents',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Industry',
|
||||||
|
name: 'industrycode',
|
||||||
|
type: 'options',
|
||||||
|
typeOptions: {
|
||||||
|
loadOptionsMethod: 'getIndustryCodes',
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
description: 'The account’s primary industry for use in marketing segmentation and demographic analysis',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Name',
|
||||||
|
name: 'name',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
'/resource': [
|
||||||
|
'account',
|
||||||
|
],
|
||||||
|
'/operation': [
|
||||||
|
'update',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
description: 'Company o business name',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Credit Limit',
|
||||||
|
name: 'creditlimit',
|
||||||
|
type: 'number',
|
||||||
|
default: '',
|
||||||
|
description: 'Credit limit of the account. This is a useful reference when you address invoice and accounting issues with the customer',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Number Of Employees',
|
||||||
|
name: 'numberofemployees',
|
||||||
|
type: 'number',
|
||||||
|
default: 0,
|
||||||
|
description: 'Number of employees that work at the account for use in marketing segmentation and demographic analysis',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Payment Terms',
|
||||||
|
name: 'paymenttermscode',
|
||||||
|
type: 'options',
|
||||||
|
typeOptions: {
|
||||||
|
loadOptionsMethod: 'getPaymentTermsCodes',
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
description: 'The payment terms to indicate when the customer needs to pay the total amount',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Preferred Appointment Day',
|
||||||
|
name: 'preferredappointmentdaycode',
|
||||||
|
type: 'options',
|
||||||
|
typeOptions: {
|
||||||
|
loadOptionsMethod: 'getPreferredAppointmentDayCodes',
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
description: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Preferred Appointment Time',
|
||||||
|
name: 'preferredappointmenttimecode',
|
||||||
|
type: 'options',
|
||||||
|
typeOptions: {
|
||||||
|
loadOptionsMethod: 'getPreferredAppointmentTimeCodes',
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
description: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Preferred Contact Method',
|
||||||
|
name: 'preferredcontactmethodcode',
|
||||||
|
type: 'options',
|
||||||
|
typeOptions: {
|
||||||
|
loadOptionsMethod: 'getPreferredContactMethodCodes',
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
description: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Primary Satori ID',
|
||||||
|
name: 'primarysatoriid',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Primary Twitter ID',
|
||||||
|
name: 'primarytwitterid',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Revenue',
|
||||||
|
name: 'revenue',
|
||||||
|
type: 'number',
|
||||||
|
default: '',
|
||||||
|
description: 'The annual revenue for the account, used as an indicator in financial performance analysis',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Shares Outstanding',
|
||||||
|
name: 'sharesoutstanding',
|
||||||
|
type: 'number',
|
||||||
|
default: '',
|
||||||
|
description: 'The number of shares available to the public for the account. This number is used as an indicator in financial performance analysis',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Shipping Method',
|
||||||
|
name: 'shippingmethodcode',
|
||||||
|
type: 'options',
|
||||||
|
typeOptions: {
|
||||||
|
loadOptionsMethod: 'getShippingMethodCodes',
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
description: 'Shipping method for deliveries sent to the account’s address to designate the preferred carrier or other delivery option',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'SIC',
|
||||||
|
name: 'sic',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: 'The Standard Industrial Classification (SIC) code that indicates the account’s primary industry of business, for use in marketing segmentation and demographic analysis',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Stage ID',
|
||||||
|
name: 'stageid',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Stock Exchange',
|
||||||
|
name: 'stockexchange',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: 'The stock exchange at which the account is listed to track their stock and financial performance of the company',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Telephone 1',
|
||||||
|
name: 'telephone1',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: 'The main phone number for this account',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Telephone 2',
|
||||||
|
name: 'telephone2',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: 'The second phone number for this account',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Telephone 3',
|
||||||
|
name: 'telephone3',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: 'The third phone number for this account',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Territory',
|
||||||
|
name: 'territorycode',
|
||||||
|
type: 'options',
|
||||||
|
typeOptions: {
|
||||||
|
loadOptionsMethod: 'getTerritoryCodes',
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
description: 'Region or territory for the account for use in segmentation and analysis',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Ticker Symbol',
|
||||||
|
name: 'tickersymbol',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: 'Type the stock exchange symbol for the account to track financial performance of the company. You can click the code entered in this field to access the latest trading information from MSN Money',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Website URL',
|
||||||
|
name: 'websiteurl',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: 'The account’s website URL to get quick details about the company profile',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Yomi Name',
|
||||||
|
name: 'yominame',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: 'The phonetic spelling of the company name, if specified in Japanese, to make sure the name is pronounced correctly in phone calls and other communications',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
export const sort = (a: { name: string }, b: { name: string }) => {
|
||||||
|
if (a.name < b.name) { return -1; }
|
||||||
|
if (a.name > b.name) { return 1; }
|
||||||
|
return 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
export interface IField {
|
||||||
|
IsRetrievable: boolean;
|
||||||
|
LogicalName: string;
|
||||||
|
IsSearchable: string;
|
||||||
|
IsValidODataAttribute: string;
|
||||||
|
IsValidForRead: string;
|
||||||
|
CanBeSecuredForRead: string;
|
||||||
|
AttributeType: string;
|
||||||
|
IsSortableEnabled: {
|
||||||
|
Value: boolean,
|
||||||
|
};
|
||||||
|
DisplayName: {
|
||||||
|
UserLocalizedLabel: {
|
||||||
|
Label: string
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,249 @@
|
||||||
|
import {
|
||||||
|
IExecuteFunctions,
|
||||||
|
} from 'n8n-core';
|
||||||
|
|
||||||
|
import {
|
||||||
|
IDataObject,
|
||||||
|
ILoadOptionsFunctions,
|
||||||
|
INodeExecutionData,
|
||||||
|
INodePropertyOptions,
|
||||||
|
INodeType,
|
||||||
|
INodeTypeDescription,
|
||||||
|
} from 'n8n-workflow';
|
||||||
|
|
||||||
|
import {
|
||||||
|
adjustAddresses,
|
||||||
|
getEntityFields,
|
||||||
|
getPicklistOptions,
|
||||||
|
IField,
|
||||||
|
microsoftApiRequest,
|
||||||
|
microsoftApiRequestAllItems,
|
||||||
|
sort,
|
||||||
|
} from './GenericFunctions';
|
||||||
|
|
||||||
|
import {
|
||||||
|
accountFields,
|
||||||
|
accountOperations,
|
||||||
|
} from './descriptions';
|
||||||
|
|
||||||
|
export class MicrosoftDynamicsCrm implements INodeType {
|
||||||
|
description: INodeTypeDescription = {
|
||||||
|
displayName: 'Microsoft Dynamics CRM',
|
||||||
|
name: 'microsoftDynamicsCrm',
|
||||||
|
icon: 'file:dynamicsCrm.svg',
|
||||||
|
group: ['input'],
|
||||||
|
version: 1,
|
||||||
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
||||||
|
description: 'Consume Microsoft Dynamics CRM API',
|
||||||
|
defaults: {
|
||||||
|
name: 'Microsoft Dynamics CRM',
|
||||||
|
color: '#000000',
|
||||||
|
},
|
||||||
|
inputs: ['main'],
|
||||||
|
outputs: ['main'],
|
||||||
|
credentials: [
|
||||||
|
{
|
||||||
|
name: 'microsoftDynamicsOAuth2Api',
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
properties: [
|
||||||
|
{
|
||||||
|
displayName: 'Resource',
|
||||||
|
name: 'resource',
|
||||||
|
type: 'options',
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
name: 'Account',
|
||||||
|
value: 'account',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
default: 'account',
|
||||||
|
description: 'The resource to operate on',
|
||||||
|
},
|
||||||
|
...accountOperations,
|
||||||
|
...accountFields,
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
methods = {
|
||||||
|
loadOptions: {
|
||||||
|
async getAccountCategories(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||||
|
return await getPicklistOptions.call(this, 'account', 'accountcategorycode');
|
||||||
|
},
|
||||||
|
async getAccountRatingCodes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||||
|
return await getPicklistOptions.call(this, 'account', 'accountratingcode');
|
||||||
|
},
|
||||||
|
async getAddressTypes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||||
|
return await getPicklistOptions.call(this, 'account', 'address1_addresstypecode');
|
||||||
|
},
|
||||||
|
async getBusinessTypes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||||
|
return await getPicklistOptions.call(this, 'account', 'businesstypecode');
|
||||||
|
},
|
||||||
|
async getCustomerSizeCodes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||||
|
return await getPicklistOptions.call(this, 'account', 'customersizecode');
|
||||||
|
},
|
||||||
|
async getCustomerTypeCodes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||||
|
return await getPicklistOptions.call(this, 'account', 'customertypecode');
|
||||||
|
},
|
||||||
|
async getIndustryCodes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||||
|
return await getPicklistOptions.call(this, 'account', 'industrycode');
|
||||||
|
},
|
||||||
|
async getPaymentTermsCodes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||||
|
return await getPicklistOptions.call(this, 'account', 'paymenttermscode');
|
||||||
|
},
|
||||||
|
async getPreferredAppointmentDayCodes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||||
|
return await getPicklistOptions.call(this, 'account', 'preferredappointmentdaycode');
|
||||||
|
},
|
||||||
|
async getPreferredAppointmentTimeCodes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||||
|
return await getPicklistOptions.call(this, 'account', 'preferredappointmenttimecode');
|
||||||
|
},
|
||||||
|
async getPreferredContactMethodCodes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||||
|
return await getPicklistOptions.call(this, 'account', 'preferredcontactmethodcode');
|
||||||
|
},
|
||||||
|
async getShippingMethodCodes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||||
|
return await getPicklistOptions.call(this, 'account', 'shippingmethodcode');
|
||||||
|
},
|
||||||
|
async getTerritoryCodes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||||
|
return await getPicklistOptions.call(this, 'account', 'territorycode');
|
||||||
|
},
|
||||||
|
async getAccountFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||||
|
const fields = await getEntityFields.call(this, 'account');
|
||||||
|
const isSelectable = (field: IField) => (field.IsValidForRead && field.CanBeSecuredForRead && field.IsValidODataAttribute && field.LogicalName !== 'slaid');
|
||||||
|
return fields.filter(isSelectable).filter(field => field.DisplayName.UserLocalizedLabel?.Label).map(field => ({ name: field.DisplayName.UserLocalizedLabel.Label, value: field.LogicalName })).sort(sort);
|
||||||
|
},
|
||||||
|
async getExpandableAccountFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||||
|
const fields = await getEntityFields.call(this, 'account');
|
||||||
|
const isSelectable = (field: IField) => (field.IsValidForRead && field.CanBeSecuredForRead && field.IsValidODataAttribute && field.AttributeType === 'Lookup' && field.LogicalName !== 'slaid');
|
||||||
|
return fields.filter(isSelectable).map(field => ({ name: field.DisplayName.UserLocalizedLabel.Label, value: field.LogicalName })).sort(sort);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
||||||
|
const items = this.getInputData();
|
||||||
|
const returnData: IDataObject[] = [];
|
||||||
|
const length = items.length as unknown as number;
|
||||||
|
const qs: IDataObject = {};
|
||||||
|
let responseData;
|
||||||
|
const resource = this.getNodeParameter('resource', 0) as string;
|
||||||
|
const operation = this.getNodeParameter('operation', 0) as string;
|
||||||
|
|
||||||
|
for (let i = 0; i < length; i++) {
|
||||||
|
try {
|
||||||
|
if (resource === 'account') {
|
||||||
|
//https://docs.microsoft.com/en-us/powerapps/developer/data-platform/webapi/create-entity-web-api
|
||||||
|
if (operation === 'create') {
|
||||||
|
const name = this.getNodeParameter('name', i) as string;
|
||||||
|
// tslint:disable-next-line: no-any
|
||||||
|
const additionalFields = this.getNodeParameter('additionalFields', i) as { addresses: { address: [{ [key: string]: any }] } };
|
||||||
|
const options = this.getNodeParameter('options', i) as { returnFields: string[] };
|
||||||
|
|
||||||
|
const body = {
|
||||||
|
name,
|
||||||
|
...additionalFields,
|
||||||
|
};
|
||||||
|
|
||||||
|
if (body?.addresses?.address) {
|
||||||
|
Object.assign(body, adjustAddresses(body.addresses.address));
|
||||||
|
//@ts-ignore
|
||||||
|
delete body?.addresses;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (options.returnFields) {
|
||||||
|
options.returnFields.push('accountid');
|
||||||
|
qs['$select'] = options.returnFields.join(',');
|
||||||
|
} else {
|
||||||
|
qs['$select'] = 'accountid';
|
||||||
|
}
|
||||||
|
|
||||||
|
responseData = await microsoftApiRequest.call(this, 'POST', `/accounts`, body, qs);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (operation === 'delete') {
|
||||||
|
//https://docs.microsoft.com/en-us/powerapps/developer/data-platform/webapi/update-delete-entities-using-web-api#basic-delete
|
||||||
|
const accountId = this.getNodeParameter('accountId', i) as string;
|
||||||
|
await microsoftApiRequest.call(this, 'DELETE', `/accounts(${accountId})`, {}, qs);
|
||||||
|
responseData = { success: true };
|
||||||
|
}
|
||||||
|
|
||||||
|
if (operation === 'get') {
|
||||||
|
//https://docs.microsoft.com/en-us/powerapps/developer/data-platform/webapi/retrieve-entity-using-web-api
|
||||||
|
const accountId = this.getNodeParameter('accountId', i) as string;
|
||||||
|
const options = this.getNodeParameter('options', i) as IDataObject;
|
||||||
|
if (options.returnFields) {
|
||||||
|
qs['$select'] = (options.returnFields as string[]).join(',');
|
||||||
|
}
|
||||||
|
if (options.expandFields) {
|
||||||
|
qs['$expand'] = (options.expandFields as string[]).join(',');
|
||||||
|
}
|
||||||
|
responseData = await microsoftApiRequest.call(this, 'GET', `/accounts(${accountId})`, {}, qs);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (operation === 'getAll') {
|
||||||
|
//https://docs.microsoft.com/en-us/powerapps/developer/data-platform/webapi/query-data-web-api
|
||||||
|
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
||||||
|
const options = this.getNodeParameter('options', i) as IDataObject;
|
||||||
|
const filters = this.getNodeParameter('filters', i) as IDataObject;
|
||||||
|
if (options.returnFields) {
|
||||||
|
qs['$select'] = (options.returnFields as string[]).join(',');
|
||||||
|
}
|
||||||
|
if (options.expandFields) {
|
||||||
|
qs['$expand'] = (options.expandFields as string[]).join(',');
|
||||||
|
}
|
||||||
|
if (filters.query) {
|
||||||
|
qs['$filter'] = filters.query as string;
|
||||||
|
}
|
||||||
|
if (returnAll) {
|
||||||
|
responseData = await microsoftApiRequestAllItems.call(this, 'value', 'GET', `/accounts`, {}, qs);
|
||||||
|
} else {
|
||||||
|
qs['$top'] = this.getNodeParameter('limit', 0) as number;
|
||||||
|
responseData = await microsoftApiRequest.call(this, 'GET', `/accounts`, {}, qs);
|
||||||
|
responseData = responseData.value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (operation === 'update') {
|
||||||
|
const accountId = this.getNodeParameter('accountId', i) as string;
|
||||||
|
// tslint:disable-next-line: no-any
|
||||||
|
const updateFields = this.getNodeParameter('updateFields', i) as { addresses: { address: [{ [key: string]: any }] } };
|
||||||
|
const options = this.getNodeParameter('options', i) as { returnFields: string[] };
|
||||||
|
|
||||||
|
const body = {
|
||||||
|
...updateFields,
|
||||||
|
};
|
||||||
|
|
||||||
|
if (body?.addresses?.address) {
|
||||||
|
Object.assign(body, adjustAddresses(body.addresses.address));
|
||||||
|
//@ts-ignore
|
||||||
|
delete body?.addresses;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (options.returnFields) {
|
||||||
|
options.returnFields.push('accountid');
|
||||||
|
qs['$select'] = options.returnFields.join(',');
|
||||||
|
} else {
|
||||||
|
qs['$select'] = 'accountid';
|
||||||
|
}
|
||||||
|
|
||||||
|
responseData = await microsoftApiRequest.call(this, 'PATCH', `/accounts(${accountId})`, body, qs);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Array.isArray(responseData)) {
|
||||||
|
returnData.push(...responseData);
|
||||||
|
} else {
|
||||||
|
returnData.push(responseData as IDataObject);
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
if (this.continueOnFail()) {
|
||||||
|
returnData.push({ error: error.message });
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
throw error;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return [this.helpers.returnJsonArray(returnData)];
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,274 @@
|
||||||
|
import {
|
||||||
|
INodeProperties,
|
||||||
|
} from 'n8n-workflow';
|
||||||
|
|
||||||
|
import {
|
||||||
|
getAccountFields,
|
||||||
|
} from '../GenericFunctions';
|
||||||
|
|
||||||
|
export const accountOperations = [
|
||||||
|
{
|
||||||
|
displayName: 'Operation',
|
||||||
|
name: 'operation',
|
||||||
|
type: 'options',
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
resource: [
|
||||||
|
'account',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
name: 'Create',
|
||||||
|
value: 'create',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Delete',
|
||||||
|
value: 'delete',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Get',
|
||||||
|
value: 'get',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Get All',
|
||||||
|
value: 'getAll',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Update',
|
||||||
|
value: 'update',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
default: 'create',
|
||||||
|
description: 'Operation to perform',
|
||||||
|
},
|
||||||
|
] as INodeProperties[];
|
||||||
|
|
||||||
|
export const accountFields = [
|
||||||
|
// ----------------------------------------
|
||||||
|
// account:create
|
||||||
|
// ----------------------------------------
|
||||||
|
{
|
||||||
|
displayName: 'Name',
|
||||||
|
name: 'name',
|
||||||
|
description: 'Company or business name',
|
||||||
|
type: 'string',
|
||||||
|
required: true,
|
||||||
|
default: '',
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
resource: [
|
||||||
|
'account',
|
||||||
|
],
|
||||||
|
operation: [
|
||||||
|
'create',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Additional Fields',
|
||||||
|
name: 'additionalFields',
|
||||||
|
type: 'collection',
|
||||||
|
placeholder: 'Add Field',
|
||||||
|
default: {},
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
resource: [
|
||||||
|
'account',
|
||||||
|
],
|
||||||
|
operation: [
|
||||||
|
'create',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
options: [
|
||||||
|
...getAccountFields(),
|
||||||
|
],
|
||||||
|
},
|
||||||
|
// ----------------------------------------
|
||||||
|
// account:get
|
||||||
|
// ----------------------------------------
|
||||||
|
{
|
||||||
|
displayName: 'Account ID',
|
||||||
|
name: 'accountId',
|
||||||
|
type: 'string',
|
||||||
|
required: true,
|
||||||
|
default: '',
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
resource: [
|
||||||
|
'account',
|
||||||
|
],
|
||||||
|
operation: [
|
||||||
|
'delete',
|
||||||
|
'get',
|
||||||
|
'update',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
// ----------------------------------------
|
||||||
|
// account:getAll
|
||||||
|
// ----------------------------------------
|
||||||
|
{
|
||||||
|
displayName: 'Return All',
|
||||||
|
name: 'returnAll',
|
||||||
|
type: 'boolean',
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
resource: [
|
||||||
|
'account',
|
||||||
|
],
|
||||||
|
operation: [
|
||||||
|
'getAll',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
default: false,
|
||||||
|
description: 'If all results should be returned or only up to a given limit.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Limit',
|
||||||
|
name: 'limit',
|
||||||
|
type: 'number',
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
resource: [
|
||||||
|
'account',
|
||||||
|
],
|
||||||
|
operation: [
|
||||||
|
'getAll',
|
||||||
|
],
|
||||||
|
returnAll: [
|
||||||
|
false,
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
typeOptions: {
|
||||||
|
minValue: 1,
|
||||||
|
maxValue: 10,
|
||||||
|
},
|
||||||
|
default: 5,
|
||||||
|
description: 'How many results to return.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Options',
|
||||||
|
name: 'options',
|
||||||
|
type: 'collection',
|
||||||
|
placeholder: 'Add Option',
|
||||||
|
default: {},
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
resource: [
|
||||||
|
'account',
|
||||||
|
],
|
||||||
|
operation: [
|
||||||
|
'get',
|
||||||
|
'getAll',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
displayName: 'Return Fields',
|
||||||
|
name: 'returnFields',
|
||||||
|
type: 'multiOptions',
|
||||||
|
typeOptions: {
|
||||||
|
loadOptionsMethod: 'getAccountFields',
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Expand Fields',
|
||||||
|
name: 'expandFields',
|
||||||
|
type: 'multiOptions',
|
||||||
|
typeOptions: {
|
||||||
|
loadOptionsMethod: 'getExpandableAccountFields',
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Filters',
|
||||||
|
name: 'filters',
|
||||||
|
type: 'collection',
|
||||||
|
placeholder: 'Add Filter',
|
||||||
|
default: {},
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
resource: [
|
||||||
|
'account',
|
||||||
|
],
|
||||||
|
operation: [
|
||||||
|
'getAll',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
displayName: 'Query',
|
||||||
|
name: 'query',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: 'Query to filter the results. Check <a href="https://docs.microsoft.com/en-us/powerapps/developer/data-platform/webapi/query-data-web-api#filter-results" target="_blank">filters</a>',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
|
||||||
|
// ----------------------------------------
|
||||||
|
// account:update
|
||||||
|
// ----------------------------------------
|
||||||
|
{
|
||||||
|
displayName: 'Update Fields',
|
||||||
|
name: 'updateFields',
|
||||||
|
type: 'collection',
|
||||||
|
placeholder: 'Add Field',
|
||||||
|
default: {},
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
resource: [
|
||||||
|
'account',
|
||||||
|
],
|
||||||
|
operation: [
|
||||||
|
'update',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
options: [
|
||||||
|
...getAccountFields(),
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Options',
|
||||||
|
name: 'options',
|
||||||
|
type: 'collection',
|
||||||
|
placeholder: 'Add Option',
|
||||||
|
default: {},
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
resource: [
|
||||||
|
'account',
|
||||||
|
],
|
||||||
|
operation: [
|
||||||
|
'create',
|
||||||
|
'update',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
displayName: 'Return Fields',
|
||||||
|
name: 'returnFields',
|
||||||
|
type: 'multiOptions',
|
||||||
|
typeOptions: {
|
||||||
|
loadOptionsMethod: 'getAccountFields',
|
||||||
|
},
|
||||||
|
default: '',
|
||||||
|
description: 'Fields the response will include',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
] as INodeProperties[];
|
|
@ -0,0 +1 @@
|
||||||
|
export * from './AccountDescription';
|
|
@ -0,0 +1 @@
|
||||||
|
<svg fill="#000000" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" width="50px" height="50px"><path d="M 11.986328 0 C 11.815078 0.002 11.645188 0.048671875 11.492188 0.13867188 C 11.188188 0.31867188 11 0.646 11 1 L 11 13.353516 C 11 13.737516 11.219406 14.089859 11.566406 14.255859 L 29.566406 22.900391 C 29.703406 22.966391 29.853 23 30 23 C 30.194 23 30.387688 22.943031 30.554688 22.832031 L 39.554688 16.832031 C 39.844687 16.639031 40.013047 16.307984 39.998047 15.958984 C 39.984047 15.610984 39.789375 15.295953 39.484375 15.126953 L 12.484375 0.12695312 C 12.329375 0.040953125 12.157578 -0.002 11.986328 0 z M 12.025391 17 C 11.850016 16.9955 11.674625 17.038453 11.515625 17.126953 C 11.197625 17.302953 11 17.636 11 18 L 11 48.998047 C 11 49.758047 11.813469 50.241953 12.480469 49.876953 L 40.496094 33.867188 C 40.808094 33.689188 41 33.359 41 33 L 41 20 C 41 19.592 40.753 19.225266 40.375 19.072266 C 39.995 18.920266 39.562297 19.011688 39.279297 19.304688 L 13 47 L 20.955078 23.294922 C 21.088078 22.861922 20.913297 22.392344 20.529297 22.152344 L 12.529297 17.152344 C 12.374797 17.055844 12.200766 17.0045 12.025391 17 z"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -172,6 +172,7 @@
|
||||||
"dist/credentials/MediumApi.credentials.js",
|
"dist/credentials/MediumApi.credentials.js",
|
||||||
"dist/credentials/MediumOAuth2Api.credentials.js",
|
"dist/credentials/MediumOAuth2Api.credentials.js",
|
||||||
"dist/credentials/MessageBirdApi.credentials.js",
|
"dist/credentials/MessageBirdApi.credentials.js",
|
||||||
|
"dist/credentials/MicrosoftDynamicsOAuth2Api.credentials.js",
|
||||||
"dist/credentials/MicrosoftExcelOAuth2Api.credentials.js",
|
"dist/credentials/MicrosoftExcelOAuth2Api.credentials.js",
|
||||||
"dist/credentials/MicrosoftOAuth2Api.credentials.js",
|
"dist/credentials/MicrosoftOAuth2Api.credentials.js",
|
||||||
"dist/credentials/MicrosoftOneDriveOAuth2Api.credentials.js",
|
"dist/credentials/MicrosoftOneDriveOAuth2Api.credentials.js",
|
||||||
|
@ -486,6 +487,7 @@
|
||||||
"dist/nodes/Medium/Medium.node.js",
|
"dist/nodes/Medium/Medium.node.js",
|
||||||
"dist/nodes/Merge.node.js",
|
"dist/nodes/Merge.node.js",
|
||||||
"dist/nodes/MessageBird/MessageBird.node.js",
|
"dist/nodes/MessageBird/MessageBird.node.js",
|
||||||
|
"dist/nodes/Microsoft/Dynamics/MicrosoftDynamicsCrm.node.js",
|
||||||
"dist/nodes/Microsoft/Excel/MicrosoftExcel.node.js",
|
"dist/nodes/Microsoft/Excel/MicrosoftExcel.node.js",
|
||||||
"dist/nodes/Microsoft/OneDrive/MicrosoftOneDrive.node.js",
|
"dist/nodes/Microsoft/OneDrive/MicrosoftOneDrive.node.js",
|
||||||
"dist/nodes/Microsoft/Outlook/MicrosoftOutlook.node.js",
|
"dist/nodes/Microsoft/Outlook/MicrosoftOutlook.node.js",
|
||||||
|
|
Loading…
Reference in a new issue