Skip to content

Commit 90cc73c

Browse files
authored
[Salesforce] Knowledge new action components (#18216)
1 parent 1725ae6 commit 90cc73c

File tree

58 files changed

+266
-55
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+266
-55
lines changed

components/salesforce_rest_api/actions/add-contact-to-campaign/add-contact-to-campaign.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "salesforce_rest_api-add-contact-to-campaign",
66
name: "Add Contact to Campaign",
77
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.1",
8+
version: "0.1.2",
99
type: "action",
1010
props: {
1111
salesforce,

components/salesforce_rest_api/actions/add-lead-to-campaign/add-lead-to-campaign.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "salesforce_rest_api-add-lead-to-campaign",
66
name: "Add Lead to Campaign",
77
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.1",
8+
version: "0.1.2",
99
type: "action",
1010
props: {
1111
salesforce,
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import app from "../../salesforce_rest_api.app.mjs";
2+
3+
export default {
4+
props: {
5+
app,
6+
// eslint-disable-next-line pipedream/props-label, pipedream/props-description
7+
info: {
8+
type: "alert",
9+
alertType: "info",
10+
content: "Please keep in mind that Salesforce Knowledge is available for an additional cost in: Professional Enterprise, Performance, and Developer Editions. For more information, contact your Salesforce representative. [See the documentation](https://help.salesforce.com/s/articleView?id=service.knowledge_map.htm&type=5)",
11+
},
12+
language: {
13+
type: "string",
14+
label: "Language",
15+
description: "The language code. Defaults to `en-US`.",
16+
optional: true,
17+
},
18+
},
19+
};

components/salesforce_rest_api/actions/convert-soap-xml-to-json/convert-soap-xml-to-json.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "salesforce_rest_api-convert-soap-xml-to-json",
66
name: "Convert SOAP XML Object to JSON",
77
description: "Converts a SOAP XML Object received from Salesforce to JSON",
8-
version: "0.0.7",
8+
version: "0.0.8",
99
type: "action",
1010
props: {
1111
salesforce_rest_api,

components/salesforce_rest_api/actions/create-account/create-account.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default {
88
key: "salesforce_rest_api-create-account",
99
name: "Create Account",
1010
description: `Creates a Salesforce account. [See the documentation](${docsLink})`,
11-
version: "0.3.2",
11+
version: "0.3.3",
1212
type: "action",
1313
methods: {
1414
...common.methods,

components/salesforce_rest_api/actions/create-accounts-batch/create-accounts-batch.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "salesforce_rest_api-create-accounts-batch",
66
name: "Create Accounts (Batch)",
77
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.1",
8+
version: "0.0.2",
99
type: "action",
1010
methods: {
1111
...common.methods,

components/salesforce_rest_api/actions/create-attachment/create-attachment.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default {
1818
key: "salesforce_rest_api-create-attachment",
1919
name: "Create Attachment",
2020
description: `Creates an Attachment on a parent object. [See the documentation](${docsLink})`,
21-
version: "0.5.2",
21+
version: "0.5.3",
2222
type: "action",
2323
props,
2424
async run({ $ }) {

components/salesforce_rest_api/actions/create-campaign/create-campaign.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default {
88
key: "salesforce_rest_api-create-campaign",
99
name: "Create Campaign",
1010
description: `Creates a marketing campaign. [See the documentation](${docsLink})`,
11-
version: "0.3.2",
11+
version: "0.3.3",
1212
type: "action",
1313
methods: {
1414
...common.methods,

components/salesforce_rest_api/actions/create-case/create-case.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default {
88
key: "salesforce_rest_api-create-case",
99
name: "Create Case",
1010
description: `Creates a Case, which represents a customer issue or problem. [See the documentation](${docsLink})`,
11-
version: "0.3.2",
11+
version: "0.3.3",
1212
type: "action",
1313
methods: {
1414
...common.methods,

components/salesforce_rest_api/actions/create-casecomment/create-casecomment.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default {
1717
key: "salesforce_rest_api-create-casecomment",
1818
name: "Create Case Comment",
1919
description: `Creates a Case Comment on a selected Case. [See the documentation](${docsLink})`,
20-
version: "0.3.2",
20+
version: "0.3.3",
2121
type: "action",
2222
props,
2323
async run({ $ }) {

0 commit comments

Comments
 (0)