mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
79fe57dad8
* WIP: Node Actions List UI * WIP: Recommended Actions and preseting of fields * WIP: Resource category * 🎨 Moved actions categorisation to the server * 🏷️ Add missing INodeAction type * ✨ Improve SSR categorisation, fix adding of mixed actions * ♻️ Refactor CategorizedItems to composition api, style fixes * WIP: Adding multiple nodes * ♻️ Refactor rest of the NodeCreator component to composition API, conver globalLinkActions to composable * ✨ Allow actions dragging, fix search and refactor passing of actions to categorized items * 💄 Fix node actions title * Migrate to the pinia store, add posthog feature and various fixes * 🐛 Fix filtering of trigger actions when not merged * fix: N8N-5439 — Do not use simple node item when at NodeHelperPanel root * 🐛 Design review fixes * 🐛 Fix disabling of merged actions * Fix trigger root filtering * ✨ Allow for custom node actions parser, introduce hubspot parser * 🐛 Fix initial node params validation, fix position of second added node * 🐛 Introduce operations category, removed canvas node names overrride, fix API actions display and prevent dragging of action nodes * ✨ Prevent NDV auto-open feature flag * 🐛 Inject recommened action for trigger nodes without actions * Refactored NodeCreatorNode to Storybook, change filtering of merged nodes for the trigger helper panel, minor fixes * Improve rendering of app nodes and animation * Cleanup, any only enable accordion transition on triggerhelperpanel * Hide node creator scrollbars in Firefox * Minor styles fixes * Do not copy the array in rendering method * Removed unused props * Fix memory leak * Fix categorisation of regular nodes with a single resource * Implement telemetry calls for node actions * Move categorization to FE * Fix client side actions categorisation * Skip custom action show * Only load tooltip for NodeIcon if necessary * Fix lodash startCase import * Remove lodash.startcase * Cleanup * Fix node creator autofocus on "tab" * Prevent posthog getFeatureFlag from crashing * Debugging preview env search issues * Remove logs * Make sure the pre-filled params are update not overwritten * Get rid of transition in itemiterator * WIP: Rough version of NodeActions keyboard navigation, replace nodeCreator composable with Pinia store module * Rewrite to add support for ActionItem to ItemIterator and make CategorizedItems accept items props * Fix category item counter & cleanup * Add APIHint to actions search no-result, clean up NodeCreatorNode * Improve node actions no results message * Remove logging, fix filtering of recommended placeholder category * Remove unused NodeActions component and node merging feature falg * Do not show regular nodes without actions * Make sure to add manual trigger when adding http node via actions hint * Fixed api hint footer line height * Prevent pointer-events od NodeIcon img and remove "this" from template * Address PR points * Fix e2e specs * Make sure canvas ia loaded * Make sure canvas ia loaded before opening nodeCreator in e2e spec * Fix flaky workflows tags e2e getter * Imrpove node creator click outside UX, add manual node to regular nodes added from trigger panel * Add manual trigger node if dragging regular from trigger panel
627 lines
18 KiB
TypeScript
627 lines
18 KiB
TypeScript
import { IExecuteFunctions } from 'n8n-core';
|
|
|
|
import {
|
|
IDataObject,
|
|
INodeExecutionData,
|
|
INodeType,
|
|
INodeTypeDescription,
|
|
jsonParse,
|
|
NodeOperationError,
|
|
} from 'n8n-workflow';
|
|
|
|
import { contactFields, contactOperations } from './ContactDescription';
|
|
|
|
import { companyFields, companyOperations } from './CompanyDescription';
|
|
|
|
import { dealFields, dealOperations } from './DealDescription';
|
|
|
|
import { IContact, IContactUpdate } from './ContactInterface';
|
|
|
|
import {
|
|
agileCrmApiRequest,
|
|
agileCrmApiRequestAllItems,
|
|
agileCrmApiRequestUpdate,
|
|
getFilterRules,
|
|
simplifyResponse,
|
|
validateJSON,
|
|
} from './GenericFunctions';
|
|
|
|
import { IDeal } from './DealInterface';
|
|
|
|
import { IFilter, ISearchConditions } from './FilterInterface';
|
|
|
|
export class AgileCrm implements INodeType {
|
|
description: INodeTypeDescription = {
|
|
displayName: 'Agile CRM',
|
|
name: 'agileCrm',
|
|
// eslint-disable-next-line n8n-nodes-base/node-class-description-icon-not-svg
|
|
icon: 'file:agilecrm.png',
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
group: ['transform'],
|
|
version: 1,
|
|
description: 'Consume Agile CRM API',
|
|
defaults: {
|
|
name: 'Agile CRM',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
credentials: [
|
|
{
|
|
name: 'agileCrmApi',
|
|
required: true,
|
|
},
|
|
],
|
|
properties: [
|
|
// Node properties which the user gets displayed and
|
|
// can change on the node.
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
options: [
|
|
{
|
|
name: 'Company',
|
|
value: 'company',
|
|
},
|
|
{
|
|
name: 'Contact',
|
|
value: 'contact',
|
|
},
|
|
{
|
|
name: 'Deal',
|
|
value: 'deal',
|
|
},
|
|
],
|
|
default: 'contact',
|
|
},
|
|
// CONTACT
|
|
...contactOperations,
|
|
...contactFields,
|
|
|
|
// COMPANY
|
|
...companyOperations,
|
|
...companyFields,
|
|
|
|
// DEAL
|
|
...dealOperations,
|
|
...dealFields,
|
|
],
|
|
};
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
const items = this.getInputData();
|
|
const returnData: IDataObject[] = [];
|
|
let responseData;
|
|
const resource = this.getNodeParameter('resource', 0);
|
|
const operation = this.getNodeParameter('operation', 0);
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
|
if (resource === 'contact' || resource === 'company') {
|
|
const idGetter = resource === 'contact' ? 'contactId' : 'companyId';
|
|
|
|
if (operation === 'get') {
|
|
const contactId = this.getNodeParameter(idGetter, i) as string;
|
|
|
|
const endpoint = `api/contacts/${contactId}`;
|
|
responseData = await agileCrmApiRequest.call(this, 'GET', endpoint, {});
|
|
} else if (operation === 'delete') {
|
|
const contactId = this.getNodeParameter(idGetter, i) as string;
|
|
|
|
const endpoint = `api/contacts/${contactId}`;
|
|
responseData = await agileCrmApiRequest.call(this, 'DELETE', endpoint, {});
|
|
} else if (operation === 'getAll') {
|
|
const simple = this.getNodeParameter('simple', 0) as boolean;
|
|
const returnAll = this.getNodeParameter('returnAll', 0);
|
|
const filterType = this.getNodeParameter('filterType', i) as string;
|
|
const sort = this.getNodeParameter('options.sort.sort', i, {}) as {
|
|
direction: string;
|
|
field: string;
|
|
};
|
|
const body: IDataObject = {};
|
|
const filterJson: IFilter = {};
|
|
|
|
let contactType = '';
|
|
if (resource === 'contact') {
|
|
contactType = 'PERSON';
|
|
} else {
|
|
contactType = 'COMPANY';
|
|
}
|
|
filterJson.contact_type = contactType;
|
|
|
|
if (filterType === 'manual') {
|
|
const conditions = this.getNodeParameter(
|
|
'filters.conditions',
|
|
i,
|
|
[],
|
|
) as ISearchConditions[];
|
|
const matchType = this.getNodeParameter('matchType', i) as string;
|
|
let rules;
|
|
if (conditions.length !== 0) {
|
|
rules = getFilterRules(conditions, matchType);
|
|
Object.assign(filterJson, rules);
|
|
} else {
|
|
throw new NodeOperationError(
|
|
this.getNode(),
|
|
'At least one condition must be added.',
|
|
{ itemIndex: i },
|
|
);
|
|
}
|
|
} else if (filterType === 'json') {
|
|
const filterJsonRules = this.getNodeParameter('filterJson', i) as string;
|
|
if (validateJSON(filterJsonRules) !== undefined) {
|
|
Object.assign(filterJson, jsonParse(filterJsonRules));
|
|
} else {
|
|
throw new NodeOperationError(this.getNode(), 'Filter (JSON) must be a valid json', {
|
|
itemIndex: i,
|
|
});
|
|
}
|
|
}
|
|
body.filterJson = JSON.stringify(filterJson);
|
|
|
|
if (sort) {
|
|
if (sort.direction === 'ASC') {
|
|
body.global_sort_key = sort.field;
|
|
} else if (sort.direction === 'DESC') {
|
|
body.global_sort_key = `-${sort.field}`;
|
|
}
|
|
}
|
|
|
|
if (returnAll) {
|
|
body.page_size = 100;
|
|
responseData = await agileCrmApiRequestAllItems.call(
|
|
this,
|
|
'POST',
|
|
`api/filters/filter/dynamic-filter`,
|
|
body,
|
|
undefined,
|
|
undefined,
|
|
true,
|
|
);
|
|
} else {
|
|
body.page_size = this.getNodeParameter('limit', 0);
|
|
responseData = await agileCrmApiRequest.call(
|
|
this,
|
|
'POST',
|
|
`api/filters/filter/dynamic-filter`,
|
|
body,
|
|
undefined,
|
|
undefined,
|
|
true,
|
|
);
|
|
}
|
|
|
|
if (simple) {
|
|
responseData = simplifyResponse(responseData);
|
|
}
|
|
} else if (operation === 'create') {
|
|
const jsonParameters = this.getNodeParameter('jsonParameters', i);
|
|
const body: IContact = {};
|
|
const properties: IDataObject[] = [];
|
|
|
|
if (jsonParameters) {
|
|
const additionalFieldsJson = this.getNodeParameter('additionalFieldsJson', i) as string;
|
|
|
|
if (additionalFieldsJson !== '') {
|
|
if (validateJSON(additionalFieldsJson) !== undefined) {
|
|
Object.assign(body, jsonParse(additionalFieldsJson));
|
|
} else {
|
|
throw new NodeOperationError(
|
|
this.getNode(),
|
|
'Additional fields must be a valid JSON',
|
|
{ itemIndex: i },
|
|
);
|
|
}
|
|
}
|
|
} else {
|
|
const additionalFields = this.getNodeParameter('additionalFields', i);
|
|
|
|
// if company, add 'company' as type. default is person
|
|
if (resource === 'company') {
|
|
body.type = 'COMPANY';
|
|
}
|
|
if (additionalFields.starValue) {
|
|
body.star_value = additionalFields.starValue as string;
|
|
}
|
|
if (additionalFields.tags) {
|
|
body.tags = additionalFields.tags as string[];
|
|
}
|
|
|
|
// Contact specific properties
|
|
if (resource === 'contact') {
|
|
if (additionalFields.firstName) {
|
|
properties.push({
|
|
type: 'SYSTEM',
|
|
name: 'first_name',
|
|
value: additionalFields.firstName as string,
|
|
} as IDataObject);
|
|
}
|
|
if (additionalFields.lastName) {
|
|
properties.push({
|
|
type: 'SYSTEM',
|
|
name: 'last_name',
|
|
value: additionalFields.lastName as string,
|
|
} as IDataObject);
|
|
}
|
|
if (additionalFields.company) {
|
|
properties.push({
|
|
type: 'SYSTEM',
|
|
name: 'company',
|
|
value: additionalFields.company as string,
|
|
} as IDataObject);
|
|
}
|
|
if (additionalFields.title) {
|
|
properties.push({
|
|
type: 'SYSTEM',
|
|
name: 'title',
|
|
value: additionalFields.title as string,
|
|
} as IDataObject);
|
|
}
|
|
if (additionalFields.emailOptions) {
|
|
//@ts-ignore
|
|
additionalFields.emailOptions.emailProperties.map((property) => {
|
|
properties.push({
|
|
type: 'SYSTEM',
|
|
subtype: property.subtype as string,
|
|
name: 'email',
|
|
value: property.email as string,
|
|
} as IDataObject);
|
|
});
|
|
}
|
|
if (additionalFields.addressOptions) {
|
|
//@ts-ignore
|
|
additionalFields.addressOptions.addressProperties.map((property) => {
|
|
properties.push({
|
|
type: 'SYSTEM',
|
|
subtype: property.subtype as string,
|
|
name: 'address',
|
|
value: property.address as string,
|
|
} as IDataObject);
|
|
});
|
|
}
|
|
|
|
if (additionalFields.phoneOptions) {
|
|
//@ts-ignore
|
|
additionalFields.phoneOptions.phoneProperties.map((property) => {
|
|
properties.push({
|
|
type: 'SYSTEM',
|
|
subtype: property.subtype as string,
|
|
name: 'phone',
|
|
value: property.number as string,
|
|
} as IDataObject);
|
|
});
|
|
}
|
|
} else if (resource === 'company') {
|
|
if (additionalFields.email) {
|
|
properties.push({
|
|
type: 'SYSTEM',
|
|
name: 'email',
|
|
value: additionalFields.email as string,
|
|
} as IDataObject);
|
|
}
|
|
|
|
if (additionalFields.address) {
|
|
properties.push({
|
|
type: 'SYSTEM',
|
|
name: 'address',
|
|
value: additionalFields.address as string,
|
|
} as IDataObject);
|
|
}
|
|
|
|
if (additionalFields.phone) {
|
|
properties.push({
|
|
type: 'SYSTEM',
|
|
name: 'phone',
|
|
value: additionalFields.phone as string,
|
|
} as IDataObject);
|
|
}
|
|
}
|
|
|
|
if (additionalFields.websiteOptions) {
|
|
//@ts-ignore
|
|
additionalFields.websiteOptions.websiteProperties.map((property) => {
|
|
properties.push({
|
|
type: 'SYSTEM',
|
|
subtype: property.subtype as string,
|
|
name: 'webiste',
|
|
value: property.url as string,
|
|
} as IDataObject);
|
|
});
|
|
}
|
|
|
|
if (additionalFields.customProperties) {
|
|
//@ts-ignore
|
|
additionalFields.customProperties.customProperty.map((property) => {
|
|
properties.push({
|
|
type: 'CUSTOM',
|
|
subtype: property.subtype as string,
|
|
name: property.name,
|
|
value: property.value as string,
|
|
} as IDataObject);
|
|
});
|
|
}
|
|
body.properties = properties;
|
|
}
|
|
const endpoint = 'api/contacts';
|
|
responseData = await agileCrmApiRequest.call(this, 'POST', endpoint, body);
|
|
} else if (operation === 'update') {
|
|
const contactId = this.getNodeParameter(idGetter, i) as string;
|
|
const contactUpdatePayload: IContactUpdate = { id: contactId };
|
|
const jsonParameters = this.getNodeParameter('jsonParameters', i);
|
|
const body: IContact = {};
|
|
const properties: IDataObject[] = [];
|
|
|
|
if (jsonParameters) {
|
|
const additionalFieldsJson = this.getNodeParameter('additionalFieldsJson', i) as string;
|
|
|
|
if (additionalFieldsJson !== '') {
|
|
if (validateJSON(additionalFieldsJson) !== undefined) {
|
|
Object.assign(body, jsonParse(additionalFieldsJson));
|
|
} else {
|
|
throw new NodeOperationError(
|
|
this.getNode(),
|
|
'Additional fields must be a valid JSON',
|
|
{ itemIndex: i },
|
|
);
|
|
}
|
|
}
|
|
} else {
|
|
const additionalFields = this.getNodeParameter('additionalFields', i);
|
|
|
|
if (additionalFields.starValue) {
|
|
body.star_value = additionalFields.starValue as string;
|
|
}
|
|
if (additionalFields.tags) {
|
|
body.tags = additionalFields.tags as string[];
|
|
}
|
|
|
|
// Contact specific properties
|
|
if (resource === 'contact') {
|
|
if (additionalFields.leadScore) {
|
|
body.lead_score = additionalFields.leadScore as string;
|
|
}
|
|
|
|
if (additionalFields.firstName) {
|
|
properties.push({
|
|
type: 'SYSTEM',
|
|
name: 'first_name',
|
|
value: additionalFields.firstName as string,
|
|
} as IDataObject);
|
|
}
|
|
if (additionalFields.lastName) {
|
|
properties.push({
|
|
type: 'SYSTEM',
|
|
name: 'last_name',
|
|
value: additionalFields.lastName as string,
|
|
} as IDataObject);
|
|
}
|
|
if (additionalFields.company) {
|
|
properties.push({
|
|
type: 'SYSTEM',
|
|
name: 'company',
|
|
value: additionalFields.company as string,
|
|
} as IDataObject);
|
|
}
|
|
if (additionalFields.title) {
|
|
properties.push({
|
|
type: 'SYSTEM',
|
|
name: 'title',
|
|
value: additionalFields.title as string,
|
|
} as IDataObject);
|
|
}
|
|
if (additionalFields.emailOptions) {
|
|
//@ts-ignore
|
|
additionalFields.emailOptions.emailProperties.map((property) => {
|
|
properties.push({
|
|
type: 'SYSTEM',
|
|
subtype: property.subtype as string,
|
|
name: 'email',
|
|
value: property.email as string,
|
|
} as IDataObject);
|
|
});
|
|
}
|
|
if (additionalFields.addressOptions) {
|
|
//@ts-ignore
|
|
additionalFields.addressOptions.addressProperties.map((property) => {
|
|
properties.push({
|
|
type: 'SYSTEM',
|
|
subtype: property.subtype as string,
|
|
name: 'address',
|
|
value: property.address as string,
|
|
} as IDataObject);
|
|
});
|
|
}
|
|
|
|
if (additionalFields.phoneOptions) {
|
|
//@ts-ignore
|
|
additionalFields.phoneOptions.phoneProperties.map((property) => {
|
|
properties.push({
|
|
type: 'SYSTEM',
|
|
subtype: property.subtype as string,
|
|
name: 'phone',
|
|
value: property.number as string,
|
|
} as IDataObject);
|
|
});
|
|
}
|
|
} else if (resource === 'company') {
|
|
if (additionalFields.email) {
|
|
properties.push({
|
|
type: 'SYSTEM',
|
|
name: 'email',
|
|
value: additionalFields.email as string,
|
|
} as IDataObject);
|
|
}
|
|
|
|
if (additionalFields.address) {
|
|
properties.push({
|
|
type: 'SYSTEM',
|
|
name: 'address',
|
|
value: additionalFields.address as string,
|
|
} as IDataObject);
|
|
}
|
|
|
|
if (additionalFields.phone) {
|
|
properties.push({
|
|
type: 'SYSTEM',
|
|
name: 'phone',
|
|
value: additionalFields.phone as string,
|
|
} as IDataObject);
|
|
}
|
|
}
|
|
|
|
if (additionalFields.websiteOptions) {
|
|
//@ts-ignore
|
|
additionalFields.websiteOptions.websiteProperties.map((property) => {
|
|
properties.push({
|
|
type: 'SYSTEM',
|
|
subtype: property.subtype as string,
|
|
name: 'webiste',
|
|
value: property.url as string,
|
|
} as IDataObject);
|
|
});
|
|
}
|
|
if (additionalFields.customProperties) {
|
|
//@ts-ignore
|
|
additionalFields.customProperties.customProperty.map((property) => {
|
|
properties.push({
|
|
type: 'CUSTOM',
|
|
subtype: property.subtype as string,
|
|
name: property.name,
|
|
value: property.value as string,
|
|
} as IDataObject);
|
|
});
|
|
}
|
|
body.properties = properties;
|
|
}
|
|
|
|
Object.assign(contactUpdatePayload, body);
|
|
|
|
responseData = await agileCrmApiRequestUpdate.call(this, 'PUT', '', contactUpdatePayload);
|
|
}
|
|
} else if (resource === 'deal') {
|
|
if (operation === 'get') {
|
|
const dealId = this.getNodeParameter('dealId', i) as string;
|
|
|
|
const endpoint = `api/opportunity/${dealId}`;
|
|
responseData = await agileCrmApiRequest.call(this, 'GET', endpoint, {});
|
|
} else if (operation === 'delete') {
|
|
const contactId = this.getNodeParameter('dealId', i) as string;
|
|
|
|
const endpoint = `api/opportunity/${contactId}`;
|
|
responseData = await agileCrmApiRequest.call(this, 'DELETE', endpoint, {});
|
|
} else if (operation === 'getAll') {
|
|
const returnAll = this.getNodeParameter('returnAll', 0);
|
|
const endpoint = 'api/opportunity';
|
|
|
|
if (returnAll) {
|
|
const limit = 100;
|
|
responseData = await agileCrmApiRequestAllItems.call(this, 'GET', endpoint, undefined, {
|
|
page_size: limit,
|
|
});
|
|
} else {
|
|
const limit = this.getNodeParameter('limit', 0);
|
|
responseData = await agileCrmApiRequest.call(this, 'GET', endpoint, undefined, {
|
|
page_size: limit,
|
|
});
|
|
}
|
|
} else if (operation === 'create') {
|
|
const jsonParameters = this.getNodeParameter('jsonParameters', i);
|
|
|
|
const body: IDeal = {};
|
|
|
|
if (jsonParameters) {
|
|
const additionalFieldsJson = this.getNodeParameter('additionalFieldsJson', i) as string;
|
|
|
|
if (additionalFieldsJson !== '') {
|
|
if (validateJSON(additionalFieldsJson) !== undefined) {
|
|
Object.assign(body, jsonParse(additionalFieldsJson));
|
|
} else {
|
|
throw new NodeOperationError(
|
|
this.getNode(),
|
|
'Additional fields must be a valid JSON',
|
|
{ itemIndex: i },
|
|
);
|
|
}
|
|
}
|
|
} else {
|
|
const additionalFields = this.getNodeParameter('additionalFields', i);
|
|
|
|
body.close_date = new Date(this.getNodeParameter('closeDate', i) as string).getTime();
|
|
body.expected_value = this.getNodeParameter('expectedValue', i) as number;
|
|
body.milestone = this.getNodeParameter('milestone', i) as string;
|
|
body.probability = this.getNodeParameter('probability', i) as number;
|
|
body.name = this.getNodeParameter('name', i) as string;
|
|
|
|
if (additionalFields.contactIds) {
|
|
body.contactIds = additionalFields.contactIds as string[];
|
|
}
|
|
|
|
if (additionalFields.customData) {
|
|
// @ts-ignore
|
|
body.customData = additionalFields.customData.customProperty as IDealCustomProperty[];
|
|
}
|
|
}
|
|
|
|
const endpoint = 'api/opportunity';
|
|
responseData = await agileCrmApiRequest.call(this, 'POST', endpoint, body);
|
|
} else if (operation === 'update') {
|
|
const jsonParameters = this.getNodeParameter('jsonParameters', i);
|
|
|
|
const body: IDeal = {};
|
|
|
|
if (jsonParameters) {
|
|
const additionalFieldsJson = this.getNodeParameter('additionalFieldsJson', i) as string;
|
|
|
|
if (additionalFieldsJson !== '') {
|
|
if (validateJSON(additionalFieldsJson) !== undefined) {
|
|
Object.assign(body, jsonParse(additionalFieldsJson));
|
|
} else {
|
|
throw new NodeOperationError(
|
|
this.getNode(),
|
|
'Additional fields must be valid JSON',
|
|
{ itemIndex: i },
|
|
);
|
|
}
|
|
}
|
|
} else {
|
|
const additionalFields = this.getNodeParameter('additionalFields', i);
|
|
body.id = this.getNodeParameter('dealId', i) as number;
|
|
|
|
if (additionalFields.expectedValue) {
|
|
body.expected_value = additionalFields.expectedValue as number;
|
|
}
|
|
|
|
if (additionalFields.name) {
|
|
body.name = additionalFields.name as string;
|
|
}
|
|
|
|
if (additionalFields.probability) {
|
|
body.probability = additionalFields.probability as number;
|
|
}
|
|
|
|
if (additionalFields.contactIds) {
|
|
body.contactIds = additionalFields.contactIds as string[];
|
|
}
|
|
|
|
if (additionalFields.customData) {
|
|
// @ts-ignore
|
|
body.customData = additionalFields.customData.customProperty as IDealCustomProperty[];
|
|
}
|
|
}
|
|
|
|
const endpoint = 'api/opportunity/partial-update';
|
|
responseData = await agileCrmApiRequest.call(this, 'PUT', endpoint, body);
|
|
}
|
|
}
|
|
|
|
if (Array.isArray(responseData)) {
|
|
returnData.push.apply(returnData, responseData as IDataObject[]);
|
|
} else {
|
|
returnData.push(responseData as IDataObject);
|
|
}
|
|
}
|
|
|
|
return [this.helpers.returnJsonArray(returnData)];
|
|
}
|
|
}
|