@pipedream/trello 0.3.4 → 0.3.6
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
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Overview
|
|
2
|
+
|
|
3
|
+
With the Trello API, you can:
|
|
4
|
+
|
|
5
|
+
- Create new boards
|
|
6
|
+
- Add and remove lists from boards
|
|
7
|
+
- Add and remove cards from lists
|
|
8
|
+
- Add comments to cards
|
|
9
|
+
- Add and remove attachments from cards
|
|
10
|
+
- Add and remove members from boards
|
|
11
|
+
- Change the background of boards
|
|
12
|
+
- And more!
|
|
@@ -3,9 +3,9 @@ import { axios } from "@pipedream/platform";
|
|
|
3
3
|
|
|
4
4
|
export default {
|
|
5
5
|
key: "trello-add-image-attachment",
|
|
6
|
-
name: "
|
|
6
|
+
name: "Add Image Attachment to Card",
|
|
7
7
|
description: "Adds image to card",
|
|
8
|
-
version: "0.1.
|
|
8
|
+
version: "0.1.2",
|
|
9
9
|
type: "action",
|
|
10
10
|
props: {
|
|
11
11
|
trello: {
|
|
@@ -2,10 +2,10 @@ import common from "../common.js";
|
|
|
2
2
|
|
|
3
3
|
export default {
|
|
4
4
|
...common,
|
|
5
|
-
key: "trello-get-
|
|
5
|
+
key: "trello-get-card",
|
|
6
6
|
name: "Get Card",
|
|
7
7
|
description: "Gets a card by its ID. [See the docs here](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-get)",
|
|
8
|
-
version: "0.1.
|
|
8
|
+
version: "0.1.5",
|
|
9
9
|
type: "action",
|
|
10
10
|
props: {
|
|
11
11
|
...common.props,
|
|
@@ -2,9 +2,9 @@ import { axios } from "@pipedream/platform";
|
|
|
2
2
|
|
|
3
3
|
export default {
|
|
4
4
|
key: "trello-get-list",
|
|
5
|
-
name: "
|
|
5
|
+
name: "Get List",
|
|
6
6
|
description: "Get information about a List",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.2",
|
|
8
8
|
type: "action",
|
|
9
9
|
props: {
|
|
10
10
|
// eslint-disable-next-line pipedream/props-label, pipedream/props-description
|