mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
Salesforce (#932)
* fix salesforce error while get all using nextRecordsUrl The uri for using nextRecordsUrl to get all data in salesforce node is error. The right usage is fixed in this pr. * ⚡ Small changes * :zap Small fix Co-authored-by: YErii <yeriime@outlook.com> Co-authored-by: Jan <janober@users.noreply.github.com>
This commit is contained in:
@@ -15,66 +15,84 @@ import {
|
||||
accountFields,
|
||||
accountOperations,
|
||||
} from './AccountDescription';
|
||||
|
||||
import {
|
||||
IAccount,
|
||||
} from './AccountInterface';
|
||||
|
||||
import {
|
||||
attachmentFields,
|
||||
attachmentOperations,
|
||||
} from './AttachmentDescription';
|
||||
|
||||
import {
|
||||
IAttachment,
|
||||
} from './AttachmentInterface';
|
||||
|
||||
import {
|
||||
ICampaignMember,
|
||||
} from './CampaignMemberInterface';
|
||||
|
||||
import {
|
||||
caseFields,
|
||||
caseOperations,
|
||||
} from './CaseDescription';
|
||||
|
||||
import {
|
||||
ICase,
|
||||
ICaseComment,
|
||||
} from './CaseInterface';
|
||||
|
||||
import {
|
||||
contactFields,
|
||||
contactOperations,
|
||||
} from './ContactDescription';
|
||||
|
||||
import {
|
||||
IContact,
|
||||
} from './ContactInterface';
|
||||
|
||||
import {
|
||||
salesforceApiRequest,
|
||||
salesforceApiRequestAllItems,
|
||||
} from './GenericFunctions';
|
||||
|
||||
import {
|
||||
leadFields,
|
||||
leadOperations,
|
||||
} from './LeadDescription';
|
||||
|
||||
import {
|
||||
ILead,
|
||||
} from './LeadInterface';
|
||||
|
||||
import {
|
||||
INote,
|
||||
} from './NoteInterface';
|
||||
|
||||
import {
|
||||
opportunityFields,
|
||||
opportunityOperations,
|
||||
} from './OpportunityDescription';
|
||||
|
||||
import {
|
||||
IOpportunity,
|
||||
} from './OpportunityInterface';
|
||||
|
||||
import {
|
||||
taskFields,
|
||||
taskOperations,
|
||||
} from './TaskDescription';
|
||||
|
||||
import {
|
||||
ITask,
|
||||
} from './TaskInterface';
|
||||
|
||||
import {
|
||||
userFields,
|
||||
userOperations,
|
||||
} from './UserDescription';
|
||||
|
||||
import {
|
||||
IUser,
|
||||
} from './UserInterface';
|
||||
|
||||
Reference in New Issue
Block a user