@pipedream/slack 0.5.1 → 0.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/actions/add-emoji-reaction/add-emoji-reaction.mjs +1 -1
  2. package/actions/add-star/add-star.mjs +1 -1
  3. package/actions/archive-channel/archive-channel.mjs +1 -1
  4. package/actions/common/send-message.mjs +12 -0
  5. package/actions/complete-reminder/complete-reminder.mjs +1 -1
  6. package/actions/create-channel/create-channel.mjs +1 -1
  7. package/actions/create-reminder/create-reminder.mjs +1 -1
  8. package/actions/delete-file/delete-file.mjs +1 -1
  9. package/actions/delete-message/delete-message.mjs +1 -1
  10. package/actions/delete-reminder/delete-reminder.mjs +1 -1
  11. package/actions/find-message/find-message.mjs +1 -1
  12. package/actions/find-user-by-email/find-user-by-email.mjs +1 -1
  13. package/actions/get-channel/get-channel.mjs +1 -1
  14. package/actions/get-file/get-file.mjs +1 -1
  15. package/actions/get-reminder/get-reminder.mjs +1 -1
  16. package/actions/invite-user-to-channel/invite-user-to-channel.mjs +1 -1
  17. package/actions/join-channel/join-channel.mjs +1 -1
  18. package/actions/kick-user/kick-user.mjs +1 -1
  19. package/actions/leave-channel/leave-channel.mjs +1 -1
  20. package/actions/list-channels/list-channels.mjs +1 -1
  21. package/actions/list-files/list-files.mjs +1 -1
  22. package/actions/list-members-in-channel/list-members-in-channel.mjs +1 -1
  23. package/actions/list-reminders/list-reminders.mjs +1 -1
  24. package/actions/list-replies/list-replies.mjs +1 -1
  25. package/actions/list-user-groups-users/list-user-groups-users.mjs +1 -1
  26. package/actions/list-users/list-users.mjs +1 -1
  27. package/actions/remove-star/remove-star.mjs +1 -1
  28. package/actions/reply-to-a-message/reply-to-a-message.mjs +1 -1
  29. package/actions/send-block-kit-message/send-block-kit-message.mjs +1 -13
  30. package/actions/send-custom-message/send-custom-message.mjs +1 -13
  31. package/actions/send-direct-message/send-direct-message.mjs +1 -22
  32. package/actions/send-group-message/send-group-message.mjs +1 -22
  33. package/actions/send-large-message/send-large-message.mjs +1 -22
  34. package/actions/send-message-private-channel/send-message-private-channel.mjs +1 -22
  35. package/actions/send-message-public-channel/send-message-public-channel.mjs +1 -22
  36. package/actions/set-channel-purpose/set-channel-purpose.mjs +1 -1
  37. package/actions/set-channel-topic/set-channel-topic.mjs +1 -1
  38. package/actions/unarchive-channel/unarchive-channel.mjs +1 -1
  39. package/actions/update-message/update-message.mjs +1 -1
  40. package/actions/update-profile/update-profile.mjs +1 -1
  41. package/actions/update-user-groups-users/update-user-groups-users.mjs +1 -1
  42. package/actions/upload-file/upload-file.mjs +1 -1
  43. package/actions/verify-slack-signature/verify-slack-signature.mjs +1 -1
  44. package/package.json +1 -1
  45. package/slack.app.mjs +2 -0
  46. package/sources/new-channel-created/new-channel-created.mjs +1 -1
  47. package/sources/new-direct-message/new-direct-message.mjs +1 -1
  48. package/sources/new-interaction-event-received/new-interaction-event-received.mjs +1 -1
  49. package/sources/new-mention/new-mention.mjs +1 -1
  50. package/sources/new-message-in-channels/new-message-in-channels.mjs +1 -1
  51. package/sources/new-reaction-added/new-reaction-added.mjs +1 -1
  52. package/sources/new-star-added/new-star-added.mjs +1 -1
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-add-emoji-reaction",
5
5
  name: "Add Emoji Reaction",
6
6
  description: "Add an emoji reaction to a message. [See docs here](https://api.slack.com/methods/reactions.add)",
