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
2 changes: 1 addition & 1 deletion components/slack/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/slack",
"version": "0.10.0",
"version": "0.10.1",
"description": "Pipedream Slack Components",
"main": "slack.app.mjs",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion components/slack/sources/common/base.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export default {
return await this.maybeCached(
`lastMessage:${channel}:${ts}`,
async () => {
const response = await this.slack.sdk().getConversationReplies({
const response = await this.slack.getConversationReplies({
channel,
ts,
limit: 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
...common,
key: "slack-new-channel-created",
name: "New Channel Created (Instant)",
version: "0.0.9",
version: "0.0.10",
description: "Emit new event when a new channel is created.",
type: "source",
dedupe: "unique",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
...common,
key: "slack-new-direct-message",
name: "New Direct Message (Instant)",
version: "1.0.22",
version: "1.0.23",
description: "Emit new event when a message was posted in a direct message channel",
type: "source",
dedupe: "unique",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@

export default {
name: "New Interaction Events (Instant)",
version: "0.0.19",
version: "0.0.20",
key: "slack-new-interaction-event-received",
description: "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).",
type: "source",
props: {
...common.props,
alert: {

Check warning on line 12 in components/slack/sources/new-interaction-event-received/new-interaction-event-received.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop alert must have a description. See https://pipedream.com/docs/components/guidelines/#props

Check warning on line 12 in components/slack/sources/new-interaction-event-received/new-interaction-event-received.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop alert must have a label. See https://pipedream.com/docs/components/guidelines/#props

Check warning on line 12 in components/slack/sources/new-interaction-event-received/new-interaction-event-received.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop alert must have a description. See https://pipedream.com/docs/components/guidelines/#props

Check warning on line 12 in components/slack/sources/new-interaction-event-received/new-interaction-event-received.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop alert must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "alert",
alertType: "info",
content: "Please note that only messages created via Pipedream's [Send Block Kit Message](https://pipedream.com/apps/slack/actions/send-block-kit-message) Action, or via API call from the Pipedream app will emit an interaction event with this trigger. \n\nBlock kit messages sent directly via the Slack's block kit builder will not trigger an interaction event. \n\nSee the [documentation](https://pipedream.com/apps/slack/triggers/new-interaction-event-received) for more details.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
...common,
key: "slack-new-keyword-mention",
name: "New Keyword Mention (Instant)",
version: "0.0.7",
version: "0.0.8",
description: "Emit new event when a specific keyword is mentioned in a channel",
type: "source",
dedupe: "unique",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
...common,
key: "slack-new-message-in-channels",
name: "New Message In Channels (Instant)",
version: "1.0.24",
version: "1.0.25",
description: "Emit new event when a new message is posted to one or more channels",
type: "source",
dedupe: "unique",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
...common,
key: "slack-new-reaction-added",
name: "New Reaction Added (Instant)",
version: "1.1.25",
version: "1.1.26",
description: "Emit new event when a member has added an emoji reaction to a message",
type: "source",
dedupe: "unique",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
...common,
key: "slack-new-saved-message",
name: "New Saved Message (Instant)",
version: "0.0.5",
version: "0.0.6",
description: "Emit new event when a message is saved. Note: The endpoint is marked as deprecated, and Slack might shut this off at some point down the line.",
type: "source",
dedupe: "unique",
Expand Down
2 changes: 1 addition & 1 deletion components/slack/sources/new-user-added/new-user-added.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
...common,
key: "slack-new-user-added",
name: "New User Added (Instant)",
version: "0.0.3",
version: "0.0.4",
description: "Emit new event when a new member joins a workspace.",
type: "source",
dedupe: "unique",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
...common,
key: "slack-new-user-mention",
name: "New User Mention (Instant)",
version: "0.0.7",
version: "0.0.8",
description: "Emit new event when a username or specific keyword is mentioned in a channel",
type: "source",
dedupe: "unique",
Expand Down
10 changes: 5 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading