@pipedream/trello 0.3.13 → 0.3.14
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 +9 -10
- package/actions/update-card/update-card.mjs +3 -3
- package/package.json +2 -3
package/README.md
CHANGED
@@ -1,12 +1,11 @@
|
|
1
1
|
# Overview
|
2
2
|
|
3
|
-
With
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
-
|
8
|
-
|
9
|
-
-
|
10
|
-
|
11
|
-
-
|
12
|
-
- And more!
|
3
|
+
Trello's API lets you craft workflows around managing boards, lists, cards, and users. With Pipedream, you can automate Trello tasks, like syncing cards with external databases, updating checklists, and posting notifications to other platforms. It enables seamless connection with other apps, fostering productivity by automating routine board operations, card management, and team notifications.
|
4
|
+
|
5
|
+
# Example Use Cases
|
6
|
+
|
7
|
+
- **Automated Project Management**: Sync Trello cards with a GitHub repository, creating issues from new cards, and updating cards when issues are closed. This keeps developers and stakeholders aligned across platforms.
|
8
|
+
|
9
|
+
- **Marketing Campaign Tracker**: Connect Trello with Google Sheets to track campaign progress. When a card moves to the "Complete" list, automatically log the details in a spreadsheet, giving a real-time view of campaign status.
|
10
|
+
|
11
|
+
- **Team Coordination**: Integrate Trello with Slack, notifying a channel when due dates are updated or cards are marked complete, ensuring the team stays informed of task progression without having to check Trello.
|
@@ -1,13 +1,13 @@
|
|
1
1
|
import common from "../common.mjs";
|
2
|
-
import pickBy from "lodash.
|
3
|
-
import pick from "lodash.
|
2
|
+
import pickBy from "lodash-es/pickBy.js";
|
3
|
+
import pick from "lodash-es/pick.js";
|
4
4
|
|
5
5
|
export default {
|
6
6
|
...common,
|
7
7
|
key: "trello-update-card",
|
8
8
|
name: "Update Card",
|
9
9
|
description: "Updates a card. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-put)",
|
10
|
-
version: "0.1.
|
10
|
+
version: "0.1.5",
|
11
11
|
type: "action",
|
12
12
|
props: {
|
13
13
|
...common.props,
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@pipedream/trello",
|
3
|
-
"version": "0.3.
|
3
|
+
"version": "0.3.14",
|
4
4
|
"description": "Pipedream Trello Components",
|
5
5
|
"main": "trello.app.mjs",
|
6
6
|
"keywords": [
|
@@ -12,8 +12,7 @@
|
|
12
12
|
"dependencies": {
|
13
13
|
"@pipedream/platform": "^1.5.1",
|
14
14
|
"crypto": "^1.0.1",
|
15
|
-
"lodash
|
16
|
-
"lodash.pickby": "^4.6.0",
|
15
|
+
"lodash-es": "^4.17.21",
|
17
16
|
"mime": "^3.0.0"
|
18
17
|
},
|
19
18
|
"gitHead": "e12480b94cc03bed4808ebc6b13e7fdb3a1ba535",
|