Skip to content

Commit bb29328

Browse files
authored
Slack Bot - update Channel prop description (#14062)
* update slack_bot conversation prop description * versions * extract description message into constant * update channelId prop descriptions * update conversation prop for send-message
1 parent 950a2d1 commit bb29328

File tree

29 files changed

+42
-30
lines changed

29 files changed

+42
-30
lines changed

components/slack/actions/send-message/send-message.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "slack-send-message",
77
name: "Send Message",
88
description: "Send a message to a user, group, private channel or public channel. [See the documentation](https://api.slack.com/methods/chat.postMessage)",
9-
version: "0.0.14",
9+
version: "0.0.15",
1010
type: "action",
1111
props: {
1212
slack: common.props.slack,
@@ -21,7 +21,7 @@ export default {
2121
conversation: {
2222
propDefinition: [
2323
common.props.slack,
24-
"channelId",
24+
"conversation",
2525
(c) => ({
2626
types: c.channelType === "Channels"
2727
? [

components/slack/package.json

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

components/slack_bot/actions/add-emoji-reaction/add-emoji-reaction.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ export default {
1111
}),
1212
key: "slack_bot-add-emoji-reaction",
1313
description: "Add an emoji reaction to a message. [See the documentation](https://api.slack.com/methods/reactions.add)",
14-
version: "0.0.1",
14+
version: "0.0.2",
1515
};

components/slack_bot/actions/archive-channel/archive-channel.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ export default {
2727
}),
2828
key: "slack_bot-archive-channel",
2929
description: "Archive a channel (Bot). [See the documentation](https://api.slack.com/methods/conversations.archive)",
30-
version: "0.0.3",
30+
version: "0.0.4",
3131
};

components/slack_bot/actions/create-channel/create-channel.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ export default {
1111
}),
1212
key: "slack_bot-create-channel",
1313
description: "Create a new channel (Bot). [See the documentation](https://api.slack.com/methods/conversations.create)",
14-
version: "0.0.3",
14+
version: "0.0.4",
1515
};

components/slack_bot/actions/delete-file/delete-file.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ export default {
1111
}),
1212
key: "slack_bot-delete-file",
1313
description: "Delete a file (Bot). [See the documentation](https://api.slack.com/methods/files.delete)",
14-
version: "0.0.3",
14+
version: "0.0.4",
1515
};

components/slack_bot/actions/delete-message/delete-message.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ export default {
1414
}),
1515
key: "slack_bot-delete-message",
1616
description: "Delete a message (Bot). [See the documentation](https://api.slack.com/methods/chat.delete)",
17-
version: "0.0.3",
17+
version: "0.0.4",
1818
};

components/slack_bot/actions/find-user-by-email/find-user-by-email.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ export default {
1111
}),
1212
key: "slack_bot-find-user-by-email",
1313
description: "Find a user by matching against their email (Bot). [See the documentation](https://api.slack.com/methods/users.lookupByEmail)",
14-
version: "0.0.3",
14+
version: "0.0.4",
1515
};

components/slack_bot/actions/get-file/get-file.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ export default {
1111
}),
1212
key: "slack_bot-get-file",
1313
description: "Return information about a file (Bot). [See the documentation](https://api.slack.com/methods/files.info)",
14-
version: "0.0.3",
14+
version: "0.0.4",
1515
};

components/slack_bot/actions/invite-user-to-channel/invite-user-to-channel.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ export default {
1111
}),
1212
key: "slack_bot-invite-user-to-channel",
1313
description: "Invite a user to an existing channel (Bot). [See the documentation](https://api.slack.com/methods/conversations.invite)",
14-
version: "0.0.3",
14+
version: "0.0.4",
1515
};

0 commit comments

Comments
 (0)