7
- version: "0.0.6",
7
+ version: "0.0.7",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-add-star",
5
5
  name: "Add Star",
6
6
  description: "Add a star to an item on behalf of the authenticated user. [See docs here](https://api.slack.com/methods/stars.add)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-archive-channel",
5
5
  name: "Archive Channel",
6
6
  description: "Archive a channel. [See docs here](https://api.slack.com/methods/conversations.archive)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -55,6 +55,18 @@ export default {
55
55
  "metadata_event_payload",
56
56
  ],
57
57
  },
58
+ unfurl_links: {
59
+ propDefinition: [
60
+ slack,
61
+ "unfurl_links",
62
+ ],
63
+ },
64
+ unfurl_media: {
65
+ propDefinition: [
66
+ slack,
67
+ "unfurl_media",
68
+ ],
69
+ },
58
70
  },
59
71
  methods: {
60
72
  _makeSentViaPipedreamBlock() {
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-complete-reminder",
5
5
  name: "Complete Reminder",
6
6
  description: "Complete a reminder. [See docs here](https://api.slack.com/methods/reminders.complete)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-create-channel",
5
5
  name: "Create a Channel",
6
6
  description: "Create a new channel. [See docs here](https://api.slack.com/methods/conversations.create)",
7
- version: "0.0.15",
7
+ version: "0.0.16",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-create-reminder",
5
5
  name: "Create Reminder",
6
6
  description: "Create a reminder. [See docs here](https://api.slack.com/methods/reminders.add)",
7
- version: "0.0.15",
7
+ version: "0.0.16",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-delete-file",
5
5
  name: "Delete File",
6
6
  description: "Delete a file. [See docs here](https://api.slack.com/methods/files.delete)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-delete-message",
5
5
  name: "Delete Message",
6
6
  description: "Delete a message. [See docs here](https://api.slack.com/methods/chat.delete)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-delete-reminder",
5
5
  name: "Delete Reminder",
6
6
  description: "Delete a reminder. [See docs here](https://api.slack.com/methods/reminders.delete)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-find-message",
5
5
  name: "Find Message",
6
6
  description: "Find a Slack message. [See docs here](https://api.slack.com/methods/search.messages)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-find-user-by-email",
5
5
  name: "Find User by Email",
6
6
  description: "Find a user by matching against their email. [See docs here](https://api.slack.com/methods/users.lookupByEmail)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-get-channel",
5
5
  name: "Get Channel",
6
6
  description: "Return information about a workspace channel. [See docs here](https://api.slack.com/methods/conversations.info)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-get-file",
5
5
  name: "Get File",
6
6
  description: "Return information about a file. [See docs here](https://api.slack.com/methods/files.info)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-get-reminder",
5
5
  name: "Get Reminder",
6
6
  description: "Return information about a reminder. [See docs here](https://api.slack.com/methods/reminders.info)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-invite-user-to-channel",
5
5
  name: "Invite User to Channel",
6
6
  description: "Invite a user to an existing channel. [See docs here](https://api.slack.com/methods/conversations.invite)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-join-channel",
5
5
  name: "Join Channel",
6
6
  description: "Join an existing channel. [See docs here](https://api.slack.com/methods/conversations.join)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-kick-user",
5
5
  name: "Kick User",
6
6
  description: "Remove a user from a conversation. [See docs here](https://api.slack.com/methods/conversations.kick)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-leave-channel",
5
5
  name: "Leave Channel",
6
6
  description: "Leave an existing channel. [See docs here](https://api.slack.com/methods/conversations.leave)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-list-channels",
5
5
  name: "List Channels",
6
6
  description: "Return a list of all channels in a workspace. [See docs here](https://api.slack.com/methods/conversations.list)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-list-files",
5
5
  name: "List Files",
6
6
  description: "Return a list of files within a team. [See docs here](https://api.slack.com/methods/files.list)",
7
- version: "0.0.42",
7
+ version: "0.0.43",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-list-members-in-channel",
5
5
  name: "List Members in Channel",
6
6
  description: "Retrieve members of a channel. [See docs here](https://api.slack.com/methods/conversations.members)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-list-reminders",
5
5
  name: "List Reminders",
6
6
  description: "List all reminders for a given user. [See docs here](https://api.slack.com/methods/reminders.list)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-list-replies",
5
5
  name: "List Replies",
6
6
  description: "Retrieve a thread of messages posted to a conversation. [See docs here](https://api.slack.com/methods/conversations.replies)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-list-user-groups-users",
5
5
  name: "List User Groups Users",
6
6
  description: "List all users in a User Group. [See docs here](https://api.slack.com/methods/usergroups.users.list)",
7
- version: "0.0.7",
7
+ version: "0.0.8",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-list-users",
5
5
  name: "List Users",
6
6
  description: "Return a list of all users in a workspace. [See docs here](https://api.slack.com/methods/users.list)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-remove-star",
5
5
  name: "Remove Star",
6
6
  description: "Remove a star from an item on behalf of the authenticated user. [See docs here](https://api.slack.com/methods/stars.remove)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -6,7 +6,7 @@ export default {
6
6
  key: "slack-reply-to-a-message",
7
7
  name: "Reply to a Message Thread",
8
8
  description: "Send a message as a threaded reply. See [postMessage](https://api.slack.com/methods/chat.postMessage) or [scheduleMessage](https://api.slack.com/methods/chat.scheduleMessage) docs here",
9
- version: "0.1.19",
9
+ version: "0.1.20",
10
10
  type: "action",
11
11
  props: {
12
12
  slack: common.props.slack,
@@ -6,7 +6,7 @@ export default {
6
6
  ...buildBlocks,
7
7
  name: "Build and Send a Block Kit Message (Beta)",
8
8
  description: "Configure custom blocks and send to a channel, group, or user. [See Slack's docs for more info](https://api.slack.com/tools/block-kit-builder).",
9
- version: "0.3.2",
9
+ version: "0.3.3",
10
10
  type: "action",
11
11
  key: "slack-send-block-kit-message",
12
12
  props: {
@@ -23,18 +23,6 @@ export default {
23
23
  "notificationText",
24
24
  ],
25
25
  },
26
- unfurl_links: {
27
- propDefinition: [
28
- common.props.slack,
29
- "unfurl_links",
30
- ],
31
- },
32
- unfurl_media: {
33
- propDefinition: [
34
- common.props.slack,
35
- "unfurl_media",
36
- ],
37
- },
38
26
  ...common.props,
39
27
  ...buildBlocks.props,
40
28
  },
@@ -5,7 +5,7 @@ export default {
5
5
  key: "slack-send-custom-message",
6
6
  name: "Send a Custom Message",
7
7
  description: "Customize advanced setttings and send a message to a channel, group or user. See [postMessage](https://api.slack.com/methods/chat.postMessage) or [scheduleMessage](https://api.slack.com/methods/chat.scheduleMessage) docs here",
8
- version: "0.2.18",
8
+ version: "0.2.19",
9
9
  type: "action",
10
10
  props: {
11
11
  slack: common.props.slack,
@@ -33,18 +33,6 @@ export default {
33
33
  "attachments",
34
34
  ],
35
35
  },
36
- unfurl_links: {
37
- propDefinition: [
38
- common.props.slack,
39
- "unfurl_links",
40
- ],
41
- },
42
- unfurl_media: {
43
- propDefinition: [
44
- common.props.slack,
45
- "unfurl_media",
46
- ],
47
- },
48
36
  parse: {
49
37
  propDefinition: [
50
38
  common.props.slack,
@@ -5,7 +5,7 @@ export default {
5
5
  key: "slack-send-direct-message",
6
6
  name: "Send a Direct Message",
7
7
  description: "Send a direct message to a single user. See [postMessage](https://api.slack.com/methods/chat.postMessage) or [scheduleMessage](https://api.slack.com/methods/chat.scheduleMessage) docs here",
8
- version: "0.2.19",
8
+ version: "0.2.20",
9
9
  type: "action",
10
10
  props: {
11
11
  slack: common.props.slack,
@@ -27,27 +27,6 @@ export default {
27
27
  "mrkdwn",
28
28
  ],
29
29
  },
30
- username: {
31
- propDefinition: [
32
- common.props.slack,
33
- "username",
34
- ],
35
- description: "Optionally customize your bot's username (default is `Pipedream`).",
36
- },
37
- icon_emoji: {
38
- propDefinition: [
39
- common.props.slack,
40
- "icon_emoji",
41
- ],
42
- description: "Optionally use an emoji as the bot icon for this message (e.g., `:fire:`). This value overrides `icon_url` if both are provided.",
43
- },
44
- icon_url: {
45
- propDefinition: [
46
- common.props.slack,
47
- "icon_url",
48
- ],
49
- description: "Optionally provide an image URL to use as the bot icon for this message.",
50
- },
51
30
  ...common.props,
52
31
  },
53
32
  };
@@ -5,7 +5,7 @@ export default {
5
5
  key: "slack-send-group-message",
6
6
  name: "Send Group Message",
7
7
  description: "Send a direct message to a group of users. See [postMessage](https://api.slack.com/methods/chat.postMessage) or [scheduleMessage](https://api.slack.com/methods/chat.scheduleMessage) docs here",
8
- version: "0.2.19",
8
+ version: "0.2.20",
9
9
  type: "action",
10
10
  props: {
11
11
  slack: common.props.slack,
@@ -27,27 +27,6 @@ export default {
27
27
  "mrkdwn",
28
28
  ],
29
29
  },
30
- username: {
31
- propDefinition: [
32
- common.props.slack,
33
- "username",
34
- ],
35
- description: "Optionally customize your bot's username (default is `Pipedream`).",
36
- },
37
- icon_emoji: {
38
- propDefinition: [
39
- common.props.slack,
40
- "icon_emoji",
41
- ],
42
- description: "Optionally use an emoji as the bot icon for this message (e.g., `:fire:`). This value overrides `icon_url` if both are provided.",
43
- },
44
- icon_url: {
45
- propDefinition: [
46
- common.props.slack,
47
- "icon_url",
48
- ],
49
- description: "Optionally provide an image URL to use as the bot icon for this message.",
50
- },
51
30
  ...common.props,
52
31
  },
53
32
  };
@@ -5,7 +5,7 @@ export default {
5
5
  key: "slack-send-large-message",
6
6
  name: "Send a Large Message (3000+ characters)",
7
7
  description: "Send a large message (more than 3000 characters) to a channel, group or user. See [postMessage](https://api.slack.com/methods/chat.postMessage) or [scheduleMessage](https://api.slack.com/methods/chat.scheduleMessage) docs here",
8
- version: "0.0.14",
8
+ version: "0.0.15",
9
9
  type: "action",
10
10
  props: {
11
11
  slack: common.props.slack,
@@ -27,27 +27,6 @@ export default {
27
27
  "mrkdwn",
28
28
  ],
29
29
  },
30
- username: {
31
- propDefinition: [
32
- common.props.slack,
33
- "username",
34
- ],
35
- description: "Optionally customize your bot's username (default is `Pipedream`).",
36
- },
37
- icon_emoji: {
38
- propDefinition: [
39
- common.props.slack,
40
- "icon_emoji",
41
- ],
42
- description: "Optionally use an emoji as the bot icon for this message (e.g., `:fire:`). This value overrides `icon_url` if both are provided.",
43
- },
44
- icon_url: {
45
- propDefinition: [
46
- common.props.slack,
47
- "icon_url",
48
- ],
49
- description: "Optionally provide an image URL to use as the bot icon for this message.",
50
- },
51
30
  ...common.props,
52
31
  },
53
32
  async run() {
@@ -6,7 +6,7 @@ export default {
6
6
  key: "slack-send-message-private-channel",
7
7
  name: "Send Message to a Private Channel",
8
8
  description: "Send a message to a private channel and customize the name and avatar of the bot that posts the message. See [postMessage](https://api.slack.com/methods/chat.postMessage) or [scheduleMessage](https://api.slack.com/methods/chat.scheduleMessage) docs here",
9
- version: "0.2.19",
9
+ version: "0.2.20",
10
10
  type: "action",
11
11
  props: {
12
12
  slack: common.props.slack,
@@ -33,27 +33,6 @@ export default {
33
33
  "mrkdwn",
34
34
  ],
35
35
  },
36
- username: {
37
- propDefinition: [
38
- common.props.slack,
39
- "username",
40
- ],
41
- description: "Optionally customize your bot's username (default is `Pipedream`).",
42
- },
43
- icon_emoji: {
44
- propDefinition: [
45
- common.props.slack,
46
- "icon_emoji",
47
- ],
48
- description: "Optionally use an emoji as the bot icon for this message (e.g., `:fire:`). This value overrides `icon_url` if both are provided.",
49
- },
50
- icon_url: {
51
- propDefinition: [
52
- common.props.slack,
53
- "icon_url",
54
- ],
55
- description: "Optionally provide an image URL to use as the bot icon for this message.",
56
- },
57
36
  ...common.props,
58
37
  },
59
38
  };
@@ -6,7 +6,7 @@ export default {
6
6
  key: "slack-send-message-public-channel",
7
7
  name: "Send Message to a Public Channel",
8
8
  description: "Send a message to a public channel and customize the name and avatar of the bot that posts the message. See [postMessage](https://api.slack.com/methods/chat.postMessage) or [scheduleMessage](https://api.slack.com/methods/chat.scheduleMessage) docs here",
9
- version: "0.2.18",
9
+ version: "0.2.19",
10
10
  type: "action",
11
11
  props: {
12
12
  slack: common.props.slack,
@@ -33,27 +33,6 @@ export default {
33
33
  "mrkdwn",
34
34
  ],
35
35
  },
36
- username: {
37
- propDefinition: [
38
- common.props.slack,
39
- "username",
40
- ],
41
- description: "Optionally customize your bot's username (default is `Pipedream`).",
42
- },
43
- icon_emoji: {
44
- propDefinition: [
45
- common.props.slack,
46
- "icon_emoji",
47
- ],
48
- description: "Optionally use an emoji as the bot icon for this message (e.g., `:fire:`). This value overrides `icon_url` if both are provided.",
49
- },
50
- icon_url: {
51
- propDefinition: [
52
- common.props.slack,
53
- "icon_url",
54
- ],
55
- description: "Optionally provide an image URL to use as the bot icon for this message.",
56
- },
57
36
  ...common.props,
58
37
  },
59
38
  };
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-set-channel-purpose",
5
5
  name: "Set Channel Purpose",
6
6
  description: "Change the purpose of a channel. [See docs here](https://api.slack.com/methods/conversations.setPurpose)",
7
- version: "0.0.15",
7
+ version: "0.0.16",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-set-channel-topic",
5
5
  name: "Set Channel Topic",
6
6
  description: "Set the topic on a selected channel. [See docs here](https://api.slack.com/methods/conversations.setTopic)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-unarchive-channel",
5
5
  name: "Unarchive Channel",
6
6
  description: "Unarchive a channel. [See docs here](https://api.slack.com/methods/conversations.unarchive)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-update-message",
5
5
  name: "Update Message",
6
6
  description: "Update a message. [See docs here](https://api.slack.com/methods/chat.update)",
7
- version: "0.1.14",
7
+ version: "0.1.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-update-profile",
5
5
  name: "Update Profile",
6
6
  description: "Update basic profile field such as name or title. [See docs here](https://api.slack.com/methods/users.profile.set)",
7
- version: "0.0.14",
7
+ version: "0.0.15",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "slack-update-user-groups-users",
5
5
  name: "Update User Groups Users",
6
6
  description: "Update the list of users for a User Group. [See docs here](https://api.slack.com/methods/usergroups.users.update)",
7
- version: "0.0.7",
7
+ version: "0.0.8",
8
8
  type: "action",
9
9
  props: {
10
10
  slack,
@@ -6,7 +6,7 @@ export default {
6
6
  key: "slack-upload-file",
7
7
  name: "Upload File",
8
8
  description: "Upload a file. [See docs here](https://api.slack.com/methods/files.upload)",
9
- version: "0.0.17",
9
+ version: "0.0.18",
10
10
  type: "action",
11
11
  props: {
12
12
  slack,
@@ -5,7 +5,7 @@ export default {
5
5
  key: "slack-verify-slack-signature",
6
6
  name: "Verify Slack Signature",
7
7
  description: "Verifying requests from Slack, slack signs its requests using a secret that's unique to your app. [See docs here](https://api.slack.com/authentication/verifying-requests-from-slack)",
8
- version: "0.0.7",
8
+ version: "0.0.8",
9
9
  type: "action",
10
10
  props: {
11
11
  slack,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/slack",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "description": "Pipedream Slack Components",
5
5
  "main": "slack.app.mjs",
6
6
  "keywords": [
package/slack.app.mjs CHANGED
@@ -273,12 +273,14 @@ export default {
273
273
  type: "boolean",
274
274
  label: "Unfurl Links",
275
275
  description: "`TRUE` by default. Pass `FALSE` to disable unfurling of links.",
276
+ default: true,
276
277
  optional: true,
277
278
  },
278
279
  unfurl_media: {
279
280
  type: "boolean",
280
281
  label: "Unfurl Media",
281
282
  description: "`TRUE` by default. Pass `FALSE` to disable unfurling of media content.",
283
+ default: true,
282
284
  optional: true,
283
285
  },
284
286
  parse: {
@@ -5,7 +5,7 @@ export default {
5
5
  ...common,
6
6
  key: "slack-new-channel-created",
7
7
  name: "New Channel Created (Instant)",
8
- version: "0.0.1",
8
+ version: "0.0.2",
9
9
  description: "Emit new event when a new channel is created.",
10
10
  type: "source",
11
11
  dedupe: "unique",
@@ -4,7 +4,7 @@ export default {
4
4
  ...common,
5
5
  key: "slack-new-direct-message",
6
6
  name: "New Direct Message (Instant)",
7
- version: "1.0.13",
7
+ version: "1.0.14",
8
8
  description: "Emit new event when a message was posted in a direct message channel",
9
9
  type: "source",
10
10
  dedupe: "unique",
@@ -2,7 +2,7 @@ import common from "../common/base.mjs";
2
2
 
3
3
  export default {
4
4
  name: "New Interaction Events",
5
- version: "0.0.11",
5
+ version: "0.0.12",
6
6
  key: "slack-new-interaction-event-received",
7
7
  description:
8
8
  "Emit new events on new Slack [interactivity events](https://api.slack.com/interactivity) sourced from [Block Kit interactive elements](https://api.slack.com/interactivity/components), [Slash commands](https://api.slack.com/interactivity/slash-commands), or [Shortcuts](https://api.slack.com/interactivity/shortcuts).",
@@ -5,7 +5,7 @@ export default {
5
5
  ...common,
6
6
  key: "slack-new-mention",
7
7
  name: "New Mention (Instant)",
8
- version: "1.0.16",
8
+ version: "1.0.17",
9
9
  description: "Emit new event when a username or specific keyword is mentioned in a channel",
10
10
  type: "source",
11
11
  dedupe: "unique",
@@ -6,7 +6,7 @@ export default {
6
6
  ...common,
7
7
  key: "slack-new-message-in-channels",
8
8
  name: "New Message In Channels (Instant)",
9
- version: "1.0.15",
9
+ version: "1.0.16",
10
10
  description: "Emit new event when a new message is posted to one or more channels",
11
11
  type: "source",
12
12
  dedupe: "unique",
@@ -4,7 +4,7 @@ export default {
4
4
  ...common,
5
5
  key: "slack-new-reaction-added",
6
6
  name: "New Reaction Added (Instant)",
7
- version: "1.1.17",
7
+ version: "1.1.18",
8
8
  description: "Emit new event when a member has added an emoji reaction to a message",
9
9
  type: "source",
10
10
  dedupe: "unique",
@@ -5,7 +5,7 @@ export default {
5
5
  ...common,
6
6
  key: "slack-new-star-added",
7
7
  name: "New Star Added (Instant)",
8
- version: "0.0.18",
8
+ version: "0.0.19",
9
9
  description: "Emit new event when a star is added to an item",
10
10
  type: "source",
11
11
  dedupe: "unique",