@pipedream/trello 1.3.0 → 1.3.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/actions/add-attachment-to-card/add-attachment-to-card.mjs +6 -1
- package/actions/add-checklist/add-checklist.mjs +6 -1
- package/actions/add-comment/add-comment.mjs +6 -1
- package/actions/add-existing-label-to-card/add-existing-label-to-card.mjs +6 -1
- package/actions/add-member-to-card/add-member-to-card.mjs +6 -1
- package/actions/archive-card/archive-card.mjs +6 -1
- package/actions/complete-checklist-item/complete-checklist-item.mjs +6 -1
- package/actions/create-board/create-board.mjs +6 -1
- package/actions/create-card/create-card.mjs +6 -1
- package/actions/create-checklist-item/create-checklist-item.mjs +6 -1
- package/actions/create-label/create-label.mjs +6 -1
- package/actions/create-list/create-list.mjs +6 -1
- package/actions/delete-checklist/delete-checklist.mjs +6 -1
- package/actions/find-labels/find-labels.mjs +6 -1
- package/actions/find-list/find-list.mjs +6 -1
- package/actions/get-board/get-board.mjs +6 -1
- package/actions/get-card/get-card.mjs +6 -1
- package/actions/get-cards-in-list/get-cards-in-list.mjs +6 -1
- package/actions/get-cards-on-board/get-cards-on-board.mjs +6 -1
- package/actions/get-list/get-list.mjs +6 -1
- package/actions/move-card-to-list/move-card-to-list.mjs +6 -1
- package/actions/remove-label-from-card/remove-label-from-card.mjs +6 -1
- package/actions/rename-list/rename-list.mjs +6 -1
- package/actions/search-boards/search-boards.mjs +6 -1
- package/actions/search-cards/search-cards.mjs +6 -1
- package/actions/search-checklists/search-checklists.mjs +6 -1
- package/actions/search-members/search-members.mjs +6 -1
- package/actions/update-card/update-card.mjs +6 -1
- package/package.json +2 -3
|
@@ -6,7 +6,12 @@ export default {
|
|
|
6
6
|
key: "trello-add-attachment-to-card",
|
|
7
7
|
name: "Add Attachment To Card",
|
|
8
8
|
description: "Adds a file attachment on a card. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-attachments-post)",
|
|
9
|
-
version: "1.0.
|
|
9
|
+
version: "1.0.4",
|
|
10
|
+
annotations: {
|
|
11
|
+
destructiveHint: false,
|
|
12
|
+
openWorldHint: true,
|
|
13
|
+
readOnlyHint: false,
|
|
14
|
+
},
|
|
10
15
|
type: "action",
|
|
11
16
|
props: {
|
|
12
17
|
app,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "trello-add-checklist",
|
|
5
5
|
name: "Add Checklist",
|
|
6
6
|
description: "Adds a new checklist to a card. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-checklists-post).",
|
|
7
|
-
version: "0.2.
|
|
7
|
+
version: "0.2.4",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: false,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
app,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "trello-add-comment",
|
|
5
5
|
name: "Add Comment",
|
|
6
6
|
description: "Create a new comment on a specific card. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-actions-comments-post).",
|
|
7
|
-
version: "0.2.
|
|
7
|
+
version: "0.2.4",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: false,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
app,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "trello-add-existing-label-to-card",
|
|
5
5
|
name: "Add Existing Label to Card",
|
|
6
6
|
description: "Adds an existing label to the specified card. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-idlabels-post).",
|
|
7
|
-
version: "0.1.
|
|
7
|
+
version: "0.1.4",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: false,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
app,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "trello-add-member-to-card",
|
|
5
5
|
name: "Add Member to Card",
|
|
6
6
|
description: "Adds a member to the specified card. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-idmembers-post).",
|
|
7
|
-
version: "0.2.
|
|
7
|
+
version: "0.2.4",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: false,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
app,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "trello-archive-card",
|
|
5
5
|
name: "Archive Card",
|
|
6
6
|
description: "Archives a card. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-put).",
|
|
7
|
-
version: "0.2.
|
|
7
|
+
version: "0.2.4",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: true,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: false,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
app,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "trello-complete-checklist-item",
|
|
5
5
|
name: "Complete a Checklist Item",
|
|
6
6
|
description: "Completes an existing checklist item in a card. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-checkitem-idcheckitem-put).",
|
|
7
|
-
version: "0.2.
|
|
7
|
+
version: "0.2.4",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: false,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
app,
|
|
@@ -5,7 +5,12 @@ export default {
|
|
|
5
5
|
key: "trello-create-board",
|
|
6
6
|
name: "Create a Board",
|
|
7
7
|
description: "Create a new Trello board or copy from an existing one. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-boards/#api-boards-post).",
|
|
8
|
-
version: "0.2.
|
|
8
|
+
version: "0.2.4",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: false,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: false,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
10
15
|
props: {
|
|
11
16
|
app,
|
|
@@ -7,7 +7,12 @@ export default {
|
|
|
7
7
|
key: "trello-create-card",
|
|
8
8
|
name: "Create Card",
|
|
9
9
|
description: "Creates a new card. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-post).",
|
|
10
|
-
version: "1.0.
|
|
10
|
+
version: "1.0.4",
|
|
11
|
+
annotations: {
|
|
12
|
+
destructiveHint: false,
|
|
13
|
+
openWorldHint: true,
|
|
14
|
+
readOnlyHint: false,
|
|
15
|
+
},
|
|
11
16
|
type: "action",
|
|
12
17
|
props: {
|
|
13
18
|
app,
|
|
@@ -5,7 +5,12 @@ export default {
|
|
|
5
5
|
key: "trello-create-checklist-item",
|
|
6
6
|
name: "Create a Checklist Item",
|
|
7
7
|
description: "Creates a new checklist item in a card. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-checklists/#api-checklists-id-checkitems-post).",
|
|
8
|
-
version: "0.3.
|
|
8
|
+
version: "0.3.2",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: false,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: false,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
10
15
|
props: {
|
|
11
16
|
app,
|
|
@@ -5,7 +5,12 @@ export default {
|
|
|
5
5
|
key: "trello-create-label",
|
|
6
6
|
name: "Create Label",
|
|
7
7
|
description: "Creates a new label on the specified board. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-labels/#api-labels-post).",
|
|
8
|
-
version: "0.2.
|
|
8
|
+
version: "0.2.4",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: false,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: false,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
10
15
|
props: {
|
|
11
16
|
app,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "trello-create-list",
|
|
5
5
|
name: "Create a List",
|
|
6
6
|
description: "Creates a new list. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-lists/#api-lists-post).",
|
|
7
|
-
version: "0.2.
|
|
7
|
+
version: "0.2.4",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: false,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
app,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "trello-delete-checklist",
|
|
5
5
|
name: "Delete Checklist",
|
|
6
6
|
description: "Deletes the specified checklist. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-checklists/#api-checklists-id-delete).",
|
|
7
|
-
version: "0.2.
|
|
7
|
+
version: "0.2.4",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: true,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: false,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
app,
|
|
@@ -5,7 +5,12 @@ export default {
|
|
|
5
5
|
key: "trello-find-labels",
|
|
6
6
|
name: "Find a Label",
|
|
7
7
|
description: "Finds a label on a specific board by name. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-boards/#api-boards-id-labels-get)",
|
|
8
|
-
version: "0.2.
|
|
8
|
+
version: "0.2.4",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: false,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: true,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
10
15
|
props: {
|
|
11
16
|
...common.props,
|
|
@@ -5,7 +5,12 @@ export default {
|
|
|
5
5
|
key: "trello-find-list",
|
|
6
6
|
name: "Find a List",
|
|
7
7
|
description: "Finds a list on a specific board by name. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-boards/#api-boards-id-lists-get).",
|
|
8
|
-
version: "0.2.
|
|
8
|
+
version: "0.2.4",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: false,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: true,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
10
15
|
props: {
|
|
11
16
|
...common.props,
|
|
@@ -6,7 +6,12 @@ export default {
|
|
|
6
6
|
key: "trello-get-board",
|
|
7
7
|
name: "Get Board",
|
|
8
8
|
description: "Request a single board. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-boards/#api-boards-id-get).",
|
|
9
|
-
version: "0.0.
|
|
9
|
+
version: "0.0.2",
|
|
10
|
+
annotations: {
|
|
11
|
+
destructiveHint: false,
|
|
12
|
+
openWorldHint: true,
|
|
13
|
+
readOnlyHint: true,
|
|
14
|
+
},
|
|
10
15
|
type: "action",
|
|
11
16
|
props: {
|
|
12
17
|
...common.props,
|
|
@@ -5,7 +5,12 @@ export default {
|
|
|
5
5
|
key: "trello-get-card",
|
|
6
6
|
name: "Get Card",
|
|
7
7
|
description: "Gets a card by its ID. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-get).",
|
|
8
|
-
version: "0.2.
|
|
8
|
+
version: "0.2.4",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: false,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: true,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
10
15
|
props: {
|
|
11
16
|
...common.props,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "trello-get-cards-in-list",
|
|
5
5
|
name: "Get Cards In A List",
|
|
6
6
|
description: "List the cards in a list. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-lists/#api-lists-id-cards-get).",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.2",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: true,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
app,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "trello-get-cards-on-board",
|
|
5
5
|
name: "Get Cards On A Board",
|
|
6
6
|
description: "Get all of the open Cards on a Board. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-boards/#api-boards-id-cards-get).",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.2",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: true,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
app,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "trello-get-list",
|
|
5
5
|
name: "Get List",
|
|
6
6
|
description: "Get information about a List. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-lists/#api-lists-id-get).",
|
|
7
|
-
version: "0.1.
|
|
7
|
+
version: "0.1.4",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: true,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
app,
|
|
@@ -5,7 +5,12 @@ export default {
|
|
|
5
5
|
key: "trello-move-card-to-list",
|
|
6
6
|
name: "Move Card to List",
|
|
7
7
|
description: "Moves a card to the specified board/list pair. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-put).",
|
|
8
|
-
version: "0.2.
|
|
8
|
+
version: "0.2.4",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: false,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: true,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
10
15
|
props: {
|
|
11
16
|
...common.props,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "trello-remove-label-from-card",
|
|
5
5
|
name: "Remove Card Label",
|
|
6
6
|
description: "Removes label from card. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-idlabels-idlabel-delete).",
|
|
7
|
-
version: "0.2.
|
|
7
|
+
version: "0.2.4",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: true,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: false,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
app,
|
|
@@ -5,7 +5,12 @@ export default {
|
|
|
5
5
|
key: "trello-rename-list",
|
|
6
6
|
name: "Rename List",
|
|
7
7
|
description: "Renames an existing list. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-lists/#api-lists-id-put).",
|
|
8
|
-
version: "0.1.
|
|
8
|
+
version: "0.1.4",
|
|
9
|
+
annotations: {
|
|
10
|
+
destructiveHint: true,
|
|
11
|
+
openWorldHint: true,
|
|
12
|
+
readOnlyHint: false,
|
|
13
|
+
},
|
|
9
14
|
type: "action",
|
|
10
15
|
props: {
|
|
11
16
|
...common.props,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "trello-search-boards",
|
|
5
5
|
name: "Search Boards",
|
|
6
6
|
description: "Searches for boards matching the specified query. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-search/#api-search-get).",
|
|
7
|
-
version: "0.3.
|
|
7
|
+
version: "0.3.4",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: true,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
app,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "trello-search-cards",
|
|
5
5
|
name: "Search Cards",
|
|
6
6
|
description: "Searches for cards matching the specified query. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-search/#api-search-get).",
|
|
7
|
-
version: "0.2.
|
|
7
|
+
version: "0.2.4",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: true,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
app,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "trello-search-checklists",
|
|
5
5
|
name: "Search Checklists",
|
|
6
6
|
description: "Find a checklist on a particular board or card by name. [See the documentation here](https://developer.atlassian.com/cloud/trello/rest/api-group-boards/#api-boards-id-checklists-get) and [here](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-checklists-get).",
|
|
7
|
-
version: "0.2.
|
|
7
|
+
version: "0.2.4",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: true,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
app,
|
|
@@ -4,7 +4,12 @@ export default {
|
|
|
4
4
|
key: "trello-search-members",
|
|
5
5
|
name: "Search Members",
|
|
6
6
|
description: "Search for Trello members. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-search/#api-search-members-get).",
|
|
7
|
-
version: "0.2.
|
|
7
|
+
version: "0.2.4",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: true,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
9
14
|
props: {
|
|
10
15
|
app,
|
|
@@ -6,7 +6,12 @@ export default {
|
|
|
6
6
|
key: "trello-update-card",
|
|
7
7
|
name: "Update Card",
|
|
8
8
|
description: "Updates a card. [See the documentation](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-put).",
|
|
9
|
-
version: "0.2.
|
|
9
|
+
version: "0.2.4",
|
|
10
|
+
annotations: {
|
|
11
|
+
destructiveHint: true,
|
|
12
|
+
openWorldHint: true,
|
|
13
|
+
readOnlyHint: false,
|
|
14
|
+
},
|
|
10
15
|
type: "action",
|
|
11
16
|
props: {
|
|
12
17
|
app,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipedream/trello",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Pipedream Trello Components",
|
|
5
5
|
"main": "trello.app.mjs",
|
|
6
6
|
"keywords": [
|
|
@@ -11,8 +11,7 @@
|
|
|
11
11
|
"author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@pipedream/platform": "^3.1.0",
|
|
14
|
-
"
|
|
15
|
-
"form-data": "^4.0.0",
|
|
14
|
+
"form-data": "^4.0.4",
|
|
16
15
|
"lodash-es": "^4.17.21",
|
|
17
16
|
"mime": "^4.0.4",
|
|
18
17
|
"ms": "^2.1.3"
|