@pipedream/trello 0.3.10 → 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.
Files changed (56) hide show
  1. package/actions/add-attachment-to-card-via-url/add-attachment-to-card-via-url.mjs +2 -2
  2. package/actions/add-checklist/add-checklist.mjs +1 -1
  3. package/actions/add-comment/add-comment.mjs +1 -1
  4. package/actions/add-existing-label-to-card/add-existing-label-to-card.mjs +2 -2
  5. package/actions/add-file-as-attachment-via-url/add-file-as-attachment-via-url.mjs +1 -1
  6. package/actions/add-image-attachment/add-image-attachment.mjs +1 -1
  7. package/actions/add-label-to-card/add-label-to-card.mjs +1 -1
  8. package/actions/add-member-to-card/add-member-to-card.mjs +2 -2
  9. package/actions/archive-card/archive-card.mjs +2 -2
  10. package/actions/close-board/close-board.mjs +2 -2
  11. package/actions/{common.js → common.mjs} +2 -2
  12. package/actions/complete-checklist-item/complete-checklist-item.mjs +1 -1
  13. package/actions/copy-board/copy-board.mjs +1 -1
  14. package/actions/create-board/create-board.mjs +1 -1
  15. package/actions/create-card/create-card.mjs +2 -2
  16. package/actions/create-checklist/create-checklist.mjs +2 -2
  17. package/actions/create-checklist-item/create-checklist-item.mjs +1 -1
  18. package/actions/create-comment-on-card/create-comment-on-card.mjs +2 -2
  19. package/actions/create-label/create-label.mjs +1 -1
  20. package/actions/create-list/create-list.mjs +1 -1
  21. package/actions/delete-checklist/delete-checklist.mjs +2 -2
  22. package/actions/find-labels/find-labels.mjs +2 -2
  23. package/actions/find-list/find-list.mjs +2 -2
  24. package/actions/get-card/get-card.mjs +2 -2
  25. package/actions/get-list/get-list.mjs +1 -1
  26. package/actions/move-card-to-list/move-card-to-list.mjs +2 -2
  27. package/actions/remove-label-from-card/remove-label-from-card.mjs +2 -2
  28. package/actions/rename-list/rename-list.mjs +2 -2
  29. package/actions/search-boards/search-boards.mjs +2 -2
  30. package/actions/search-cards/search-cards.mjs +2 -2
  31. package/actions/search-checklists/search-checklists.mjs +1 -1
  32. package/actions/search-members/search-members.mjs +1 -1
  33. package/actions/update-card/update-card.mjs +4 -4
  34. package/common/{events.js → events.mjs} +1 -1
  35. package/common/{fields.js → fields.mjs} +1 -1
  36. package/package.json +3 -4
  37. package/sources/card-archived/card-archived.mjs +1 -1
  38. package/sources/card-due-date-reminder/card-due-date-reminder.mjs +1 -1
  39. package/sources/card-moved/card-moved.mjs +1 -1
  40. package/sources/card-updates/card-updates.mjs +1 -1
  41. package/sources/common/common-polling.mjs +1 -1
  42. package/sources/common/common-webhook.mjs +1 -1
  43. package/sources/common/{common.js → common.mjs} +2 -2
  44. package/sources/custom-webhook-events/custom-webhook-events.mjs +1 -1
  45. package/sources/new-activity/new-activity.mjs +1 -1
  46. package/sources/new-attachment/new-attachment.mjs +1 -1
  47. package/sources/new-board/new-board.mjs +1 -1
  48. package/sources/new-card/new-card.mjs +1 -1
  49. package/sources/new-checklist/new-checklist.mjs +1 -1
  50. package/sources/new-comment-added-to-card/new-comment-added-to-card.mjs +1 -1
  51. package/sources/new-label/new-label.mjs +1 -1
  52. package/sources/new-label-added-to-card/new-label-added-to-card.mjs +1 -1
  53. package/sources/new-list/new-list.mjs +1 -1
  54. package/sources/new-member-on-card/new-member-on-card.mjs +1 -1
  55. package/sources/new-notification/new-notification.mjs +1 -1
  56. package/{trello.app.js → trello.app.mjs} +6 -6
