@pipedream/slack 0.4.32 → 0.5.1
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.
- package/README.md +50 -8
- package/actions/add-emoji-reaction/add-emoji-reaction.mjs +1 -1
- package/actions/add-star/add-star.mjs +1 -1
- package/actions/archive-channel/archive-channel.mjs +1 -1
- package/actions/complete-reminder/complete-reminder.mjs +1 -1
- package/actions/create-channel/create-channel.mjs +1 -1
- package/actions/create-reminder/create-reminder.mjs +1 -1
- package/actions/delete-file/delete-file.mjs +1 -1
- package/actions/delete-message/delete-message.mjs +1 -1
- package/actions/delete-reminder/delete-reminder.mjs +1 -1
- package/actions/find-message/find-message.mjs +1 -1
- package/actions/find-user-by-email/find-user-by-email.mjs +1 -1
- package/actions/get-channel/get-channel.mjs +1 -1
- package/actions/get-file/get-file.mjs +1 -1
- package/actions/get-reminder/get-reminder.mjs +1 -1
- package/actions/invite-user-to-channel/invite-user-to-channel.mjs +1 -1
- package/actions/join-channel/join-channel.mjs +1 -1
- package/actions/kick-user/kick-user.mjs +1 -1
- package/actions/leave-channel/leave-channel.mjs +1 -1
- package/actions/list-channels/list-channels.mjs +1 -1
- package/actions/list-files/list-files.mjs +1 -1
- package/actions/list-members-in-channel/list-members-in-channel.mjs +1 -1
- package/actions/list-reminders/list-reminders.mjs +1 -1
- package/actions/list-replies/list-replies.mjs +1 -1
- package/actions/list-user-groups-users/list-user-groups-users.mjs +1 -1
- package/actions/list-users/list-users.mjs +1 -1
- package/actions/remove-star/remove-star.mjs +1 -1
- package/actions/reply-to-a-message/reply-to-a-message.mjs +1 -1
- package/actions/send-block-kit-message/send-block-kit-message.mjs +14 -2
- package/actions/send-custom-message/send-custom-message.mjs +1 -1
- package/actions/send-direct-message/send-direct-message.mjs +1 -1
- package/actions/send-group-message/send-group-message.mjs +1 -1
- package/actions/send-large-message/send-large-message.mjs +1 -1
- package/actions/send-message-private-channel/send-message-private-channel.mjs +2 -2
- package/actions/send-message-public-channel/send-message-public-channel.mjs +2 -2
- package/actions/set-channel-purpose/set-channel-purpose.mjs +1 -1
- package/actions/set-channel-topic/set-channel-topic.mjs +1 -1
- package/actions/unarchive-channel/unarchive-channel.mjs +1 -1
- package/actions/update-message/update-message.mjs +1 -1
- package/actions/update-profile/update-profile.mjs +1 -1
- package/actions/update-user-groups-users/update-user-groups-users.mjs +1 -1
- package/actions/upload-file/upload-file.mjs +2 -2
- package/actions/verify-slack-signature/verify-slack-signature.mjs +2 -2
- package/package.json +1 -1
- package/sources/common/base.mjs +1 -1
- package/sources/new-channel-created/new-channel-created.mjs +32 -0
- package/sources/new-channel-created/test-event.mjs +44 -0
- package/sources/new-direct-message/new-direct-message.mjs +1 -1
- package/sources/new-interaction-event-received/new-interaction-event-received.mjs +1 -1
- package/sources/new-mention/new-mention.mjs +1 -1
- package/sources/new-message-in-channels/new-message-in-channels.mjs +2 -2
- package/sources/new-reaction-added/new-reaction-added.mjs +1 -1
- package/sources/new-star-added/new-star-added.mjs +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Overview
|
|
2
2
|
|
|
3
|
-
The Pipedream Slack app enables you to build event-driven workflows that interact with the Slack API.
|
|
3
|
+
The Pipedream Slack app enables you to build event-driven workflows that interact with the Slack API. Once you authorize the Pipedream app's access to your workspace, you can use [Pipedream workflows](/workflows/) to perform common Slack [actions](#workflow-actions) or [write your own code](/code/) against the Slack API.
|
|
4
4
|
|
|
5
5
|
The Pipedream Slack app is not a typical app. You don't interact with it directly as a bot, and it doesn't add custom functionality to your workspace out of the box. It makes it easier to automate anything you'd typically use the Slack API for, using Pipedream workflows.
|
|
6
6
|
|
|
@@ -13,29 +13,71 @@ The Pipedream Slack app is not a typical app. You don't interact with it directl
|
|
|
13
13
|
|
|
14
14
|
## Should I use the Slack or Slack Bot app on Pipedream?
|
|
15
15
|
|
|
16
|
-
The Slack app is the easiest and most
|
|
16
|
+
The Slack app is the easiest and most convenient option to get started. It installs the official Pipedream bot into your Slack workspace with just a few clicks.
|
|
17
17
|
|
|
18
18
|
However, if you'd like to use your own bot registered with the [Slack API](https://api.slack.com), you can use the [Slack Bot app](https://pipedream.com/apps/slack-bot) instead.
|
|
19
19
|
|
|
20
|
-
The Slack Bot requires a bot token to allow your Pipedream workflows to authenticate as your bot. The extra
|
|
20
|
+
The Slack Bot requires a bot token to allow your Pipedream workflows to authenticate as your bot. The extra setup steps allow you to list your custom bot on the Slack Marketplace or install the bot on other workspaces as your bot's name instead of as Pipedream.
|
|
21
21
|
|
|
22
22
|
## Accounts
|
|
23
23
|
|
|
24
24
|
1. Visit [https://pipedream.com/accounts](https://pipedream.com/accounts).
|
|
25
25
|
2. Click on the **Click Here To Connect An App** button in the top-right.
|
|
26
|
-
3. Search for "Slack" among the list of apps
|
|
26
|
+
3. Search for "Slack" among the list of apps and select it.
|
|
27
27
|
4. This will open a new window asking you to allow Pipedream access to your Slack workspace. Choose the right workspace where you'd like to install the app, then click **Allow**.
|
|
28
|
-
5. That's it! You can now use this Slack account in any [actions](#workflow-actions)
|
|
28
|
+
5. That's it! You can now use this Slack account in any [actions](#workflow-actions) or [link it to any code step](/connected-accounts/#connecting-accounts).
|
|
29
29
|
|
|
30
30
|
## Within a workflow
|
|
31
31
|
|
|
32
32
|
1. [Create a new workflow](https://pipedream.com/new).
|
|
33
33
|
2. Select your trigger (HTTP, Cron, etc.).
|
|
34
|
-
3. Click
|
|
34
|
+
3. Click the **+** button below the trigger step and search for "Slack".
|
|
35
35
|
4. Select the **Send a Message** action.
|
|
36
36
|
5. Click the **Connect Account** button near the top of the step. This will prompt you to select any existing Slack accounts you've previously authenticated with Pipedream, or you can select a **New** account. Clicking **New** opens a new window asking you to allow Pipedream access to your Slack workspace. Choose the right workspace where you'd like to install the app, then click **Allow**.
|
|
37
|
-
6.
|
|
37
|
+
6. After allowing access, you can connect to the Slack API using any of the Slack actions within a Pipedream workflow.
|
|
38
|
+
|
|
39
|
+
# Example Use Cases
|
|
40
|
+
|
|
41
|
+
- **Automated Standup Reports**: Trigger a workflow on Pipedream to collect standup updates from team members within a Slack channel at a scheduled time. The workflow compiles updates into a formatted report and posts it to a designated channel or sends it via email using an app like SendGrid.
|
|
42
|
+
|
|
43
|
+
- **Customer Support Ticketing**: Use Pipedream to monitor a Slack support channel for new messages. On detecting a message, the workflow creates a ticket in a customer support platform like Zendesk or Jira. It can also format and forward critical information back to the Slack channel to keep the team updated.
|
|
44
|
+
|
|
45
|
+
- **Real-time CRM Updates**: Configure a Pipedream workflow to listen for specific trigger words in sales-related Slack channels. When mentioned, the workflow fetches corresponding data from a CRM tool like Salesforce and posts the latest deal status or customer information in the Slack conversation for quick reference.
|
|
46
|
+
|
|
38
47
|
|
|
39
48
|
# Troubleshooting
|
|
40
49
|
|
|
41
|
-
|
|
50
|
+
## Error Responses
|
|
51
|
+
|
|
52
|
+
Slack's API will always return JSON, regardless if the request was successfully processed or not.
|
|
53
|
+
|
|
54
|
+
Each JSON response includes an `ok` boolean property indicating whether the action succeeded or failed.
|
|
55
|
+
|
|
56
|
+
Example of a successful response:
|
|
57
|
+
|
|
58
|
+
```json
|
|
59
|
+
{
|
|
60
|
+
"ok": true
|
|
61
|
+
}
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
If the `ok` property is false, Slack will also include an `error` property with a short machine-readable code that describes the error.
|
|
65
|
+
|
|
66
|
+
Example of a failure:
|
|
67
|
+
```json
|
|
68
|
+
{
|
|
69
|
+
"ok": false,
|
|
70
|
+
"error": "invalid_parameters"
|
|
71
|
+
}
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
Additionally, if the action is successful, there's still a chance of a `warning` property in the response. This may contain a comma-separated list of warning codes.
|
|
75
|
+
|
|
76
|
+
Example of a successful response, but with warnings:
|
|
77
|
+
|
|
78
|
+
```json
|
|
79
|
+
{
|
|
80
|
+
"ok": true,
|
|
81
|
+
"warnings": "invalid_character_set"
|
|
82
|
+
}
|
|
83
|
+
```
|
|
@@ -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.
|
|
7
|
+
version: "0.0.6",
|
|
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.
|
|
7
|
+
version: "0.0.14",
|
|
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.
|
|
7
|
+
version: "0.0.14",
|
|
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.
|
|
7
|
+
version: "0.0.14",
|
|
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.
|
|
7
|
+
version: "0.0.14",
|
|
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.
|
|
7
|
+
version: "0.0.14",
|
|
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.
|
|
7
|
+
version: "0.0.14",
|
|
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.
|
|
7
|
+
version: "0.0.14",
|
|
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.
|
|
7
|
+
version: "0.0.14",
|
|
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.
|
|
7
|
+
version: "0.0.14",
|
|
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
|
+
version: "0.0.7",
|
|
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.
|
|
7
|
+
version: "0.0.14",
|
|
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.
|
|
9
|
+
version: "0.1.19",
|
|
10
10
|
type: "action",
|
|
11
11
|
props: {
|
|
12
12
|
slack: common.props.slack,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import common from "../common/send-message.mjs";
|
|
2
1
|
import buildBlocks from "../common/build-blocks.mjs";
|
|
2
|
+
import common from "../common/send-message.mjs";
|
|
3
3
|
|
|
4
4
|
export default {
|
|
5
5
|
...common,
|
|
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.
|
|
9
|
+
version: "0.3.2",
|
|
10
10
|
type: "action",
|
|
11
11
|
key: "slack-send-block-kit-message",
|
|
12
12
|
props: {
|
|
@@ -23,6 +23,18 @@ 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
|
+
},
|
|
26
38
|
...common.props,
|
|
27
39
|
...buildBlocks.props,
|
|
28
40
|
},
|
|
@@ -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.
|
|
8
|
+
version: "0.2.18",
|
|
9
9
|
type: "action",
|
|
10
10
|
props: {
|
|
11
11
|
slack: 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.
|
|
8
|
+
version: "0.2.19",
|
|
9
9
|
type: "action",
|
|
10
10
|
props: {
|
|
11
11
|
slack: common.props.slack,
|
|
@@ -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.
|
|
8
|
+
version: "0.2.19",
|
|
9
9
|
type: "action",
|
|
10
10
|
props: {
|
|
11
11
|
slack: common.props.slack,
|
|
@@ -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.
|
|
8
|
+
version: "0.0.14",
|
|
9
9
|
type: "action",
|
|
10
10
|
props: {
|
|
11
11
|
slack: common.props.slack,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import common from "../common/send-message.mjs";
|
|
2
1
|
import constants from "../../common/constants.mjs";
|
|
2
|
+
import common from "../common/send-message.mjs";
|
|
3
3
|
|
|
4
4
|
export default {
|
|
5
5
|
...common,
|
|
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.
|
|
9
|
+
version: "0.2.19",
|
|
10
10
|
type: "action",
|
|
11
11
|
props: {
|
|
12
12
|
slack: common.props.slack,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import common from "../common/send-message.mjs";
|
|
2
1
|
import constants from "../../common/constants.mjs";
|
|
2
|
+
import common from "../common/send-message.mjs";
|
|
3
3
|
|
|
4
4
|
export default {
|
|
5
5
|
...common,
|
|
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.
|
|
9
|
+
version: "0.2.18",
|
|
10
10
|
type: "action",
|
|
11
11
|
props: {
|
|
12
12
|
slack: common.props.slack,
|
|
@@ -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.
|
|
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-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.
|
|
7
|
+
version: "0.0.14",
|
|
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.
|
|
7
|
+
version: "0.0.14",
|
|
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.
|
|
7
|
+
version: "0.0.14",
|
|
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
|
+
version: "0.0.7",
|
|
8
8
|
type: "action",
|
|
9
9
|
props: {
|
|
10
10
|
slack,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { ConfigurationError } from "@pipedream/platform";
|
|
2
|
-
import slack from "../../slack.app.mjs";
|
|
3
2
|
import fs from "fs";
|
|
3
|
+
import slack from "../../slack.app.mjs";
|
|
4
4
|
|
|
5
5
|
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.
|
|
9
|
+
version: "0.0.17",
|
|
10
10
|
type: "action",
|
|
11
11
|
props: {
|
|
12
12
|
slack,
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import slack from "../../slack.app.mjs";
|
|
2
1
|
import crypto from "crypto";
|
|
2
|
+
import slack from "../../slack.app.mjs";
|
|
3
3
|
|
|
4
4
|
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.
|
|
8
|
+
version: "0.0.7",
|
|
9
9
|
type: "action",
|
|
10
10
|
props: {
|
|
11
11
|
slack,
|
package/package.json
CHANGED
package/sources/common/base.mjs
CHANGED
|
@@ -166,7 +166,7 @@ export default {
|
|
|
166
166
|
}
|
|
167
167
|
|
|
168
168
|
this.$emit(event, {
|
|
169
|
-
id: event.client_msg_id || event.pipedream_msg_id,
|
|
169
|
+
id: event.client_msg_id || event.pipedream_msg_id || event.channel.id,
|
|
170
170
|
summary: this.getSummary(event),
|
|
171
171
|
ts: event.event_ts || Date.now(),
|
|
172
172
|
});
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import common from "../common/base.mjs";
|
|
2
|
+
import sampleEmit from "./test-event.mjs";
|
|
3
|
+
|
|
4
|
+
export default {
|
|
5
|
+
...common,
|
|
6
|
+
key: "slack-new-channel-created",
|
|
7
|
+
name: "New Channel Created (Instant)",
|
|
8
|
+
version: "0.0.1",
|
|
9
|
+
description: "Emit new event when a new channel is created.",
|
|
10
|
+
type: "source",
|
|
11
|
+
dedupe: "unique",
|
|
12
|
+
props: {
|
|
13
|
+
...common.props,
|
|
14
|
+
// eslint-disable-next-line pipedream/props-description,pipedream/props-label
|
|
15
|
+
slackApphook: {
|
|
16
|
+
type: "$.interface.apphook",
|
|
17
|
+
appProp: "slack",
|
|
18
|
+
async eventNames() {
|
|
19
|
+
return [
|
|
20
|
+
"channel_created",
|
|
21
|
+
];
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
methods: {
|
|
26
|
+
...common.methods,
|
|
27
|
+
getSummary({ channel: { name } }) {
|
|
28
|
+
return `New channel created - ${name}`;
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
sampleEmit,
|
|
32
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"type": "channel_created",
|
|
3
|
+
"channel": {
|
|
4
|
+
"id": "C024BE91L",
|
|
5
|
+
"name": "fun",
|
|
6
|
+
"is_channel": true,
|
|
7
|
+
"is_group": false,
|
|
8
|
+
"is_im": false,
|
|
9
|
+
"is_mpim": false,
|
|
10
|
+
"is_private": false,
|
|
11
|
+
"created": 1360782804,
|
|
12
|
+
"is_archived": false,
|
|
13
|
+
"is_general": false,
|
|
14
|
+
"unlinked": 0,
|
|
15
|
+
"name_normalized": "fun",
|
|
16
|
+
"is_shared": false,
|
|
17
|
+
"is_frozen": false,
|
|
18
|
+
"is_org_shared": false,
|
|
19
|
+
"is_pending_ext_shared": false,
|
|
20
|
+
"pending_shared": [],
|
|
21
|
+
"context_team_id": "TLZ203R5",
|
|
22
|
+
"updated": 1714140253251,
|
|
23
|
+
"parent_conversation": null,
|
|
24
|
+
"creator": "U024BE7LH",
|
|
25
|
+
"is_ext_shared": false,
|
|
26
|
+
"shared_team_ids": [
|
|
27
|
+
"TLZ203R5"
|
|
28
|
+
],
|
|
29
|
+
"pending_connected_team_ids": [],
|
|
30
|
+
"topic": {
|
|
31
|
+
"value": "",
|
|
32
|
+
"creator": "",
|
|
33
|
+
"last_set": 0
|
|
34
|
+
},
|
|
35
|
+
"purpose": {
|
|
36
|
+
"value": "",
|
|
37
|
+
"creator": "",
|
|
38
|
+
"last_set": 0
|
|
39
|
+
},
|
|
40
|
+
"previous_names": []
|
|
41
|
+
},
|
|
42
|
+
"event_ts": "1714140253.002700",
|
|
43
|
+
"pipedream_msg_id": "pd_1714140255038_bkbl3pxpkp"
|
|
44
|
+
}
|
|
@@ -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.
|
|
7
|
+
version: "1.0.13",
|
|
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.
|
|
5
|
+
version: "0.0.11",
|
|
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.
|
|
8
|
+
version: "1.0.16",
|
|
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",
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import common from "../common/base.mjs";
|
|
2
|
-
import sampleEmit from "./test-event.mjs";
|
|
3
2
|
import constants from "../common/constants.mjs";
|
|
3
|
+
import sampleEmit from "./test-event.mjs";
|
|
4
4
|
|
|
5
5
|
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.
|
|
9
|
+
version: "1.0.15",
|
|
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.
|
|
7
|
+
version: "1.1.17",
|
|
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",
|