Skip to content

Commit c9f98fc

Browse files
michelle0927joy-chanboop
authored andcommitted
Slack Bug Fix to New Reaction Added source (PipedreamHQ#17166)
* bug fix * bump package version * revert package version * pnpm-lock.yaml
1 parent 663571a commit c9f98fc

File tree

12 files changed

+16
-16
lines changed

12 files changed

+16
-16
lines changed

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.10.0",
3+
"version": "0.10.1",
44
"description": "Pipedream Slack Components",
55
"main": "slack.app.mjs",
66
"keywords": [

components/slack/sources/common/base.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ export default {
144144
return await this.maybeCached(
145145
`lastMessage:${channel}:${ts}`,
146146
async () => {
147-
const response = await this.slack.sdk().getConversationReplies({
147+
const response = await this.slack.getConversationReplies({
148148
channel,
149149
ts,
150150
limit: 1,

components/slack/sources/new-channel-created/new-channel-created.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
...common,
66
key: "slack-new-channel-created",
77
name: "New Channel Created (Instant)",
8-
version: "0.0.9",
8+
version: "0.0.10",
99
description: "Emit new event when a new channel is created.",
1010
type: "source",
1111
dedupe: "unique",

components/slack/sources/new-direct-message/new-direct-message.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
...common,
66
key: "slack-new-direct-message",
77
name: "New Direct Message (Instant)",
8-
version: "1.0.22",
8+
version: "1.0.23",
99
description: "Emit new event when a message was posted in a direct message channel",
1010
type: "source",
1111
dedupe: "unique",

components/slack/sources/new-interaction-event-received/new-interaction-event-received.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import sampleEmit from "./test-event.mjs";
33

44
export default {
55
name: "New Interaction Events (Instant)",
6-
version: "0.0.19",
6+
version: "0.0.20",
77
key: "slack-new-interaction-event-received",
88
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).",
99
type: "source",

components/slack/sources/new-keyword-mention/new-keyword-mention.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
...common,
77
key: "slack-new-keyword-mention",
88
name: "New Keyword Mention (Instant)",
9-
version: "0.0.7",
9+
version: "0.0.8",
1010
description: "Emit new event when a specific keyword is mentioned in a channel",
1111
type: "source",
1212
dedupe: "unique",

components/slack/sources/new-message-in-channels/new-message-in-channels.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
...common,
77
key: "slack-new-message-in-channels",
88
name: "New Message In Channels (Instant)",
9-
version: "1.0.24",
9+
version: "1.0.25",
1010
description: "Emit new event when a new message is posted to one or more channels",
1111
type: "source",
1212
dedupe: "unique",

components/slack/sources/new-reaction-added/new-reaction-added.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
...common,
66
key: "slack-new-reaction-added",
77
name: "New Reaction Added (Instant)",
8-
version: "1.1.25",
8+
version: "1.1.26",
99
description: "Emit new event when a member has added an emoji reaction to a message",
1010
type: "source",
1111
dedupe: "unique",

components/slack/sources/new-saved-message/new-saved-message.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
...common,
66
key: "slack-new-saved-message",
77
name: "New Saved Message (Instant)",
8-
version: "0.0.5",
8+
version: "0.0.6",
99
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.",
1010
type: "source",
1111
dedupe: "unique",

components/slack/sources/new-user-added/new-user-added.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
...common,
66
key: "slack-new-user-added",
77
name: "New User Added (Instant)",
8-
version: "0.0.3",
8+
version: "0.0.4",
99
description: "Emit new event when a new member joins a workspace.",
1010
type: "source",
1111
dedupe: "unique",

0 commit comments

Comments
 (0)