Add upsert operation to various resources (Salesforce) (#1743)

*  Add upsert operation to various resources (Salesforce)

The operation was added to the resources: Contact, Account, Lead, Opportunity and Custom Object.

*  Rename operation create/update to Create or Update

*  Improvements

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
This commit is contained in:
Ricardo Espinoza
2021-06-09 23:25:20 -04:00
committed by GitHub
parent e298d2a1a8
commit 6ade0a00f5
11 changed files with 349 additions and 15 deletions

View File

@@ -1,4 +1,6 @@
export interface ILead {
// tslint:disable-next-line: no-any
[key: string]: any;
Company?: string;
LastName?: string;
Email?: string;