Skip to content

Commit 9e8564b

Browse files
authored
Fixing typos in DuxSoup actions (#19360)
1 parent 193346e commit 9e8564b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

components/dux_soup/actions/connect-profile/connect-profile.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "dux_soup-connect-profile",
55
name: "Connect Profile",
66
description: "Queues a connection request to actively connect with a targeted LinkedIn profile. [See the documentation](https://support.dux-soup.com/article/115-remote-control-by-example)",
7-
version: "0.0.2",
7+
version: "0.0.3",
88
annotations: {
99
destructiveHint: false,
1010
openWorldHint: true,
@@ -26,7 +26,7 @@ export default {
2626
requestBody: {
2727
command: "connect",
2828
params: {
29-
profile: this.targetProfileURL,
29+
profile: this.targetProfileUrl,
3030
},
3131
},
3232
});

components/dux_soup/actions/message-profile/message-profile.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "dux_soup-message-profile",
55
name: "Message Profile",
66
description: "Queues a direct message that will be sent to the targeted profile. [See the documentation](https://support.dux-soup.com/article/115-remote-control-by-example)",
7-
version: "0.0.2",
7+
version: "0.0.3",
88
annotations: {
99
destructiveHint: false,
1010
openWorldHint: true,
@@ -32,7 +32,7 @@ export default {
3232
requestBody: {
3333
command: "message",
3434
params: {
35-
profile: this.targetProfileURL,
35+
profile: this.targetProfileUrl,
3636
messagetext: this.message,
3737
},
3838
},

components/dux_soup/actions/save-profile-lead/save-profile-lead.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "dux_soup-save-profile-lead",
55
name: "Save Profile as Lead",
66
description: "Queues a profile save action to store the targeted profile as a lead. [See the documentation](https://support.dux-soup.com/article/115-remote-control-by-example)",
7-
version: "0.0.2",
7+
version: "0.0.3",
88
annotations: {
99
destructiveHint: false,
1010
openWorldHint: true,
@@ -26,7 +26,7 @@ export default {
2626
requestBody: {
2727
command: "saveaslead",
2828
params: {
29-
profile: this.targetProfileURL,
29+
profile: this.targetProfileUrl,
3030
},
3131
},
3232
});

components/dux_soup/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/dux_soup",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Pipedream Dux Soup Components",
55
"main": "dux_soup.app.mjs",
66
"keywords": [

0 commit comments

Comments
 (0)