Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "dux_soup-connect-profile",
name: "Connect Profile",
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)",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand All @@ -26,7 +26,7 @@ export default {
requestBody: {
command: "connect",
params: {
profile: this.targetProfileURL,
profile: this.targetProfileUrl,
},
},
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "dux_soup-message-profile",
name: "Message Profile",
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)",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand Down Expand Up @@ -32,7 +32,7 @@ export default {
requestBody: {
command: "message",
params: {
profile: this.targetProfileURL,
profile: this.targetProfileUrl,
messagetext: this.message,
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "dux_soup-save-profile-lead",
name: "Save Profile as Lead",
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)",
version: "0.0.2",
version: "0.0.3",
annotations: {
destructiveHint: false,
openWorldHint: true,
Expand All @@ -26,7 +26,7 @@ export default {
requestBody: {
command: "saveaslead",
params: {
profile: this.targetProfileURL,
profile: this.targetProfileUrl,
},
},
});
Expand Down
2 changes: 1 addition & 1 deletion components/dux_soup/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/dux_soup",
"version": "0.1.0",
"version": "0.1.1",
"description": "Pipedream Dux Soup Components",
"main": "dux_soup.app.mjs",
"keywords": [
Expand Down
Loading