@pipedream/trello 0.3.11 → 0.3.12
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-via-url/add-attachment-to-card-via-url.mjs +2 -2
- package/actions/add-checklist/add-checklist.mjs +1 -1
- package/actions/add-comment/add-comment.mjs +1 -1
- package/actions/add-existing-label-to-card/add-existing-label-to-card.mjs +2 -2
- package/actions/add-file-as-attachment-via-url/add-file-as-attachment-via-url.mjs +1 -1
- package/actions/add-image-attachment/add-image-attachment.mjs +1 -1
- package/actions/add-label-to-card/add-label-to-card.mjs +1 -1
- package/actions/add-member-to-card/add-member-to-card.mjs +2 -2
- package/actions/archive-card/archive-card.mjs +2 -2
- package/actions/close-board/close-board.mjs +2 -2
- package/actions/{common.js → common.mjs} +2 -2
- package/actions/complete-checklist-item/complete-checklist-item.mjs +1 -1
- package/actions/copy-board/copy-board.mjs +1 -1
- package/actions/create-board/create-board.mjs +1 -1
- package/actions/create-card/create-card.mjs +2 -2
- package/actions/create-checklist/create-checklist.mjs +2 -2
- package/actions/create-checklist-item/create-checklist-item.mjs +1 -1
- package/actions/create-comment-on-card/create-comment-on-card.mjs +2 -2
- package/actions/create-label/create-label.mjs +1 -1
- package/actions/create-list/create-list.mjs +1 -1
- package/actions/delete-checklist/delete-checklist.mjs +2 -2
- package/actions/find-labels/find-labels.mjs +2 -2
- package/actions/find-list/find-list.mjs +2 -2
- package/actions/get-card/get-card.mjs +2 -2
- package/actions/get-list/get-list.mjs +1 -1
- package/actions/move-card-to-list/move-card-to-list.mjs +2 -2
- package/actions/remove-label-from-card/remove-label-from-card.mjs +2 -2
- package/actions/rename-list/rename-list.mjs +2 -2
- package/actions/search-boards/search-boards.mjs +2 -2
- package/actions/search-cards/search-cards.mjs +2 -2
- package/actions/search-checklists/search-checklists.mjs +1 -1
- package/actions/search-members/search-members.mjs +1 -1
- package/actions/update-card/update-card.mjs +4 -4
- package/common/{events.js → events.mjs} +1 -1
- package/common/{fields.js → fields.mjs} +1 -1
- package/package.json +3 -3
- package/sources/card-archived/card-archived.mjs +1 -1
- package/sources/card-due-date-reminder/card-due-date-reminder.mjs +1 -1
- package/sources/card-moved/card-moved.mjs +1 -1
- package/sources/card-updates/card-updates.mjs +1 -1
- package/sources/common/common-polling.mjs +1 -1
- package/sources/common/common-webhook.mjs +1 -1
- package/sources/common/{common.js → common.mjs} +2 -2
- package/sources/custom-webhook-events/custom-webhook-events.mjs +1 -1
- package/sources/new-activity/new-activity.mjs +1 -1
- package/sources/new-attachment/new-attachment.mjs +1 -1
- package/sources/new-board/new-board.mjs +1 -1
- package/sources/new-card/new-card.mjs +1 -1
- package/sources/new-checklist/new-checklist.mjs +1 -1
- package/sources/new-comment-added-to-card/new-comment-added-to-card.mjs +1 -1
- package/sources/new-label/new-label.mjs +1 -1
- package/sources/new-label-added-to-card/new-label-added-to-card.mjs +1 -1
- package/sources/new-list/new-list.mjs +1 -1
- package/sources/new-member-on-card/new-member-on-card.mjs +1 -1
- package/sources/new-notification/new-notification.mjs +1 -1
- package/{trello.app.js → trello.app.mjs} +6 -6
@@ -1,11 +1,11 @@
|
|
1
|
-
import common from "../common.
|
1
|
+
import common from "../common.mjs";
|
2
2
|
|
3
3
|
export default {
|
4
4
|
...common,
|
5
5
|
key: "trello-add-attachment-to-card-via-url",
|
6
6
|
name: "Add Attachment to Card via URL",
|
7
7
|
description: "Adds a file attachment on a card by referencing a public URL. [See the docs here](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-attachments-post)",
|
8
|
-
version: "0.0.
|
8
|
+
version: "0.0.2",
|
9
9
|
type: "action",
|
10
10
|
props: {
|
11
11
|
...common.props,
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import common from "../common.
|
1
|
+
import common from "../common.mjs";
|
2
2
|
|
3
3
|
export default {
|
4
4
|
...common,
|
5
5
|
key: "trello-add-existing-label-to-card",
|
6
6
|
name: "Add Existing Label to Card",
|
7
7
|
description: "Adds an existing label to the specified card. [See the docs here](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-idlabels-post)",
|
8
|
-
version: "0.0.
|
8
|
+
version: "0.0.2",
|
9
9
|
type: "action",
|
10
10
|
props: {
|
11
11
|
...common.props,
|
@@ -5,7 +5,7 @@ export default {
|
|
5
5
|
key: "trello-add-file-as-attachment-via-url",
|
6
6
|
name: "Add Attachment to Card via URL",
|
7
7
|
description: "Create a file attachment on a card by referencing a public URL",
|
8
|
-
version: "0.1.
|
8
|
+
version: "0.1.2",
|
9
9
|
type: "action",
|
10
10
|
props: {
|
11
11
|
trello: {
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import common from "../common.
|
1
|
+
import common from "../common.mjs";
|
2
2
|
|
3
3
|
export default {
|
4
4
|
...common,
|
5
5
|
key: "trello-add-member-to-card",
|
6
6
|
name: "Add Member to Card",
|
7
7
|
description: "Adds a member to the specified card. [See the docs here](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-idmembers-post)",
|
8
|
-
version: "0.1.
|
8
|
+
version: "0.1.3",
|
9
9
|
type: "action",
|
10
10
|
props: {
|
11
11
|
...common.props,
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import common from "../common.
|
1
|
+
import common from "../common.mjs";
|
2
2
|
|
3
3
|
export default {
|
4
4
|
...common,
|
5
5
|
key: "trello-archive-card",
|
6
6
|
name: "Archive Card",
|
7
7
|
description: "Archives a card. [See the docs here](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-put)",
|
8
|
-
version: "0.1.
|
8
|
+
version: "0.1.3",
|
9
9
|
type: "action",
|
10
10
|
props: {
|
11
11
|
...common.props,
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import common from "../common.
|
1
|
+
import common from "../common.mjs";
|
2
2
|
|
3
3
|
export default {
|
4
4
|
...common,
|
5
5
|
key: "trello-close-board",
|
6
6
|
name: "Close Board",
|
7
7
|
description: "Closes a board. [See the docs here](https://developer.atlassian.com/cloud/trello/rest/api-group-boards/#api-boards-id-put)",
|
8
|
-
version: "0.0.
|
8
|
+
version: "0.0.2",
|
9
9
|
type: "action",
|
10
10
|
props: {
|
11
11
|
...common.props,
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import common from "../common.
|
1
|
+
import common from "../common.mjs";
|
2
2
|
|
3
3
|
export default {
|
4
4
|
...common,
|
5
5
|
key: "trello-create-card",
|
6
6
|
name: "Create Card",
|
7
7
|
description: "Creates a new card. [See the docs here](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-post)",
|
8
|
-
version: "0.0.
|
8
|
+
version: "0.0.2",
|
9
9
|
type: "action",
|
10
10
|
props: {
|
11
11
|
...common.props,
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import common from "../common.
|
1
|
+
import common from "../common.mjs";
|
2
2
|
|
3
3
|
export default {
|
4
4
|
...common,
|
5
5
|
key: "trello-create-checklist",
|
6
6
|
name: "Create Checklist",
|
7
7
|
description: "Creates a checklist on the specified card. [See the docs here](https://developer.atlassian.com/cloud/trello/rest/api-group-checklists/#api-checklists-post)",
|
8
|
-
version: "0.0.
|
8
|
+
version: "0.0.2",
|
9
9
|
type: "action",
|
10
10
|
props: {
|
11
11
|
...common.props,
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import common from "../common.
|
1
|
+
import common from "../common.mjs";
|
2
2
|
|
3
3
|
export default {
|
4
4
|
...common,
|
5
5
|
key: "trello-create-comment-on-card",
|
6
6
|
name: "Create Comment on Card",
|
7
7
|
description: "Creates a new comment on a card. [See the docs here](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-actions-comments-post)",
|
8
|
-
version: "0.0.
|
8
|
+
version: "0.0.2",
|
9
9
|
type: "action",
|
10
10
|
props: {
|
11
11
|
...common.props,
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import common from "../common.
|
1
|
+
import common from "../common.mjs";
|
2
2
|
|
3
3
|
export default {
|
4
4
|
...common,
|
5
5
|
key: "trello-delete-checklist",
|
6
6
|
name: "Delete Checklist",
|
7
7
|
description: "Deletes the specified checklist. [See the docs here](https://developer.atlassian.com/cloud/trello/rest/api-group-checklists/#api-checklists-id-delete)",
|
8
|
-
version: "0.1.
|
8
|
+
version: "0.1.3",
|
9
9
|
type: "action",
|
10
10
|
props: {
|
11
11
|
...common.props,
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import common from "../common.
|
1
|
+
import common from "../common.mjs";
|
2
2
|
|
3
3
|
export default {
|
4
4
|
...common,
|
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 docs here](https://developer.atlassian.com/cloud/trello/rest/api-group-boards/#api-boards-id-labels-get)",
|
8
|
-
version: "0.1.
|
8
|
+
version: "0.1.3",
|
9
9
|
type: "action",
|
10
10
|
props: {
|
11
11
|
...common.props,
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import common from "../common.
|
1
|
+
import common from "../common.mjs";
|
2
2
|
|
3
3
|
export default {
|
4
4
|
...common,
|
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 docs here](https://developer.atlassian.com/cloud/trello/rest/api-group-boards/#api-boards-id-lists-get)",
|
8
|
-
version: "0.1.
|
8
|
+
version: "0.1.3",
|
9
9
|
type: "action",
|
10
10
|
props: {
|
11
11
|
...common.props,
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import common from "../common.
|
1
|
+
import common from "../common.mjs";
|
2
2
|
|
3
3
|
export default {
|
4
4
|
...common,
|
5
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.6",
|
9
9
|
type: "action",
|
10
10
|
props: {
|
11
11
|
...common.props,
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import common from "../common.
|
1
|
+
import common from "../common.mjs";
|
2
2
|
|
3
3
|
export default {
|
4
4
|
...common,
|
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 docs here](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-put)",
|
8
|
-
version: "0.1.
|
8
|
+
version: "0.1.3",
|
9
9
|
type: "action",
|
10
10
|
props: {
|
11
11
|
...common.props,
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import common from "../common.
|
1
|
+
import common from "../common.mjs";
|
2
2
|
|
3
3
|
export default {
|
4
4
|
...common,
|
5
5
|
key: "trello-remove-label-from-card",
|
6
6
|
name: "Remove Card Label",
|
7
7
|
description: "Removes label from card. [See the docs here](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-idlabels-idlabel-delete)",
|
8
|
-
version: "0.1.
|
8
|
+
version: "0.1.3",
|
9
9
|
type: "action",
|
10
10
|
props: {
|
11
11
|
...common.props,
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import common from "../common.
|
1
|
+
import common from "../common.mjs";
|
2
2
|
|
3
3
|
export default {
|
4
4
|
...common,
|
5
5
|
key: "trello-rename-list",
|
6
6
|
name: "Rename List",
|
7
7
|
description: "Renames an existing list. [See the docs here](https://developer.atlassian.com/cloud/trello/rest/api-group-lists/#api-lists-id-put)",
|
8
|
-
version: "0.0.
|
8
|
+
version: "0.0.2",
|
9
9
|
type: "action",
|
10
10
|
props: {
|
11
11
|
...common.props,
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import common from "../common.
|
1
|
+
import common from "../common.mjs";
|
2
2
|
|
3
3
|
export default {
|
4
4
|
...common,
|
5
5
|
key: "trello-search-boards",
|
6
6
|
name: "Search Boards",
|
7
7
|
description: "Searches for boards matching the specified query. [See the docs here](https://developer.atlassian.com/cloud/trello/rest/api-group-search/#api-search-get)",
|
8
|
-
version: "0.2.
|
8
|
+
version: "0.2.3",
|
9
9
|
type: "action",
|
10
10
|
props: {
|
11
11
|
...common.props,
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import common from "../common.
|
1
|
+
import common from "../common.mjs";
|
2
2
|
|
3
3
|
export default {
|
4
4
|
...common,
|
5
5
|
key: "trello-search-cards",
|
6
6
|
name: "Search Cards",
|
7
7
|
description: "Searches for cards matching the specified query. [See the docs here](https://developer.atlassian.com/cloud/trello/rest/api-group-search/#api-search-get)",
|
8
|
-
version: "0.1.
|
8
|
+
version: "0.1.3",
|
9
9
|
type: "action",
|
10
10
|
props: {
|
11
11
|
...common.props,
|
@@ -1,13 +1,13 @@
|
|
1
|
-
import common from "../common.
|
2
|
-
import pickBy from "lodash
|
3
|
-
import pick from "lodash
|
1
|
+
import common from "../common.mjs";
|
2
|
+
import pickBy from "lodash.pickby";
|
3
|
+
import pick from "lodash.pick";
|
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 docs here](https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-id-put)",
|
10
|
-
version: "0.1.
|
10
|
+
version: "0.1.3",
|
11
11
|
type: "action",
|
12
12
|
props: {
|
13
13
|
...common.props,
|
package/package.json
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
{
|
2
2
|
"name": "@pipedream/trello",
|
3
|
-
"version": "0.3.
|
3
|
+
"version": "0.3.12",
|
4
4
|
"description": "Pipedream Trello Components",
|
5
|
-
"main": "trello.app.
|
5
|
+
"main": "trello.app.mjs",
|
6
6
|
"keywords": [
|
7
7
|
"pipedream",
|
8
8
|
"trello"
|
@@ -10,7 +10,7 @@
|
|
10
10
|
"homepage": "https://pipedream.com/apps/trello",
|
11
11
|
"author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
|
12
12
|
"dependencies": {
|
13
|
-
"@pipedream/platform": "^
|
13
|
+
"@pipedream/platform": "^1.5.1",
|
14
14
|
"crypto": "^1.0.1",
|
15
15
|
"lodash.pick": "^4.4.0",
|
16
16
|
"lodash.pickby": "^4.6.0",
|
@@ -5,7 +5,7 @@ export default {
|
|
5
5
|
key: "trello-custom-webhook-events",
|
6
6
|
name: "Custom Webhook Events (Instant)",
|
7
7
|
description: "Emit new events for activity matching a board, event types, lists and/or cards.",
|
8
|
-
version: "0.0.
|
8
|
+
version: "0.0.10",
|
9
9
|
type: "source",
|
10
10
|
props: {
|
11
11
|
...common.props,
|
@@ -5,7 +5,7 @@ export default {
|
|
5
5
|
key: "trello-new-comment-added-to-card",
|
6
6
|
name: "New Comment Added to Card (Instant)",
|
7
7
|
description: "Emit new event for each new comment added to a card.",
|
8
|
-
version: "0.1.
|
8
|
+
version: "0.1.1",
|
9
9
|
type: "source",
|
10
10
|
dedupe: "unique",
|
11
11
|
props: {
|
@@ -1,10 +1,10 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
1
|
+
import { axios } from "@pipedream/platform";
|
2
|
+
import crypto from "crypto";
|
3
|
+
import events from "./common/events.mjs";
|
4
|
+
import fields from "./common/fields.mjs";
|
5
|
+
import mime from "mime";
|
6
6
|
|
7
|
-
|
7
|
+
export default {
|
8
8
|
type: "app",
|
9
9
|
app: "trello",
|
10
10
|
description: "Pipedream Trello Components",
|