@pipedream/salesforce_rest_api 1.9.1 → 1.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/actions/add-contact-to-campaign/add-contact-to-campaign.mjs +6 -1
- package/actions/add-lead-to-campaign/add-lead-to-campaign.mjs +6 -1
- package/actions/convert-soap-xml-to-json/convert-soap-xml-to-json.mjs +6 -1
- package/actions/create-account/create-account.mjs +6 -1
- package/actions/create-accounts-batch/create-accounts-batch.mjs +6 -1
- package/actions/create-attachment/create-attachment.mjs +6 -1
- package/actions/create-campaign/create-campaign.mjs +6 -1
- package/actions/create-case/create-case.mjs +6 -1
- package/actions/create-casecomment/create-casecomment.mjs +6 -1
- package/actions/create-contact/create-contact.mjs +6 -1
- package/actions/create-content-note/create-content-note.mjs +6 -1
- package/actions/create-event/create-event.mjs +6 -1
- package/actions/create-lead/create-lead.mjs +6 -1
- package/actions/create-note/create-note.mjs +6 -1
- package/actions/create-opportunities-batch/create-opportunities-batch.mjs +6 -1
- package/actions/create-opportunity/create-opportunity.mjs +6 -1
- package/actions/create-record/create-record.mjs +6 -1
- package/actions/create-task/create-task.mjs +6 -1
- package/actions/create-user/create-user.mjs +6 -1
- package/actions/delete-opportunity/delete-opportunity.mjs +6 -1
- package/actions/delete-record/delete-record.mjs +6 -1
- package/actions/find-records/find-records.mjs +6 -1
- package/actions/get-case/get-case.mjs +6 -1
- package/actions/get-knowledge-articles/get-knowledge-articles.mjs +6 -1
- package/actions/get-knowledge-data-category-groups/get-knowledge-data-category-groups.mjs +6 -1
- package/actions/get-user/get-user.mjs +6 -1
- package/actions/insert-blob-data/insert-blob-data.mjs +6 -1
- package/actions/list-case-comments/list-case-comments.mjs +6 -1
- package/actions/list-email-messages/list-email-messages.mjs +6 -1
- package/actions/list-email-templates/list-email-templates.mjs +6 -1
- package/actions/list-knowledge-articles/list-knowledge-articles.mjs +6 -1
- package/actions/post-feed-to-chatter/post-feed-to-chatter.mjs +6 -1
- package/actions/search-string/search-string.mjs +6 -1
- package/actions/send-email/send-email.mjs +6 -1
- package/actions/soql-search/soql-search.mjs +6 -1
- package/actions/sosl-search/sosl-search.mjs +6 -1
- package/actions/update-account/update-account.mjs +6 -1
- package/actions/update-accounts-batch/update-accounts-batch.mjs +6 -1
- package/actions/update-contact/update-contact.mjs +6 -1
- package/actions/update-email-template/update-email-template.mjs +6 -1
- package/actions/update-opportunities-batch/update-opportunities-batch.mjs +6 -1
- package/actions/update-opportunity/update-opportunity.mjs +6 -1
- package/actions/update-record/update-record.mjs +6 -1
- package/actions/upsert-record/upsert-record.mjs +6 -1
- package/package.json +1 -1
- package/sources/case-updated-instant/case-updated-instant.mjs +1 -1
- package/sources/common/common-updated-record.mjs +0 -1
- package/sources/email-template-updated-instant/email-template-updated-instant.mjs +1 -1
- package/sources/knowledge-article-updated-instant/knowledge-article-updated-instant.mjs +1 -1
- package/sources/new-case-instant/new-case-instant.mjs +1 -1
- package/sources/new-email-template-instant/new-email-template-instant.mjs +1 -1
- package/sources/new-knowledge-article-instant/new-knowledge-article-instant.mjs +1 -1
- package/sources/new-outbound-message/new-outbound-message.mjs +1 -1
- package/sources/new-record-instant/new-record-instant.mjs +1 -1
- package/sources/record-deleted-instant/record-deleted-instant.mjs +1 -1
- package/sources/record-updated-instant/record-updated-instant.mjs +1 -1
|
@@ -5,7 +5,12 @@ export default {
|
|
|
5
5
|
key: "salesforce_rest_api-add-contact-to-campaign",
|
|
6
6
|
name: "Add Contact to Campaign",
|
|
7
7
|
description: "Adds an existing contact to an existing campaign. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.228.0.object_reference.meta/object_reference/sforce_api_objects_campaignmember.htm)",
|
|
8
|
-
version: "0.1.
|
|
8
|
+
version: "0.1.3",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: false,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: false,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
10
15
|
props: {
|
|
11
16
|
salesforce,
|
|
@@ -5,7 +5,12 @@ export default {
|
|
|
5
5
|
key: "salesforce_rest_api-add-lead-to-campaign",
|
|
6
6
|
name: "Add Lead to Campaign",
|
|
7
7
|
description: "Adds an existing lead to an existing campaign. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.228.0.object_reference.meta/object_reference/sforce_api_objects_campaignmember.htm)",
|
|
8
|
-
version: "0.1.
|
|
8
|
+
version: "0.1.3",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: false,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: false,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
10
15
|
props: {
|
|
11
16
|
salesforce,
|
|
@@ -5,7 +5,12 @@ export default {
|
|
|
5
5
|
key: "salesforce_rest_api-convert-soap-xml-to-json",
|
|
6
6
|
name: "Convert SOAP XML Object to JSON",
|
|
7
7
|
description: "Converts a SOAP XML Object received from Salesforce to JSON",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.9",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: false,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: true,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
10
15
|
props: {
|
|
11
16
|
salesforce_rest_api,
|
|
@@ -8,7 +8,12 @@ export default {
|
|
|
8
8
|
key: "salesforce_rest_api-create-account",
|
|
9
9
|
name: "Create Account",
|
|
10
10
|
description: `Creates a Salesforce account. [See the documentation](${docsLink})`,
|
|
11
|
-
version: "0.3.
|
|
11
|
+
version: "0.3.4",
|
|
12
|
+
annotations: {
|
|
13
|
+
destructiveHint: false,
|
|
14
|
+
openWorldHint: true,
|
|
15
|
+
readOnlyHint: false,
|
|
16
|
+
},
|
|
12
17
|
type: "action",
|
|
13
18
|
methods: {
|
|
14
19
|
...common.methods,
|
|
@@ -5,7 +5,12 @@ export default {
|
|
|
5
5
|
key: "salesforce_rest_api-create-accounts-batch",
|
|
6
6
|
name: "Create Accounts (Batch)",
|
|
7
7
|
description: "Create multiple Accounts in Salesforce using Bulk API 2.0. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/datafiles_understanding_bulk2_ingest.htm)",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.3",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: false,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: false,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
10
15
|
methods: {
|
|
11
16
|
...common.methods,
|
|
@@ -18,7 +18,12 @@ export default {
|
|
|
18
18
|
key: "salesforce_rest_api-create-attachment",
|
|
19
19
|
name: "Create Attachment",
|
|
20
20
|
description: `Creates an Attachment on a parent object. [See the documentation](${docsLink})`,
|
|
21
|
-
version: "0.5.
|
|
21
|
+
version: "0.5.4",
|
|
22
|
+
annotations: {
|
|
23
|
+
destructiveHint: false,
|
|
24
|
+
openWorldHint: true,
|
|
25
|
+
readOnlyHint: false,
|
|
26
|
+
},
|
|
22
27
|
type: "action",
|
|
23
28
|
props,
|
|
24
29
|
async run({ $ }) {
|
|
@@ -8,7 +8,12 @@ export default {
|
|
|
8
8
|
key: "salesforce_rest_api-create-campaign",
|
|
9
9
|
name: "Create Campaign",
|
|
10
10
|
description: `Creates a marketing campaign. [See the documentation](${docsLink})`,
|
|
11
|
-
version: "0.3.
|
|
11
|
+
version: "0.3.4",
|
|
12
|
+
annotations: {
|
|
13
|
+
destructiveHint: false,
|
|
14
|
+
openWorldHint: true,
|
|
15
|
+
readOnlyHint: false,
|
|
16
|
+
},
|
|
12
17
|
type: "action",
|
|
13
18
|
methods: {
|
|
14
19
|
...common.methods,
|
|
@@ -8,7 +8,12 @@ export default {
|
|
|
8
8
|
key: "salesforce_rest_api-create-case",
|
|
9
9
|
name: "Create Case",
|
|
10
10
|
description: `Creates a Case, which represents a customer issue or problem. [See the documentation](${docsLink})`,
|
|
11
|
-
version: "0.3.
|
|
11
|
+
version: "0.3.4",
|
|
12
|
+
annotations: {
|
|
13
|
+
destructiveHint: false,
|
|
14
|
+
openWorldHint: true,
|
|
15
|
+
readOnlyHint: false,
|
|
16
|
+
},
|
|
12
17
|
type: "action",
|
|
13
18
|
methods: {
|
|
14
19
|
...common.methods,
|
|
@@ -17,7 +17,12 @@ export default {
|
|
|
17
17
|
key: "salesforce_rest_api-create-casecomment",
|
|
18
18
|
name: "Create Case Comment",
|
|
19
19
|
description: `Creates a Case Comment on a selected Case. [See the documentation](${docsLink})`,
|
|
20
|
-
version: "0.3.
|
|
20
|
+
version: "0.3.4",
|
|
21
|
+
annotations: {
|
|
22
|
+
destructiveHint: false,
|
|
23
|
+
openWorldHint: true,
|
|
24
|
+
readOnlyHint: false,
|
|
25
|
+
},
|
|
21
26
|
type: "action",
|
|
22
27
|
props,
|
|
23
28
|
async run({ $ }) {
|
|
@@ -8,7 +8,12 @@ export default {
|
|
|
8
8
|
key: "salesforce_rest_api-create-contact",
|
|
9
9
|
name: "Create Contact",
|
|
10
10
|
description: `Creates a contact. [See the documentation](${docsLink})`,
|
|
11
|
-
version: "0.3.
|
|
11
|
+
version: "0.3.4",
|
|
12
|
+
annotations: {
|
|
13
|
+
destructiveHint: false,
|
|
14
|
+
openWorldHint: true,
|
|
15
|
+
readOnlyHint: false,
|
|
16
|
+
},
|
|
12
17
|
type: "action",
|
|
13
18
|
methods: {
|
|
14
19
|
...common.methods,
|
|
@@ -27,7 +27,12 @@ export default {
|
|
|
27
27
|
key: "salesforce_rest_api-create-content-note",
|
|
28
28
|
name: "Create Content Note",
|
|
29
29
|
description: `Creates a content note. [See the documentation](${docsLink}) and [Set Up Notes](https://help.salesforce.com/s/articleView?id=sales.notes_admin_setup.htm&type=5).`,
|
|
30
|
-
version: "0.0.
|
|
30
|
+
version: "0.0.4",
|
|
31
|
+
annotations: {
|
|
32
|
+
destructiveHint: false,
|
|
33
|
+
openWorldHint: true,
|
|
34
|
+
readOnlyHint: false,
|
|
35
|
+
},
|
|
31
36
|
type: "action",
|
|
32
37
|
props: {
|
|
33
38
|
...contentNoteProps,
|
|
@@ -9,7 +9,12 @@ export default {
|
|
|
9
9
|
key: "salesforce_rest_api-create-event",
|
|
10
10
|
name: "Create Event",
|
|
11
11
|
description: `Creates an event. [See the documentation](${docsLink})`,
|
|
12
|
-
version: "0.3.
|
|
12
|
+
version: "0.3.4",
|
|
13
|
+
annotations: {
|
|
14
|
+
destructiveHint: false,
|
|
15
|
+
openWorldHint: true,
|
|
16
|
+
readOnlyHint: false,
|
|
17
|
+
},
|
|
13
18
|
type: "action",
|
|
14
19
|
methods: {
|
|
15
20
|
...common.methods,
|
|
@@ -8,7 +8,12 @@ export default {
|
|
|
8
8
|
key: "salesforce_rest_api-create-lead",
|
|
9
9
|
name: "Create Lead",
|
|
10
10
|
description: `Creates a lead. [See the documentation](${docsLink})`,
|
|
11
|
-
version: "0.3.
|
|
11
|
+
version: "0.3.4",
|
|
12
|
+
annotations: {
|
|
13
|
+
destructiveHint: false,
|
|
14
|
+
openWorldHint: true,
|
|
15
|
+
readOnlyHint: false,
|
|
16
|
+
},
|
|
12
17
|
type: "action",
|
|
13
18
|
methods: {
|
|
14
19
|
...common.methods,
|
|
@@ -17,7 +17,12 @@ export default {
|
|
|
17
17
|
key: "salesforce_rest_api-create-note",
|
|
18
18
|
name: "Create Note",
|
|
19
19
|
description: `Creates a note. [See the documentation](${docsLink})`,
|
|
20
|
-
version: "0.3.
|
|
20
|
+
version: "0.3.4",
|
|
21
|
+
annotations: {
|
|
22
|
+
destructiveHint: false,
|
|
23
|
+
openWorldHint: true,
|
|
24
|
+
readOnlyHint: false,
|
|
25
|
+
},
|
|
21
26
|
type: "action",
|
|
22
27
|
props,
|
|
23
28
|
async run({ $ }) {
|
|
@@ -5,7 +5,12 @@ export default {
|
|
|
5
5
|
key: "salesforce_rest_api-create-opportunities-batch",
|
|
6
6
|
name: "Create Opportunities (Batch)",
|
|
7
7
|
description: "Create multiple Opportunities in Salesforce using Bulk API 2.0. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/datafiles_understanding_bulk2_ingest.htm)",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.3",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: false,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: false,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
10
15
|
methods: {
|
|
11
16
|
...common.methods,
|
|
@@ -8,7 +8,12 @@ export default {
|
|
|
8
8
|
key: "salesforce_rest_api-create-opportunity",
|
|
9
9
|
name: "Create Opportunity",
|
|
10
10
|
description: `Creates an opportunity. [See the documentation](${docsLink})`,
|
|
11
|
-
version: "0.3.
|
|
11
|
+
version: "0.3.4",
|
|
12
|
+
annotations: {
|
|
13
|
+
destructiveHint: false,
|
|
14
|
+
openWorldHint: true,
|
|
15
|
+
readOnlyHint: false,
|
|
16
|
+
},
|
|
12
17
|
type: "action",
|
|
13
18
|
methods: {
|
|
14
19
|
...common.methods,
|
|
@@ -8,7 +8,12 @@ export default {
|
|
|
8
8
|
key: "salesforce_rest_api-create-record",
|
|
9
9
|
name: "Create Record",
|
|
10
10
|
description: "Create a record of a given object. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_sobject_create.htm)",
|
|
11
|
-
version: "0.3.
|
|
11
|
+
version: "0.3.4",
|
|
12
|
+
annotations: {
|
|
13
|
+
destructiveHint: false,
|
|
14
|
+
openWorldHint: true,
|
|
15
|
+
readOnlyHint: false,
|
|
16
|
+
},
|
|
12
17
|
type: "action",
|
|
13
18
|
props: {
|
|
14
19
|
salesforce,
|
|
@@ -9,7 +9,12 @@ export default {
|
|
|
9
9
|
key: "salesforce_rest_api-create-task",
|
|
10
10
|
name: "Create Task",
|
|
11
11
|
description: `Creates a task. [See the documentation](${docsLink})`,
|
|
12
|
-
version: "0.4.
|
|
12
|
+
version: "0.4.4",
|
|
13
|
+
annotations: {
|
|
14
|
+
destructiveHint: false,
|
|
15
|
+
openWorldHint: true,
|
|
16
|
+
readOnlyHint: false,
|
|
17
|
+
},
|
|
13
18
|
type: "action",
|
|
14
19
|
methods: {
|
|
15
20
|
...common.methods,
|
|
@@ -9,7 +9,12 @@ export default {
|
|
|
9
9
|
key: "salesforce_rest_api-create-user",
|
|
10
10
|
name: "Create User",
|
|
11
11
|
description: `Creates a Salesforce user. [See the documentation](${docsLink})`,
|
|
12
|
-
version: "0.1.
|
|
12
|
+
version: "0.1.4",
|
|
13
|
+
annotations: {
|
|
14
|
+
destructiveHint: false,
|
|
15
|
+
openWorldHint: true,
|
|
16
|
+
readOnlyHint: false,
|
|
17
|
+
},
|
|
13
18
|
type: "action",
|
|
14
19
|
methods: {
|
|
15
20
|
...common.methods,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "salesforce_rest_api-delete-opportunity",
|
|
5
5
|
name: "Delete Opportunity",
|
|
6
6
|
description: "Deletes an opportunity. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.228.0.api_rest.meta/api_rest/dome_delete_record.htm)",
|
|
7
|
-
version: "0.3.
|
|
7
|
+
version: "0.3.3",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: true,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: false,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
salesforce,
|
|
@@ -5,7 +5,12 @@ export default {
|
|
|
5
5
|
name: "Delete Record",
|
|
6
6
|
description:
|
|
7
7
|
"Deletes an existing record in an object. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_sobject_retrieve_delete.htm)",
|
|
8
|
-
version: "0.2.
|
|
8
|
+
version: "0.2.3",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: true,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: false,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
10
15
|
props: {
|
|
11
16
|
salesforce,
|
|
@@ -5,7 +5,12 @@ export default {
|
|
|
5
5
|
name: "Find Records",
|
|
6
6
|
description:
|
|
7
7
|
"Retrieves selected fields for some or all records of a selected object. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_get_field_values.htm)",
|
|
8
|
-
version: "0.2.
|
|
8
|
+
version: "0.2.3",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: false,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: true,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
10
15
|
props: {
|
|
11
16
|
salesforce,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "salesforce_rest_api-get-case",
|
|
5
5
|
name: "Get Case",
|
|
6
6
|
description: "Retrieves a case by its ID. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_get_field_values.htm)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.4",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: true,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
salesforce,
|
|
@@ -5,7 +5,12 @@ export default {
|
|
|
5
5
|
key: "salesforce_rest_api-get-knowledge-articles",
|
|
6
6
|
name: "Get Knowledge Articles",
|
|
7
7
|
description: "Get a page of online articles for the given language and category through either search or query. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.knowledge_dev.meta/knowledge_dev/sforce_api_rest_retrieve_article_list.htm)",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.2",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: false,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: true,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
10
15
|
props: {
|
|
11
16
|
...common.props,
|
|
@@ -5,7 +5,12 @@ export default {
|
|
|
5
5
|
key: "salesforce_rest_api-get-knowledge-data-category-groups",
|
|
6
6
|
name: "Get Knowledge Data Category Groups",
|
|
7
7
|
description: "Fetch data category groups visible to the current user. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.knowledge_dev.meta/knowledge_dev/resources_knowledge_support_dcgroups.htm)",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.2",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: false,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: true,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
10
15
|
props: {
|
|
11
16
|
...common.props,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "salesforce_rest_api-get-user",
|
|
5
5
|
name: "Get User",
|
|
6
6
|
description: "Retrieves a user by their ID. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_get_field_values.htm)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.4",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: true,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
salesforce,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "salesforce_rest_api-insert-blob-data",
|
|
5
5
|
name: "Insert Blob Data",
|
|
6
6
|
description: "Inserts blob data in Salesforce standard objects. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.228.0.api_rest.meta/api_rest/dome_sobject_insert_update_blob.htm)",
|
|
7
|
-
version: "0.2.
|
|
7
|
+
version: "0.2.11",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: false,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
salesforce,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "salesforce_rest_api-list-case-comments",
|
|
5
5
|
name: "List Case Comments",
|
|
6
6
|
description: "Lists all comments for a case. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_get_field_values.htm)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.4",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: true,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
salesforce,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "salesforce_rest_api-list-email-messages",
|
|
5
5
|
name: "List Email Messages",
|
|
6
6
|
description: "Lists all email messages for a case. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_get_field_values.htm)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.4",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: true,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
salesforce,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "salesforce_rest_api-list-email-templates",
|
|
5
5
|
name: "List Email Templates",
|
|
6
6
|
description: "Lists all email templates. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_emailtemplate.htm)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.4",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: true,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
salesforce,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "salesforce_rest_api-list-knowledge-articles",
|
|
5
5
|
name: "List Knowledge Articles",
|
|
6
6
|
description: "Lists all knowledge articles. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_knowledgearticle.htm)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.4",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: true,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
salesforce,
|
|
@@ -5,7 +5,12 @@ export default {
|
|
|
5
5
|
name: "Post a Message to Chatter Feed",
|
|
6
6
|
description:
|
|
7
7
|
"Post a feed item in Chatter. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/quickreference_post_feed_item.htm)",
|
|
8
|
-
version: "0.1.
|
|
8
|
+
version: "0.1.3",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: false,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: false,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
10
15
|
props: {
|
|
11
16
|
salesforce,
|
|
@@ -5,7 +5,12 @@ export default {
|
|
|
5
5
|
name: "Search Object Records",
|
|
6
6
|
description:
|
|
7
7
|
"Searches for records in an object using a parameterized search. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_search_parameterized_get.htm)",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.5",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: false,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: true,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
10
15
|
props: {
|
|
11
16
|
salesforce,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "salesforce_rest_api-send-email",
|
|
5
5
|
name: "Send Email",
|
|
6
6
|
description: "Sends an email. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_action.meta/api_action/actions_obj_email_simple.htm)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.4",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: false,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
salesforce,
|
|
@@ -7,7 +7,12 @@ export default {
|
|
|
7
7
|
key: "salesforce_rest_api-soql-search",
|
|
8
8
|
name: "SOQL Query (Object Query)",
|
|
9
9
|
description: `Executes a [Salesforce Object Query Language (SOQL)](${docsLink}) query-based, SQL-like search.`,
|
|
10
|
-
version: "0.2.
|
|
10
|
+
version: "0.2.12",
|
|
11
|
+
annotations: {
|
|
12
|
+
destructiveHint: false,
|
|
13
|
+
openWorldHint: true,
|
|
14
|
+
readOnlyHint: true,
|
|
15
|
+
},
|
|
11
16
|
type: "action",
|
|
12
17
|
props: {
|
|
13
18
|
salesforce,
|
|
@@ -12,7 +12,12 @@ export default {
|
|
|
12
12
|
key: "salesforce_rest_api-sosl-search",
|
|
13
13
|
name: "SOSL Search (Object Search)",
|
|
14
14
|
description: `Executes a [Salesforce Object Search Language (SOSL)](${docsLink}) text-based search query.`,
|
|
15
|
-
version: "0.2.
|
|
15
|
+
version: "0.2.11",
|
|
16
|
+
annotations: {
|
|
17
|
+
destructiveHint: false,
|
|
18
|
+
openWorldHint: true,
|
|
19
|
+
readOnlyHint: true,
|
|
20
|
+
},
|
|
16
21
|
type: "action",
|
|
17
22
|
props: {
|
|
18
23
|
salesforce,
|
|
@@ -15,7 +15,12 @@ export default {
|
|
|
15
15
|
key: "salesforce_rest_api-update-account",
|
|
16
16
|
name: "Update Account",
|
|
17
17
|
description: `Updates a Salesforce account. [See the documentation](${docsLink})`,
|
|
18
|
-
version: "0.3.
|
|
18
|
+
version: "0.3.4",
|
|
19
|
+
annotations: {
|
|
20
|
+
destructiveHint: true,
|
|
21
|
+
openWorldHint: true,
|
|
22
|
+
readOnlyHint: false,
|
|
23
|
+
},
|
|
19
24
|
type: "action",
|
|
20
25
|
methods: {
|
|
21
26
|
...common.methods,
|
|
@@ -5,7 +5,12 @@ export default {
|
|
|
5
5
|
key: "salesforce_rest_api-update-accounts-batch",
|
|
6
6
|
name: "Update Accounts (Batch)",
|
|
7
7
|
description: "Update multiple Accounts in Salesforce using Bulk API 2.0. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/datafiles_understanding_bulk2_ingest.htm)",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.3",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: true,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: false,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
10
15
|
methods: {
|
|
11
16
|
...common.methods,
|
|
@@ -16,7 +16,12 @@ export default {
|
|
|
16
16
|
key: "salesforce_rest_api-update-contact",
|
|
17
17
|
name: "Update Contact",
|
|
18
18
|
description: `Updates a contact. [See the documentation](${docsLink})`,
|
|
19
|
-
version: "0.3.
|
|
19
|
+
version: "0.3.4",
|
|
20
|
+
annotations: {
|
|
21
|
+
destructiveHint: true,
|
|
22
|
+
openWorldHint: true,
|
|
23
|
+
readOnlyHint: false,
|
|
24
|
+
},
|
|
20
25
|
type: "action",
|
|
21
26
|
methods: {
|
|
22
27
|
...common.methods,
|
|
@@ -8,7 +8,12 @@ export default {
|
|
|
8
8
|
key: "salesforce_rest_api-update-email-template",
|
|
9
9
|
name: "Update Email Template",
|
|
10
10
|
description: "Updates an email template. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_update_fields.htm)",
|
|
11
|
-
version: "0.0.
|
|
11
|
+
version: "0.0.4",
|
|
12
|
+
annotations: {
|
|
13
|
+
destructiveHint: true,
|
|
14
|
+
openWorldHint: true,
|
|
15
|
+
readOnlyHint: false,
|
|
16
|
+
},
|
|
12
17
|
type: "action",
|
|
13
18
|
props: {
|
|
14
19
|
salesforce,
|
|
@@ -5,7 +5,12 @@ export default {
|
|
|
5
5
|
key: "salesforce_rest_api-update-opportunities-batch",
|
|
6
6
|
name: "Update Opportunities (Batch)",
|
|
7
7
|
description: "Update multiple Opportunities in Salesforce using Bulk API 2.0. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/datafiles_understanding_bulk2_ingest.htm)",
|
|
8
|
-
version: "0.0.
|
|
8
|
+
version: "0.0.3",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: true,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: false,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
10
15
|
methods: {
|
|
11
16
|
...common.methods,
|
|
@@ -16,7 +16,12 @@ export default {
|
|
|
16
16
|
key: "salesforce_rest_api-update-opportunity",
|
|
17
17
|
name: "Update Opportunity",
|
|
18
18
|
description: `Updates an opportunity. [See the documentation](${docsLink})`,
|
|
19
|
-
version: "0.3.
|
|
19
|
+
version: "0.3.4",
|
|
20
|
+
annotations: {
|
|
21
|
+
destructiveHint: true,
|
|
22
|
+
openWorldHint: true,
|
|
23
|
+
readOnlyHint: false,
|
|
24
|
+
},
|
|
20
25
|
type: "action",
|
|
21
26
|
methods: {
|
|
22
27
|
...common.methods,
|
|
@@ -8,7 +8,12 @@ export default {
|
|
|
8
8
|
key: "salesforce_rest_api-update-record",
|
|
9
9
|
name: "Update Record",
|
|
10
10
|
description: "Update fields of a record. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_update_fields.htm)",
|
|
11
|
-
version: "0.3.
|
|
11
|
+
version: "0.3.4",
|
|
12
|
+
annotations: {
|
|
13
|
+
destructiveHint: true,
|
|
14
|
+
openWorldHint: true,
|
|
15
|
+
readOnlyHint: false,
|
|
16
|
+
},
|
|
12
17
|
type: "action",
|
|
13
18
|
props: {
|
|
14
19
|
salesforce,
|
|
@@ -8,7 +8,12 @@ export default {
|
|
|
8
8
|
key: "salesforce_rest_api-upsert-record",
|
|
9
9
|
name: "Upsert Record",
|
|
10
10
|
description: "Create or update a record of a given object. [See the documentation](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_upsert.htm)",
|
|
11
|
-
version: "0.0.
|
|
11
|
+
version: "0.0.5",
|
|
12
|
+
annotations: {
|
|
13
|
+
destructiveHint: true,
|
|
14
|
+
openWorldHint: true,
|
|
15
|
+
readOnlyHint: false,
|
|
16
|
+
},
|
|
12
17
|
type: "action",
|
|
13
18
|
props: {
|
|
14
19
|
salesforce,
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@ export default {
|
|
|
7
7
|
name: "Case Updated (Instant, of Selectable Type)",
|
|
8
8
|
key: "salesforce_rest_api-case-updated-instant",
|
|
9
9
|
description: "Emit new event when a case is updated. [See the documentation](https://sforce.co/3yPSJZy)",
|
|
10
|
-
version: "0.0.
|
|
10
|
+
version: "0.0.5",
|
|
11
11
|
props: {
|
|
12
12
|
salesforce: common.props.salesforce,
|
|
13
13
|
db: "$.service.db",
|
|
@@ -7,7 +7,7 @@ export default {
|
|
|
7
7
|
name: "Email Template Updated (Instant, of Selectable Type)",
|
|
8
8
|
key: "salesforce_rest_api-email-template-updated-instant",
|
|
9
9
|
description: "Emit new event when an email template is updated. [See the documentation](https://sforce.co/3yPSJZy)",
|
|
10
|
-
version: "0.0.
|
|
10
|
+
version: "0.0.5",
|
|
11
11
|
props: {
|
|
12
12
|
salesforce: common.props.salesforce,
|
|
13
13
|
db: "$.service.db",
|
|
@@ -7,7 +7,7 @@ export default {
|
|
|
7
7
|
name: "Knowledge Article Updated (Instant, of Selectable Type)",
|
|
8
8
|
key: "salesforce_rest_api-knowledge-article-updated-instant",
|
|
9
9
|
description: "Emit new event when a knowledge article is updated. [See the documentation](https://sforce.co/3yPSJZy)",
|
|
10
|
-
version: "0.0.
|
|
10
|
+
version: "0.0.5",
|
|
11
11
|
props: {
|
|
12
12
|
salesforce: common.props.salesforce,
|
|
13
13
|
db: "$.service.db",
|
|
@@ -7,7 +7,7 @@ export default {
|
|
|
7
7
|
name: "New Case (Instant, of Selectable Type)",
|
|
8
8
|
key: "salesforce_rest_api-new-case-instant",
|
|
9
9
|
description: "Emit new event when a case is created. [See the documentation](https://sforce.co/3yPSJZy)",
|
|
10
|
-
version: "0.0.
|
|
10
|
+
version: "0.0.5",
|
|
11
11
|
props: {
|
|
12
12
|
salesforce: common.props.salesforce,
|
|
13
13
|
db: "$.service.db",
|
|
@@ -7,7 +7,7 @@ export default {
|
|
|
7
7
|
name: "New Email Template (Instant, of Selectable Type)",
|
|
8
8
|
key: "salesforce_rest_api-new-email-template-instant",
|
|
9
9
|
description: "Emit new event when an email template is created. [See the documentation](https://sforce.co/3yPSJZy)",
|
|
10
|
-
version: "0.0.
|
|
10
|
+
version: "0.0.5",
|
|
11
11
|
props: {
|
|
12
12
|
salesforce: common.props.salesforce,
|
|
13
13
|
db: "$.service.db",
|
|
@@ -7,7 +7,7 @@ export default {
|
|
|
7
7
|
name: "New Knowledge Article (Instant, of Selectable Type)",
|
|
8
8
|
key: "salesforce_rest_api-new-knowledge-article-instant",
|
|
9
9
|
description: "Emit new event when a knowledge article is created. [See the documentation](https://sforce.co/3yPSJZy)",
|
|
10
|
-
version: "0.0.
|
|
10
|
+
version: "0.0.5",
|
|
11
11
|
props: {
|
|
12
12
|
salesforce: common.props.salesforce,
|
|
13
13
|
db: "$.service.db",
|
|
@@ -6,7 +6,7 @@ export default {
|
|
|
6
6
|
name: "New Outbound Message (Instant)",
|
|
7
7
|
key: "salesforce_rest_api-new-outbound-message",
|
|
8
8
|
description: "Emit new event when a new outbound message is received in Salesforce.",
|
|
9
|
-
version: "0.1.
|
|
9
|
+
version: "0.1.11",
|
|
10
10
|
dedupe: "unique",
|
|
11
11
|
props: {
|
|
12
12
|
db: "$.service.db",
|
|
@@ -6,7 +6,7 @@ export default {
|
|
|
6
6
|
name: "New Record (Instant, of Selectable Type)",
|
|
7
7
|
key: "salesforce_rest_api-new-record-instant",
|
|
8
8
|
description: "Emit new event when a record of the selected object type is created. [See the documentation](https://sforce.co/3yPSJZy)",
|
|
9
|
-
version: "0.2.
|
|
9
|
+
version: "0.2.5",
|
|
10
10
|
props: {
|
|
11
11
|
...common.props,
|
|
12
12
|
fieldsToObtain: {
|
|
@@ -7,7 +7,7 @@ export default {
|
|
|
7
7
|
name: "New Deleted Record (Instant, of Selectable Type)",
|
|
8
8
|
key: "salesforce_rest_api-record-deleted-instant",
|
|
9
9
|
description: "Emit new event when a record of the selected object type is deleted. [See the documentation](https://sforce.co/3msDDEE)",
|
|
10
|
-
version: "0.1.
|
|
10
|
+
version: "0.1.5",
|
|
11
11
|
methods: {
|
|
12
12
|
...common.methods,
|
|
13
13
|
generateWebhookMeta(data) {
|
|
@@ -7,7 +7,7 @@ export default {
|
|
|
7
7
|
name: "New Updated Record (Instant, of Selectable Type)",
|
|
8
8
|
key: "salesforce_rest_api-record-updated-instant",
|
|
9
9
|
description: "Emit new event when a record of the selected type is updated. [See the documentation](https://sforce.co/3yPSJZy)",
|
|
10
|
-
version: "0.2.
|
|
10
|
+
version: "0.2.5",
|
|
11
11
|
props: {
|
|
12
12
|
...common.props,
|
|
13
13
|
fields: {
|