@@ -1,11 +1,11 @@
1
- import common from "../common.js";
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.1",
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-checklist",
6
6
  name: "Create a Checklist",
7
7
  description: "Adds a new checklist to a card.",
8
- version: "0.1.1",
8
+ version: "0.1.2",
9
9
  type: "action",
10
10
  props: {
11
11
  trello: {
@@ -5,7 +5,7 @@ export default {
5
5
  key: "trello-add-comment",
6
6
  name: "Create a Comment",
7
7
  description: "Create a new comment on a specific card.",
8
- version: "0.1.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.js";
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.1",
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.1",
8
+ version: "0.1.2",
9
9
  type: "action",
10
10
  props: {
11
11
  trello: {
@@ -5,7 +5,7 @@ export default {
5
5
  key: "trello-add-image-attachment",
6
6
  name: "Add Image Attachment to Card",
7
7
  description: "Adds image to card",
8
- version: "0.1.2",
8
+ version: "0.1.3",
9
9
  type: "action",
10
10
  props: {
11
11
  trello: {
@@ -5,7 +5,7 @@ export default {
5
5
  key: "trello-add-label-to-card",
6
6
  name: "Add Existing Label to Card",
7
7
  description: "Add an existing label to a card.",
8
- version: "0.1.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.js";
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.2",
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.js";
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.2",
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.js";
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.1",
8
+ version: "0.0.2",
9
9
  type: "action",
10
10
  props: {
11
11
  ...common.props,
@@ -1,6 +1,6 @@
1
- const trello = require("../trello.app");
1
+ import trello from "../trello.app.mjs";
2
2
 
3
- module.exports = {
3
+ export default {
4
4
  props: {
5
5
  trello,
6
6
  },
@@ -5,7 +5,7 @@ export default {
5
5
  key: "trello-complete-checklist-item",
6
6
  name: "Complete a Checklist Item",
7
7
  description: "Completes an existing checklist item in a card.",
8
- version: "0.1.1",
8
+ version: "0.1.2",
9
9
  type: "action",
10
10
  props: {
11
11
  trello: {
@@ -5,7 +5,7 @@ export default {
5
5
  key: "trello-copy-board",
6
6
  name: "Copy a Board",
7
7
  description: "Creates a copy of an existing board.",
8
- version: "0.1.1",
8
+ version: "0.1.2",
9
9
  type: "action",
10
10
  props: {
11
11
  trello: {
@@ -5,7 +5,7 @@ export default {
5
5
  key: "trello-create-board",
6
6
  name: "Create a Board",
7
7
  description: "Creates a new Trello board.",
8
- version: "0.1.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.js";
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.1",
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.js";
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.1",
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-create-checklist-item",
6
6
  name: "Create a Checklist Item",
7
7
  description: "Creates a new checklist item in a card.",
8
- version: "0.1.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.js";
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.1",
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-create-label",
6
6
  name: "Create Label",
7
7
  description: "Creates a new label on the specified board.",
8
- version: "0.1.1",
8
+ version: "0.1.2",
9
9
  type: "action",
10
10
  props: {
11
11
  trello: {
@@ -5,7 +5,7 @@ export default {
5
5
  key: "trello-create-list",
6
6
  name: "Create a List",
7
7
  description: "Creates a new list on a board",
8
- version: "0.1.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.js";
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.2",
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.js";
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.2",
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.js";
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.2",
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.js";
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.5",
8
+ version: "0.1.6",
9
9
  type: "action",
10
10
  props: {
11
11
  ...common.props,
@@ -4,7 +4,7 @@ export default {
4
4
  key: "trello-get-list",
5
5
  name: "Get List",
6
6
  description: "Get information about a List",
7
- version: "0.0.2",
7
+ version: "0.0.3",
8
8
  type: "action",
9
9
  props: {
10
10
  // eslint-disable-next-line pipedream/props-label, pipedream/props-description
@@ -1,11 +1,11 @@
1
- import common from "../common.js";
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.2",
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.js";
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.2",
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.js";
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.1",
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.js";
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.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.js";
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.2",
8
+ version: "0.1.3",
9
9
  type: "action",
10
10
  props: {
11
11
  ...common.props,
@@ -5,7 +5,7 @@ export default {
5
5
  key: "trello-search-checklists",
6
6
  name: "Find Checklist",
7
7
  description: "Find a checklist on a particular board or card by name.",
8
- version: "0.1.1",
8
+ version: "0.1.2",
9
9
  type: "action",
10
10
  props: {
11
11
  trello: {
@@ -5,7 +5,7 @@ export default {
5
5
  key: "trello-search-members",
6
6
  name: "Search Members",
7
7
  description: "Search for Trello members.",
8
- version: "0.1.1",
8
+ version: "0.1.2",
9
9
  type: "action",
10
10
  props: {
11
11
  trello: {
@@ -1,13 +1,13 @@
1
- import common from "../common.js";
2
- import pickBy from "lodash/pickBy.js";
3
- import pick from "lodash/pick.js";
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.2",
10
+ version: "0.1.3",
11
11
  type: "action",
12
12
  props: {
13
13
  ...common.props,
@@ -1,4 +1,4 @@
1
- module.exports = [
1
+ export default [
2
2
  {
3
3
  label: "Add Attachment To Card",
4
4
  value: "addAttachmentToCard",
@@ -1,4 +1,4 @@
1
- module.exports = {
1
+ export default {
2
2
  board: [
3
3
  "closed",
4
4
  "dateLastActivity",
package/package.json CHANGED
@@ -1,17 +1,16 @@
1
1
  {
2
2
  "name": "@pipedream/trello",
3
- "version": "0.3.10",
3
+ "version": "0.3.12",
4
4
  "description": "Pipedream Trello Components",
5
- "main": "trello.app.js",
5
+ "main": "trello.app.mjs",
6
6
  "keywords": [
7
7
  "pipedream",
8
8
  "trello"
9
9
  ],
10
10
  "homepage": "https://pipedream.com/apps/trello",
11
11
  "author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
12
- "license": "MIT",
13
12
  "dependencies": {
14
- "@pipedream/platform": "^0.10.0",
13
+ "@pipedream/platform": "^1.5.1",
15
14
  "crypto": "^1.0.1",
16
15
  "lodash.pick": "^4.4.0",
17
16
  "lodash.pickby": "^4.6.0",
@@ -5,7 +5,7 @@ export default {
5
5
  key: "trello-card-archived",
6
6
  name: "Card Archived (Instant)",
7
7
  description: "Emit new event for each card archived.",
8
- version: "0.0.11",
8
+ version: "0.0.12",
9
9
  type: "source",
10
10
  props: {
11
11
  ...common.props,
@@ -5,7 +5,7 @@ export default {
5
5
  key: "trello-card-due-date-reminder",
6
6
  name: "Card Due Date Reminder",
7
7
  description: "Emit new event at a specified time before a card is due.",
8
- version: "0.0.8",
8
+ version: "0.0.9",
9
9
  type: "source",
10
10
  dedupe: "unique",
11
11
  props: {
@@ -5,7 +5,7 @@ export default {
5
5
  key: "trello-card-moved",
6
6
  name: "Card Moved (Instant)",
7
7
  description: "Emit new event each time a card is moved to a list.",
8
- version: "0.0.10",
8
+ version: "0.0.11",
9
9
  type: "source",
10
10
  props: {
11
11
  ...common.props,
@@ -5,7 +5,7 @@ export default {
5
5
  key: "trello-card-updates",
6
6
  name: "Card Updates (Instant)",
7
7
  description: "Emit new event for each update to a Trello card.",
8
- version: "0.0.10",
8
+ version: "0.0.11",
9
9
  type: "source",
10
10
  props: {
11
11
  ...common.props,
@@ -1,4 +1,4 @@
1
- import common from "./common.js";
1
+ import common from "./common.mjs";
2
2
  import { DEFAULT_POLLING_SOURCE_TIMER_INTERVAL } from "@pipedream/platform";
3
3
 
4
4
  export default {
@@ -1,4 +1,4 @@
1
- import common from "./common.js";
1
+ import common from "./common.mjs";
2
2
 
3
3
  export default {
4
4
  ...common,
@@ -1,6 +1,6 @@
1
- const trello = require("../../trello.app");
1
+ import trello from "../../trello.app.mjs";
2
2
 
3
- module.exports = {
3
+ export default {
4
4
  props: {
5
5
  trello,
6
6
  db: "$.service.db",
@@ -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.9",
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-activity",
6
6
  name: "New Activity (Instant)",
7
7
  description: "Emit new event for new activity on a board.",
8
- version: "0.0.7",
8
+ version: "0.0.8",
9
9
  type: "source",
10
10
  props: {
11
11
  ...common.props,
@@ -5,7 +5,7 @@ export default {
5
5
  key: "trello-new-attachment",
6
6
  name: "New Attachment (Instant)",
7
7
  description: "Emit new event for new attachment on a board.",
8
- version: "0.0.7",
8
+ version: "0.0.8",
9
9
  type: "source",
10
10
  props: {
11
11
  ...common.props,
@@ -5,7 +5,7 @@ export default {
5
5
  key: "trello-new-board",
6
6
  name: "New Board (Instant)",
7
7
  description: "Emit new event for each new board added.",
8
- version: "0.0.11",
8
+ version: "0.0.12",
9
9
  type: "source",
10
10
  dedupe: "unique",
11
11
  methods: {
@@ -5,7 +5,7 @@ export default {
5
5
  key: "trello-new-card",
6
6
  name: "New Card (Instant)",
7
7
  description: "Emit new event for each new Trello card on a board.",
8
- version: "0.0.10",
8
+ version: "0.0.11",
9
9
  type: "source",
10
10
  dedupe: "unique",
11
11
  props: {
@@ -5,7 +5,7 @@ export default {
5
5
  key: "trello-new-checklist",
6
6
  name: "New Checklist (Instant)",
7
7
  description: "Emit new event for each new checklist added to a board.",
8
- version: "0.0.12",
8
+ version: "0.0.13",
9
9
  type: "source",
10
10
  dedupe: "unique",
11
11
  methods: {
@@ -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.0",
8
+ version: "0.1.1",
9
9
  type: "source",
10
10
  dedupe: "unique",
11
11
  props: {
@@ -5,7 +5,7 @@ export default {
5
5
  key: "trello-new-label",
6
6
  name: "New Label (Instant)",
7
7
  description: "Emit new event for each new label added to a board.",
8
- version: "0.0.12",
8
+ version: "0.0.13",
9
9
  type: "source",
10
10
  dedupe: "unique",
11
11
  methods: {
@@ -5,7 +5,7 @@ export default {
5
5
  key: "trello-new-label-added-to-card",
6
6
  name: "New Label Added To Card (Instant)",
7
7
  description: "Emit new event for each label added to a card.",
8
- version: "0.0.10",
8
+ version: "0.0.11",
9
9
  type: "source",
10
10
  props: {
11
11
  ...common.props,
@@ -5,7 +5,7 @@ export default {
5
5
  key: "trello-new-list",
6
6
  name: "New List (Instant)",
7
7
  description: "Emit new event for each new list added to a board.",
8
- version: "0.0.12",
8
+ version: "0.0.13",
9
9
  type: "source",
10
10
  dedupe: "unique",
11
11
  methods: {
@@ -5,7 +5,7 @@ export default {
5
5
  key: "trello-new-member-on-card",
6
6
  name: "New Member on Card (Instant)",
7
7
  description: "Emit new event for each member that join in a card.",
8
- version: "0.0.13",
8
+ version: "0.0.14",
9
9
  type: "source",
10
10
  dedupe: "unique",
11
11
  methods: {
@@ -6,7 +6,7 @@ export default {
6
6
  name: "New Notification",
7
7
  description:
8
8
  "Emit new event for each new Trello notification for the authenticated user.",
9
- version: "0.0.9",
9
+ version: "0.0.10",
10
10
  type: "source",
11
11
  dedupe: "unique",
12
12
  methods: {
@@ -1,10 +1,10 @@
1
- const { axios } = require("@pipedream/platform");
2
- const crypto = require("crypto");
3
- const events = require("./common/events.js");
4
- const fields = require("./common/fields.js");
5
- const mime = require("mime");
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
- module.exports = {
7
+ export default {
8
8
  type: "app",
9
9
  app: "trello",
10
10
  description: "Pipedream Trello Components",