@pipedream/slack 0.10.0 → 0.10.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.
@@ -8,7 +8,7 @@ export default {
8
8
  key: "slack-upload-file",
9
9
  name: "Upload File",
10
10
  description: "Upload a file. [See the documentation](https://api.slack.com/messaging/files#uploading_files)",
11
- version: "0.1.0",
11
+ version: "0.1.1",
12
12
  type: "action",
13
13
  props: {
14
14
  slack,
@@ -32,6 +32,12 @@ export default {
32
32
  ],
33
33
  optional: true,
34
34
  },
35
+ syncDir: {
36
+ type: "dir",
37
+ accessMode: "read",
38
+ sync: true,
39
+ optional: true,
40
+ },
35
41
  },
36
42
  async run({ $ }) {
37
43
  const {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/slack",
3
- "version": "0.10.0",
3
+ "version": "0.10.2",
4
4
  "description": "Pipedream Slack Components",
5
5
  "main": "slack.app.mjs",
6
6
  "keywords": [
@@ -144,7 +144,7 @@ export default {
144
144
  return await this.maybeCached(
145
145
  `lastMessage:${channel}:${ts}`,
146
146
  async () => {
147
- const response = await this.slack.sdk().getConversationReplies({
147
+ const response = await this.slack.getConversationReplies({
148
148
  channel,
149
149
  ts,
150
150
  limit: 1,
@@ -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.9",
8
+ version: "0.0.10",
9
9
  description: "Emit new event when a new channel is created.",
10
10
  type: "source",
11
11
  dedupe: "unique",
@@ -5,7 +5,7 @@ export default {
5
5
  ...common,
6
6
  key: "slack-new-direct-message",
7
7
  name: "New Direct Message (Instant)",
8
- version: "1.0.22",
8
+ version: "1.0.23",
9
9
  description: "Emit new event when a message was posted in a direct message channel",
10
10
  type: "source",
11
11
  dedupe: "unique",
@@ -3,7 +3,7 @@ import sampleEmit from "./test-event.mjs";
3
3
 
4
4
  export default {
5
5
  name: "New Interaction Events (Instant)",
6
- version: "0.0.19",
6
+ version: "0.0.20",
7
7
  key: "slack-new-interaction-event-received",
8
8
  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).",
9
9
  type: "source",
@@ -6,7 +6,7 @@ export default {
6
6
  ...common,
7
7
  key: "slack-new-keyword-mention",
8
8
  name: "New Keyword Mention (Instant)",
9
- version: "0.0.7",
9
+ version: "0.0.8",
10
10
  description: "Emit new event when a specific keyword is mentioned in a channel",
11
11
  type: "source",
12
12
  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.24",
9
+ version: "1.0.25",
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",
@@ -5,7 +5,7 @@ export default {
5
5
  ...common,
6
6
  key: "slack-new-reaction-added",
7
7
  name: "New Reaction Added (Instant)",
8
- version: "1.1.25",
8
+ version: "1.1.26",
9
9
  description: "Emit new event when a member has added an emoji reaction to a message",
10
10
  type: "source",
11
11
  dedupe: "unique",
@@ -5,7 +5,7 @@ export default {
5
5
  ...common,
6
6
  key: "slack-new-saved-message",
7
7
  name: "New Saved Message (Instant)",
8
- version: "0.0.5",
8
+ version: "0.0.6",
9
9
  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.",
10
10
  type: "source",
11
11
  dedupe: "unique",
@@ -5,7 +5,7 @@ export default {
5
5
  ...common,
6
6
  key: "slack-new-user-added",
7
7
  name: "New User Added (Instant)",
8
- version: "0.0.3",
8
+ version: "0.0.4",
9
9
  description: "Emit new event when a new member joins a workspace.",
10
10
  type: "source",
11
11
  dedupe: "unique",
@@ -6,7 +6,7 @@ export default {
6
6
  ...common,
7
7
  key: "slack-new-user-mention",
8
8
  name: "New User Mention (Instant)",
9
- version: "0.0.7",
9
+ version: "0.0.8",
10
10
  description: "Emit new event when a username or specific keyword is mentioned in a channel",
11
11
  type: "source",
12
12
  dedupe: "unique",