Skip to content

Commit b4b9b13

Browse files
authored
Merging pull request #18662
* Allow empty value change * bump versions
1 parent af1feab commit b4b9b13

File tree

12 files changed

+11
-12
lines changed

12 files changed

+11
-12
lines changed

components/salesforce_rest_api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/salesforce_rest_api",
3-
"version": "1.9.1",
3+
"version": "1.9.2",
44
"description": "Pipedream Salesforce (REST API) Components",
55
"main": "salesforce_rest_api.app.mjs",
66
"keywords": [

components/salesforce_rest_api/sources/case-updated-instant/case-updated-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
name: "Case Updated (Instant, of Selectable Type)",
88
key: "salesforce_rest_api-case-updated-instant",
99
description: "Emit new event when a case is updated. [See the documentation](https://sforce.co/3yPSJZy)",
10-
version: "0.0.4",
10+
version: "0.0.5",
1111
props: {
1212
salesforce: common.props.salesforce,
1313
db: "$.service.db",

components/salesforce_rest_api/sources/common/common-updated-record.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ export default {
115115
const oldValue = body.Old[key];
116116
return (
117117
value !== undefined
118-
&& oldValue !== undefined
119118
&& JSON.stringify(value) !== JSON.stringify(oldValue)
120119
);
121120
})

components/salesforce_rest_api/sources/email-template-updated-instant/email-template-updated-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
name: "Email Template Updated (Instant, of Selectable Type)",
88
key: "salesforce_rest_api-email-template-updated-instant",
99
description: "Emit new event when an email template is updated. [See the documentation](https://sforce.co/3yPSJZy)",
10-
version: "0.0.4",
10+
version: "0.0.5",
1111
props: {
1212
salesforce: common.props.salesforce,
1313
db: "$.service.db",

components/salesforce_rest_api/sources/knowledge-article-updated-instant/knowledge-article-updated-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
name: "Knowledge Article Updated (Instant, of Selectable Type)",
88
key: "salesforce_rest_api-knowledge-article-updated-instant",
99
description: "Emit new event when a knowledge article is updated. [See the documentation](https://sforce.co/3yPSJZy)",
10-
version: "0.0.4",
10+
version: "0.0.5",
1111
props: {
1212
salesforce: common.props.salesforce,
1313
db: "$.service.db",

components/salesforce_rest_api/sources/new-case-instant/new-case-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
name: "New Case (Instant, of Selectable Type)",
88
key: "salesforce_rest_api-new-case-instant",
99
description: "Emit new event when a case is created. [See the documentation](https://sforce.co/3yPSJZy)",
10-
version: "0.0.4",
10+
version: "0.0.5",
1111
props: {
1212
salesforce: common.props.salesforce,
1313
db: "$.service.db",

components/salesforce_rest_api/sources/new-email-template-instant/new-email-template-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
name: "New Email Template (Instant, of Selectable Type)",
88
key: "salesforce_rest_api-new-email-template-instant",
99
description: "Emit new event when an email template is created. [See the documentation](https://sforce.co/3yPSJZy)",
10-
version: "0.0.4",
10+
version: "0.0.5",
1111
props: {
1212
salesforce: common.props.salesforce,
1313
db: "$.service.db",

components/salesforce_rest_api/sources/new-knowledge-article-instant/new-knowledge-article-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
name: "New Knowledge Article (Instant, of Selectable Type)",
88
key: "salesforce_rest_api-new-knowledge-article-instant",
99
description: "Emit new event when a knowledge article is created. [See the documentation](https://sforce.co/3yPSJZy)",
10-
version: "0.0.4",
10+
version: "0.0.5",
1111
props: {
1212
salesforce: common.props.salesforce,
1313
db: "$.service.db",

components/salesforce_rest_api/sources/new-outbound-message/new-outbound-message.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
name: "New Outbound Message (Instant)",
77
key: "salesforce_rest_api-new-outbound-message",
88
description: "Emit new event when a new outbound message is received in Salesforce.",
9-
version: "0.1.10",
9+
version: "0.1.11",
1010
dedupe: "unique",
1111
props: {
1212
db: "$.service.db",

components/salesforce_rest_api/sources/new-record-instant/new-record-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
name: "New Record (Instant, of Selectable Type)",
77
key: "salesforce_rest_api-new-record-instant",
88
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.4",
9+
version: "0.2.5",
1010
props: {
1111
...common.props,
1212
fieldsToObtain: {

0 commit comments

Comments
 (0)